diff options
author | hasso <hasso@pkgsrc.org> | 2009-08-29 13:51:56 +0000 |
---|---|---|
committer | hasso <hasso@pkgsrc.org> | 2009-08-29 13:51:56 +0000 |
commit | 77ffcab99a8d35b19efd00d751927708067f3691 (patch) | |
tree | db17db578784ab63ff589934fb5358c0ad9ebcc0 /multimedia/vlc | |
parent | 1cc66f68fc4bdc9c77b775669f0a3575a04f903a (diff) | |
download | pkgsrc-77ffcab99a8d35b19efd00d751927708067f3691.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')
-rw-r--r-- | multimedia/vlc/Makefile | 5 | ||||
-rw-r--r-- | multimedia/vlc/distinfo | 9 | ||||
-rw-r--r-- | multimedia/vlc/patches/patch-aa | 11 |
3 files changed, 6 insertions, 19 deletions
diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 15b5b9a2f38..261c532b23b 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -1,13 +1,12 @@ -# $NetBSD: Makefile,v 1.81 2009/08/26 19:56:48 sno Exp $ +# $NetBSD: Makefile,v 1.82 2009/08/29 13:51:56 hasso Exp $ # DISTNAME= vlc-${VLC_VERSION} CATEGORIES= multimedia -PKGREVISION= 2 MASTER_SITES= http://download.videolan.org/pub/videolan/vlc/${VLC_VERSION}/ EXTRACT_SUFX= .tar.bz2 -VLC_VERSION= 1.0.0 +VLC_VERSION= 1.0.1 MAINTAINER= ahoka@NetBSD.org HOMEPAGE= http://videolan.org/ diff --git a/multimedia/vlc/distinfo b/multimedia/vlc/distinfo index dc3a42c1cf3..de554c48637 100644 --- a/multimedia/vlc/distinfo +++ b/multimedia/vlc/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.29 2009/08/09 12:18:17 kefren Exp $ +$NetBSD: distinfo,v 1.30 2009/08/29 13:51:56 hasso Exp $ -SHA1 (vlc-1.0.0.tar.bz2) = fff08528d97d26f6f7faeafba94b445e0e3562e8 -RMD160 (vlc-1.0.0.tar.bz2) = 7d0ed52c580c75d09003788f5a2d27b7de18b410 -Size (vlc-1.0.0.tar.bz2) = 19973964 bytes -SHA1 (patch-aa) = 49157d57e4e7755be87b22234d6c04ef997f91b6 +SHA1 (vlc-1.0.1.tar.bz2) = 4bd670f538651633c1115c8f4efc94211ff882ec +RMD160 (vlc-1.0.1.tar.bz2) = 9604d3fd33888a058472ebda711ac17f78f8de3f +Size (vlc-1.0.1.tar.bz2) = 19794042 bytes SHA1 (patch-configure) = 88a32710eea4987975839bf982d7a6958b977a5c SHA1 (patch-v4l2) = 1f91206f8e2f78514056386977a6c2230a710211 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; - } |