Sat Aug 3 09:22:58 2013 UTC ()
Update ffmpeg010 to 0.10.8.

version 0.10.8
- kmvc: Clip pixel position to valid range
- kmvc: use fixed sized arrays in the context
- indeo: use a typedef for the mc function pointer
- lavc: check for overflow in init_get_bits
- mjpegdec: properly report unsupported disabled features
- jpegls: return meaningful errors
- jpegls: factorize return paths
- jpegls: check the scan offset
- wavpack: validate samples size parsed in wavpack_decode_block
- ljpeg: use the correct number of components in yuv
- mjpeg: Validate sampling factors
- mjpegdec: validate parameters in mjpeg_decode_scan_progressive_ac
- wavpack: check packet size early
- wavpack: return meaningful errors
- apetag: use int64_t for filesize
- tiff: do not overread the source buffer
- Prepare for 0.8.8 Release
- smacker: fix an off by one in huff.length computation
- smacker: check the return value of smacker_decode_tree
- smacker: pad the extradata allocation
- smacker: check frame size validity
- vmdav: convert to bytestream2
- 4xm: don't rely on get_buffer() initializing the frame.
- 4xm: check the return value of read_huffman_tables().
- 4xm: use the correct logging context
- 4xm: reject frames not compatible with the declared version
- 4xm: check bitstream_size boundary before using it
- 4xm: do not overread the source buffer in decode_p_block
- avfiltergraph: check for sws opts being non-NULL before using them
- bmv: check for len being valid in bmv_decode_frame()
- dfa: check for invalid access in decode_wdlt()
- indeo3: check motion vectors
- indeo3: fix data size check
- indeo3: switch parsing the header to bytestream2
- lavf: make sure stream probe data gets freed.
- oggdec: fix faulty cleanup prototype
- oma: Validate sample rates
- qdm2: check that the FFT size is a power of 2
- rv10: check that extradata is large enough
- xmv: check audio track parameters validity
- xmv: do not leak memory in the error paths in xmv_read_header()
- aac: check the maximum number of channels
- indeo3: fix off by one in MV validity check, Bug #503
- id3v2: check for end of file while unescaping tags
- wav: Always seek to an even offset, Bug #500, LP: #1174737
- proresdec: support mixed interlaced/non-interlaced content


(obache)
diff -r1.12 -r1.13 pkgsrc/multimedia/ffmpeg010/Makefile
diff -r1.7 -r1.8 pkgsrc/multimedia/ffmpeg010/Makefile.common
diff -r1.8 -r1.9 pkgsrc/multimedia/ffmpeg010/distinfo

cvs diff -r1.12 -r1.13 pkgsrc/multimedia/ffmpeg010/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/multimedia/ffmpeg010/Attic/Makefile 2013/06/30 12:16:18 1.12
+++ pkgsrc/multimedia/ffmpeg010/Attic/Makefile 2013/08/03 09:22:58 1.13
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.12 2013/06/30 12:16:18 wiz Exp $ 1# $NetBSD: Makefile,v 1.13 2013/08/03 09:22:58 obache Exp $
2 2
3PKGNAME= ffmpeg010-20130410.${DISTVERSION} 3PKGNAME= ffmpeg010-20130731.${DISTVERSION}
4PKGREVISION= 1 
5MAINTAINER= pkgsrc-users@NetBSD.org 4MAINTAINER= pkgsrc-users@NetBSD.org
6HOMEPAGE= http://ffmpeg.mplayerhq.hu/ 5HOMEPAGE= http://ffmpeg.mplayerhq.hu/
7COMMENT= Decoding, encoding and streaming software 6COMMENT= Decoding, encoding and streaming software
8 7
9CONFIGURE_ARGS+= --enable-avfilter 8CONFIGURE_ARGS+= --enable-avfilter
10#CONFIGURE_ARGS+= --enable-avfilter-lavf 9#CONFIGURE_ARGS+= --enable-avfilter-lavf
11CONFIGURE_ARGS+= --enable-postproc 10CONFIGURE_ARGS+= --enable-postproc
12CONFIGURE_ARGS+= --incdir=${PREFIX}/include/ffmpeg010 11CONFIGURE_ARGS+= --incdir=${PREFIX}/include/ffmpeg010
13CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/ffmpeg010 12CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/ffmpeg010
14CONFIGURE_ARGS+= --shlibdir=${PREFIX}/lib/ffmpeg010 13CONFIGURE_ARGS+= --shlibdir=${PREFIX}/lib/ffmpeg010
15CONFIGURE_ARGS+= --datadir=${PREFIX}/share/ffmpeg010 14CONFIGURE_ARGS+= --datadir=${PREFIX}/share/ffmpeg010
16#CONFIGURE_ARGS+= --build-suffix=010 15#CONFIGURE_ARGS+= --build-suffix=010
17CONFIGURE_ARGS+= --progs-suffix=010 16CONFIGURE_ARGS+= --progs-suffix=010

