[FFmpeg-cvslog] swresample/rematrix: handle 22.2 as a 9 channel layout

2020-08-18 Thread Jan Ekström
ffmpeg | branch: master | Jan Ekström | Fri Aug 7 00:35:55 2020 +0300| [1c7e55dd504245d71444fac1a73e5370cc76fede] | committer: Jan Ekström swresample/rematrix: handle 22.2 as a 9 channel layout This is as far as 22.2 follows the same channel order as WaveFormatExtensible's channel mask (and th

[FFmpeg-cvslog] avformat/mpegts: only reset timestamps to NOPTS for DVB teletext

2020-08-18 Thread Jan Ekström
ffmpeg | branch: master | Jan Ekström | Thu Aug 13 00:27:09 2020 +0300| [c820c2d4bfb7e2573f7bf8e2a3544a98e5a11343] | committer: Jan Ekström avformat/mpegts: only reset timestamps to NOPTS for DVB teletext While having the possibility of non-NOPTS values that can suddenly jump in time due to adj

[FFmpeg-cvslog] avformat/mpeg: Check avio_read() return value in get_pts()

2020-08-18 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Sat Aug 15 01:07:44 2020 +0200| [e8a88a16f78e66c8d7645b5f71dc8390b033fa70] | committer: Michael Niedermayer avformat/mpeg: Check avio_read() return value in get_pts() Found-by: Thierry Foucu Fixes: Use-of-uninitialized-value Reviewed-by: Thierry

[FFmpeg-cvslog] tools/target_dec_fuzzer: Adjust threshold for DST

2020-08-18 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Sun Aug 16 20:04:08 2020 +0200| [d08c3f56ec1340b4cdf7b5f0be99a06d6a682abf] | committer: Michael Niedermayer tools/target_dec_fuzzer: Adjust threshold for DST Fixes: Timeout (too long -> 3sec) Fixes: 24239/clusterfuzz-testcase-minimized-ffmpeg_AV

[FFmpeg-cvslog] avformat/mlvdec: Only store dimensions after having validated them

2020-08-18 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Mon Aug 10 02:33:19 2020 +0200| [d661cfc184bcf0bb13bb11fdba6f5d4493675f85] | committer: Andreas Rheinhardt avformat/mlvdec: Only store dimensions after having validated them Otherwise it might happen that invalid dimensions are used when reading a

[FFmpeg-cvslog] avformat/mlvdec: Don't leak open AVIOContexts on error

2020-08-18 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Mon Aug 10 02:19:35 2020 +0200| [0d560873da2fc851955e95957473026d2d2243cc] | committer: Andreas Rheinhardt avformat/mlvdec: Don't leak open AVIOContexts on error Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?

[FFmpeg-cvslog] avformat/mlvdec: Check for existence of AVIOContext before using it

2020-08-18 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Mon Aug 10 01:32:42 2020 +0200| [6e0dd41fa3cdfd4b31d2c03c52e926231d7b2e73] | committer: Andreas Rheinhardt avformat/mlvdec: Check for existence of AVIOContext before using it The mlv demuxer supports input split into multiple files; if invalid dat

[FFmpeg-cvslog] avformat/hls: Fix memleak when url is empty

2020-08-18 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Aug 14 22:06:54 2020 +0200| [dfc6a9f07543e3c2bf01baaf8459558365f961d2] | committer: Andreas Rheinhardt avformat/hls: Fix memleak when url is empty Fixes Coverity ID 1465888. Reviewed-by: Steven Liu Signed-off-by: Andreas Rheinhardt > http:

[FFmpeg-cvslog] avformat/hls: Use av_init_pkt() directly

2020-08-18 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Aug 14 22:59:57 2020 +0200| [97d802914994b29eba97dc49e35e8ed60b5b8ae3] | committer: Andreas Rheinhardt avformat/hls: Use av_init_pkt() directly and remove reset_packet(). The packet's data pointer is already zeroed, so the only thing that rese

[FFmpeg-cvslog] avformat/hls: Remove redundant resetting of AVPacket

2020-08-18 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Aug 14 22:36:22 2020 +0200| [8c91b5c48a6bf22359d7565f94a12adae24e4719] | committer: Andreas Rheinhardt avformat/hls: Remove redundant resetting of AVPacket av_read_frame() already returns blank packets on error. Reviewed-by: Steven Liu Signe