summaryrefslogtreecommitdiff
path: root/multimedia/vlc/patches
diff options
context:
space:
mode:
authorhasso <hasso@pkgsrc.org>2009-08-29 13:51:56 +0000
committerhasso <hasso@pkgsrc.org>2009-08-29 13:51:56 +0000
commit1df39d657e002dcd19d5dff43a422573643498be (patch)
treedb17db578784ab63ff589934fb5358c0ad9ebcc0 /multimedia/vlc/patches
parent75c13197946897f9bf32e5dc94bac97d365df6d3 (diff)
downloadpkgsrc-1df39d657e002dcd19d5dff43a422573643498be.tar.gz
Update to 1.0.1. Notable fixes and improvements include:
- fix flv and mpeg2 seeking, - fixes for wmv, wav, rtsp and ssa support, - fixes for Qt and Mac OS X interface, - fix an integer underflow in Real pseudo-RTSP module, - updates of some translations, - port of the ZVBI module to Windows for full teletext support and - codecs updates for Windows and Mac OS X versions.
Diffstat (limited to 'multimedia/vlc/patches')
-rw-r--r--multimedia/vlc/patches/patch-aa11
1 files changed, 0 insertions, 11 deletions
diff --git a/multimedia/vlc/patches/patch-aa b/multimedia/vlc/patches/patch-aa
deleted file mode 100644
index 1708de9472a..00000000000
--- a/multimedia/vlc/patches/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/access/rtsp/real.c.orig 2009-08-09 13:00:43.000000000 +0300
-+++ modules/access/rtsp/real.c 2009-08-09 13:01:54.000000000 +0300
-@@ -592,6 +592,8 @@ int real_get_rdt_chunk(rtsp_client_t *rt
-
- int n;
- rmff_dump_pheader(ph, (char*)*buffer);
-+ if (ph->length < 12)
-+ return 0;
- n=rtsp_read_data(rtsp_session, (uint8_t*)(*buffer + 12), ph->length - 12);
- return (n <= 0) ? 0 : n+12;
- }