[FFmpeg-cvslog] avcodec/mp3_header_decompress: don't free the user provided packet on error

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Mon Mar 19 00:21:19 2018 -0300| [f18f9734694ea0761f94d57685f342b690d563b0] | committer: James Almer avcodec/mp3_header_decompress: don't free the user provided packet on error It's owned by the caller. Reviewed-by: Michael Niedermayer Signed-off-by: Jam

[FFmpeg-cvslog] avcodec/mpeg4_unpack_bframes: reduce code duplication

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Sun Mar 18 23:25:32 2018 -0300| [bd60116794b4baaf9a6fedfc68cb1ac4a383bb2d] | committer: James Almer avcodec/mpeg4_unpack_bframes: reduce code duplication Also fixes one potential leak of side data in out if the av_packet_from_data() call fails. Reviewed-

[FFmpeg-cvslog] avcodec/h264_metadata: fix memory leak in case of output packet creation failure

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Tue Mar 20 00:55:26 2018 -0300| [039be6a23f4399a6a020a03be68e4c7cd5aaed2b] | committer: James Almer avcodec/h264_metadata: fix memory leak in case of output packet creation failure Some function calls may fail after the output packet is initialized. Revi

[FFmpeg-cvslog] avcodec/mpeg2_metadata: unref output packet on failure

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Tue Mar 20 00:55:28 2018 -0300| [2aac5ad2f72cf9a1f024187b78f949c5613ceacd] | committer: James Almer avcodec/mpeg2_metadata: unref output packet on failure Move the check and unref call to the end to be consistent with other bsfs. Reviewed-by: jkqxz Signe

[FFmpeg-cvslog] avcodec/h265_metadata: fix memory leak in case of output packet creation failure

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Tue Mar 20 00:55:27 2018 -0300| [ae36d6cdde0799099dee0397427438bfc86bc1d9] | committer: James Almer avcodec/h265_metadata: fix memory leak in case of output packet creation failure Some function calls may fail after the output packet is initialized. Revi

[FFmpeg-cvslog] avformat/mov: Check STSC and remove invalid entries

2018-03-20 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Mar 16 19:53:36 2018 +0100| [9e67447a4ffacf28af8bace33faf3ea432ddc43e] | committer: Michael Niedermayer avformat/mov: Check STSC and remove invalid entries Fixes assertion failure Fixes: crbug 822547, crbug 822666 and crbug 823009 Affects: a

[FFmpeg-cvslog] ffmpeg.c - drain all decoded frames during stream_loop flush

2018-03-20 Thread Gyan Doshi
ffmpeg | branch: master | Gyan Doshi | Thu Mar 15 17:03:51 2018 +0530| [8ad83044b47a2544907562f5e8fd11dd1a62ef82] | committer: Michael Niedermayer ffmpeg.c - drain all decoded frames during stream_loop flush When a decoded stream is being looped, after each post-EOF rewind, decoders are flushe

[FFmpeg-cvslog] avformat/libopenmpt: Update file extensions list for libopenmpt 0.3

2018-03-20 Thread Jörn Heusipp
ffmpeg | branch: master | Jörn Heusipp | Wed Feb 21 12:11:47 2018 +0100| [81b0d591d690f518c01c45d7ce20fdca1de80d80] | committer: Michael Niedermayer avformat/libopenmpt: Update file extensions list for libopenmpt 0.3 Signed-off-by: Jörn Heusipp Reviewed-by: Josh de Kock Signed-off-by: Michae

[FFmpeg-cvslog] avformat/libopenmpt: Probe file format from file data if possible

2018-03-20 Thread Jörn Heusipp
ffmpeg | branch: master | Jörn Heusipp | Wed Feb 21 12:11:48 2018 +0100| [f6ea397d0ae4e4188e90deecbcffd1cf5419c110] | committer: Michael Niedermayer avformat/libopenmpt: Probe file format from file data if possible When building with libopenmpt 0.3, use the libopenmpt file header probing funct

[FFmpeg-cvslog] avcodec/mediacodecdec: propagate SAR to h/w frames

2018-03-20 Thread Aman Gupta
ffmpeg | branch: master | Aman Gupta | Mon Mar 19 16:29:45 2018 -0700| [2ddc6b439226a7dffb740d6e50bdd835a27d10ea] | committer: Aman Gupta avcodec/mediacodecdec: propagate SAR to h/w frames Allows consumers who are converting hardware buffers to OpenGL textures to render the frames at the intend

[FFmpeg-cvslog] avutil/integer: move the test to the corresponding subdirectory

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Tue Mar 20 15:37:32 2018 -0300| [72bb955625e8cf03095a4e53a68daf5ad8e739e4] | committer: James Almer avutil/integer: move the test to the corresponding subdirectory And actually enable it. Reviewed-by: Michael Niedermayer Signed-off-by: James Almer > h

[FFmpeg-cvslog] avcodec/vp9_superframe_split: fix memory leak in case of output packet creation failure

2018-03-20 Thread James Almer
ffmpeg | branch: master | James Almer | Wed Mar 21 01:38:34 2018 -0300| [7e0dc7210bed69106632540367544381a565fa4d] | committer: James Almer avcodec/vp9_superframe_split: fix memory leak in case of output packet creation failure Some function calls may fail after the output packet is initialize