pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/ffmpeg4 ffmpeg4: updated to 4.2.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/df6d9462a225
branches:  trunk
changeset: 339126:df6d9462a225
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Sep 07 07:02:13 2019 +0000

description:
ffmpeg4: updated to 4.2.1

version 4.2.1:
- avformat/vividas: check for tiny blocks using alignment
- avcodec/vc1_pred: Fix refdist in scaleforopp()
- avcodec/vorbisdec: fix FASTDIV usage for vr_type == 2
- avcodec/iff: Check for overlap in cmap_read_palette()
- avcodec/apedec: Fix 32bit int overflow in do_apply_filter()
- lavf/rawenc: Only accept the appropriate stream type for raw muxers.
- avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays
- avformat/matroskadec: use proper types for some EbmlSyntax fields
- avcodec/ralf: fix undefined shift in extend_code()
- avcodec/ralf: fix undefined shift
- avcodec/bgmc: Check input space in ff_bgmc_decode_init()
- avcodec/vp3: Check for end of input in 2 places of vp4_unpack_macroblocks()
- avcodec/truemotion2: Fix multiple integer overflows in tm2_null_res_block()
- avcodec/vc1_block: Check the return code from vc1_decode_p_block()
- avcodec/vc1dec: Require res_sprite for wmv3images
- avcodec/vc1_block: Check for double escapes
- avcodec/vorbisdec: Check get_vlc2() failure
- avcodec/tta: Fix integer overflow in prediction
- avcodec/vb: Check input packet size to be large enough to contain flags
- avcodec/cavsdec: Limit the number of access units per packet to 2
- avcodec/atrac9dec: Check block_align
- avcodec/alac: Check for bps of 0
- avcodec/alac: Fix multiple integer overflows in lpc_prediction()
- avcodec/rl2: set dimensions
- avcodec/aacdec: Add FF_CODEC_CAP_INIT_CLEANUP
- avcodec/idcinvideo: Add 320x240 default maximum resolution
- avformat/realtextdec: free queue on error
- avcodec/vp5/6/8: use vpX_rac_is_end()
- avformat/vividas: Check av_xiphlacing() return value before use
- avcodec/alsdec: Fix integer overflow in decode_var_block_data()
- avcodec/alsdec: Limit maximum channels to 512
- avcodec/anm: Check input size for a frame with just a stop code
- avcodec/flicvideo: Optimize and Simplify FLI_COPY in flic_decode_frame_24BPP() by using bytestream2_get_buffer()
- avcodec/loco: Check left column value
- avcodec/ffwavesynth: Fixes invalid shift with pink noise seeking
- avcodec/ffwavesynth: Fix integer overflow for some corner case values
- avcodec/indeo2: Check remaining input more often
- avcodec/diracdec: Check that slices are fewer than pixels
- avcodec/vp56: Consider the alpha start as end of the prior header
- avcodec/4xm: Check for end of input in decode_p_block()
- avcodec/hevcdec: Check delta_luma_weight_l0/1
- avcodec/hnm4video: Optimize postprocess_current_frame()
- avcodec/hevc_refs: Optimize 16bit generate_missing_ref()
- avcodec/scpr: Use av_memcpy_backptr() in type 17 and 33
- avcodec/tiff: Enforce increasing offsets
- avcodec/dds: Use ff_set_dimensions()
- avformat/vividas: Fix another infinite loop
- avformat/vividas: Fix infinite loop in header parser
- avcodec/mpc8: Fix 32bit mask/enum
- avcodec/alsdec: Fix integer overflows of raw_samples in decode_var_block_data()
- avcodec/alsdec: Fix integer overflow of raw_samples in decode_blocks()
- avcodec/alsdec: fix mantisse shift
- avcodec/pngdec: consider chunk size in minimal size check
- avcodec/vc1_block: Fix invalid shifts in vc1_decode_i_blocks()
- avcodec/vc1_block: fix invalid shift in vc1_decode_p_mb()
- avcodec/aacdec_template: fix integer overflow in imdct_and_windowing()
- avformat/mpegts: Check if ready on SCTE reception
- avcodec/omx: fix xFramerate calculation
- avformat/avidec: add support for recognizing HEVC fourcc when demuxing
- avformat/mpegts: fix teletext PTS when selecting teletext streams only
- avcodec/h2645_parse: zero initialize the rbsp buffer
- avcodec/omx: Fix handling of fragmented buffers
- avcodec/omx: ensure zerocopy mode can be disabled on rpi builds
- avformat/mxfdec: do not ignore bad size errors
- avformat/matroskadec: Fix seeking
- ffplay: properly detect all window size changes