cvs diff -r1.7 -r1.8 pkgsrc/multimedia/ffmpeg010/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/multimedia/ffmpeg010/Attic/Makefile.common 2013/04/11 11:26:23 1.7
+++ pkgsrc/multimedia/ffmpeg010/Attic/Makefile.common 2013/08/03 09:22:58 1.8
@@ -1,22 +1,22 @@ @@ -1,22 +1,22 @@
1# $NetBSD: Makefile.common,v 1.7 2013/04/11 11:26:23 drochner Exp $ 1# $NetBSD: Makefile.common,v 1.8 2013/08/03 09:22:58 obache Exp $
2# used by multimedia/ffmpeg010/Makefile 2# used by multimedia/ffmpeg010/Makefile
3 3
4DISTNAME= ffmpeg-${DISTVERSION:S/-//g} 4DISTNAME= ffmpeg-${DISTVERSION:S/-//g}
5CATEGORIES= multimedia 5CATEGORIES= multimedia
6MASTER_SITES= http://www.ffmpeg.org/releases/ 6MASTER_SITES= http://www.ffmpeg.org/releases/
7EXTRACT_SUFX= .tar.bz2 7EXTRACT_SUFX= .tar.bz2
8 8
9DISTVERSION= 0.10.7 9DISTVERSION= 0.10.8
10PATCHDIR= ${.CURDIR}/../../multimedia/ffmpeg010/patches 10PATCHDIR= ${.CURDIR}/../../multimedia/ffmpeg010/patches
11 11
12HAS_CONFIGURE= YES 12HAS_CONFIGURE= YES
13USE_LANGUAGES+= c99 13USE_LANGUAGES+= c99
14USE_LIBTOOL= YES 14USE_LIBTOOL= YES
15USE_TOOLS+= gmake texi2html pod2man 15USE_TOOLS+= gmake texi2html pod2man
16 16
17.include "../../mk/compiler.mk" 17.include "../../mk/compiler.mk"
18 18
19.if ${OPSYS} == "SunOS" && empty(CC_VERSION:Mgcc*) 19.if ${OPSYS} == "SunOS" && empty(CC_VERSION:Mgcc*)
20SUBST_CLASSES+= sunwspro 20SUBST_CLASSES+= sunwspro
21SUBST_MESSAGE.sunwspro= Fixing compiler options for SunStudio C compiler. 21SUBST_MESSAGE.sunwspro= Fixing compiler options for SunStudio C compiler.
22SUBST_STAGE.sunwspro= post-configure 22SUBST_STAGE.sunwspro= post-configure

cvs diff -r1.8 -r1.9 pkgsrc/multimedia/ffmpeg010/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/multimedia/ffmpeg010/Attic/distinfo 2013/05/17 21:50:34 1.8
+++ pkgsrc/multimedia/ffmpeg010/Attic/distinfo 2013/08/03 09:22:58 1.9
@@ -1,11 +1,11 @@ @@ -1,11 +1,11 @@
1$NetBSD: distinfo,v 1.8 2013/05/17 21:50:34 jperkin Exp $ 1$NetBSD: distinfo,v 1.9 2013/08/03 09:22:58 obache Exp $
2 2
3SHA1 (ffmpeg-0.10.7.tar.bz2) = 48e49998a665055b586bc8468b64b9aa6342e90e 3SHA1 (ffmpeg-0.10.8.tar.bz2) = 23b6713b5a403feab4bf57f9363353312ba77995
4RMD160 (ffmpeg-0.10.7.tar.bz2) = d404ac7028c8e658088bdcdd9391ed0908e80997 4RMD160 (ffmpeg-0.10.8.tar.bz2) = 1916b6fab6ec3f32d0f0f54d7964adf6f2852e57
5Size (ffmpeg-0.10.7.tar.bz2) = 5782181 bytes 5Size (ffmpeg-0.10.8.tar.bz2) = 5782880 bytes
6SHA1 (patch-aa) = b30c822e03bb1766181d7b8b8d4122c196fd1d16 6SHA1 (patch-aa) = b30c822e03bb1766181d7b8b8d4122c196fd1d16
7SHA1 (patch-ac) = 14b39a2663be41395be0faae8270e18e2ba0891f 7SHA1 (patch-ac) = 14b39a2663be41395be0faae8270e18e2ba0891f
8SHA1 (patch-ap) = b67db14f412bbca036b5e6573df68b64ac5dabc2 8SHA1 (patch-ap) = b67db14f412bbca036b5e6573df68b64ac5dabc2
9SHA1 (patch-configure) = edc359ba50cdc90ad3ce7529f72e07970b679303 9SHA1 (patch-configure) = edc359ba50cdc90ad3ce7529f72e07970b679303
10SHA1 (patch-doc_Makefile) = d74bcf7139e298ed1ce9b6efc32b00b45eea7f24 10SHA1 (patch-doc_Makefile) = d74bcf7139e298ed1ce9b6efc32b00b45eea7f24
11SHA1 (patch-libavformat_nutdec.c) = eb16a4d2757bfc13a745cc62fab7711897bdeb30 11SHA1 (patch-libavformat_nutdec.c) = eb16a4d2757bfc13a745cc62fab7711897bdeb30