summaryrefslogtreecommitdiff
path: root/multimedia/vlc/patches
diff options
context:
space:
mode:
authorhasso <hasso>2009-08-29 13:51:56 +0000
committerhasso <hasso>2009-08-29 13:51:56 +0000
commit8b5e682e12f931eed6095b0c332ee36740e86f76 (patch)
treedb17db578784ab63ff589934fb5358c0ad9ebcc0 /multimedia/vlc/patches
parentecff0f6d51d2e4657d8a86295ba5ffa8ef6fca8b (diff)
downloadpkgsrc-8b5e682e12f931eed6095b0c332ee36740e86f76.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;
- }