diffstat:

 multimedia/ffmpeg4/Makefile        |   3 +--
 multimedia/ffmpeg4/Makefile.common |   4 ++--
 multimedia/ffmpeg4/distinfo        |  10 +++++-----
 3 files changed, 8 insertions(+), 9 deletions(-)

diffs (44 lines):

diff -r 8fd5f1104693 -r df6d9462a225 multimedia/ffmpeg4/Makefile
--- a/multimedia/ffmpeg4/Makefile       Sat Sep 07 04:32:33 2019 +0000
+++ b/multimedia/ffmpeg4/Makefile       Sat Sep 07 07:02:13 2019 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2019/08/11 13:22:02 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2019/09/07 07:02:13 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/ffmpeg/ffmpeg4/}
-PKGREVISION=   1
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      http://ffmpeg.mplayerhq.hu/
 COMMENT=       Decoding, encoding and streaming software (v4.x)
diff -r 8fd5f1104693 -r df6d9462a225 multimedia/ffmpeg4/Makefile.common
--- a/multimedia/ffmpeg4/Makefile.common        Sat Sep 07 04:32:33 2019 +0000
+++ b/multimedia/ffmpeg4/Makefile.common        Sat Sep 07 07:02:13 2019 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile.common,v 1.15 2019/08/06 07:51:33 adam Exp $
+# $NetBSD: Makefile.common,v 1.16 2019/09/07 07:02:13 adam Exp $
 # used by multimedia/ffmpeg4/Makefile
 # used by multimedia/ffplay4/Makefile
 
-DISTNAME=      ffmpeg-4.2
+DISTNAME=      ffmpeg-4.2.1
 CATEGORIES=    multimedia
 MASTER_SITES=  http://www.ffmpeg.org/releases/
 EXTRACT_SUFX=  .tar.xz
diff -r 8fd5f1104693 -r df6d9462a225 multimedia/ffmpeg4/distinfo
--- a/multimedia/ffmpeg4/distinfo       Sat Sep 07 04:32:33 2019 +0000
+++ b/multimedia/ffmpeg4/distinfo       Sat Sep 07 07:02:13 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.11 2019/08/06 07:51:33 adam Exp $
+$NetBSD: distinfo,v 1.12 2019/09/07 07:02:13 adam Exp $
 
-SHA1 (ffmpeg-4.2.tar.xz) = 75d2af95c37402f29fc8432f5578e456e7366620
-RMD160 (ffmpeg-4.2.tar.xz) = f72555485c2cd2d23917f4a33ae17166bc1c1da3
-SHA512 (ffmpeg-4.2.tar.xz) = c1f6a86736c417790d7b88d687fdba28c620682a7247d8865062b90a9510b798a0230ab0bc993de85021fefb1044fa929a6c29c77d91b81c52873af569210313
-Size (ffmpeg-4.2.tar.xz) = 9088756 bytes
+SHA1 (ffmpeg-4.2.1.tar.xz) = c386b7330259d9eec0bdefb39e05bf9145e3d850
+RMD160 (ffmpeg-4.2.1.tar.xz) = 581749bb22f25357ccae1ea504a65ffc5e1cfe75
+SHA512 (ffmpeg-4.2.1.tar.xz) = 3efddc7d6bbccba9a1f55bf0e6caa8a578405a7e12058ce526766ed5eca9d45a783dbf86325ab860a8eabbe29701f8093e691f0138e0d9cc883cfe5200b3561b
+Size (ffmpeg-4.2.1.tar.xz) = 9090632 bytes
 SHA1 (patch-Makefile) = 2d27f218ee49179fdea14bb5c86c506dfb64dbd6
 SHA1 (patch-configure) = 5f9acc5a62fe20774e63e8f4d2367174104f2774
 SHA1 (patch-doc_Makefile) = 3b86307323fa565f9ad19c5bcb6ea71d323062fc



Home | Main Index | Thread Index | Old Index