[FFmpeg-cvslog] lavc/mvha: Check init_get_bits8() for failure

2019-11-28 Thread Jun Zhao
ffmpeg | branch: master | Jun Zhao | Thu Nov 28 19:42:01 2019 +0800| [2952d9c5dce4014716ed9693f01447254bf42ee3] | committer: Jun Zhao lavc/mvha: Check init_get_bits8() for failure fix potential null pointer dereference Signed-off-by: Jun Zhao > http://git.videolan.org/gitweb.cgi/ffmpeg.git/

[FFmpeg-cvslog] lavf/vividas: check avformat_new_stream() return

2019-11-28 Thread Jun Zhao
ffmpeg | branch: master | Jun Zhao | Thu Nov 28 19:07:48 2019 +0800| [d96558902277a25e002ad1b9bb9bc7e536a13a8b] | committer: Jun Zhao lavf/vividas: check avformat_new_stream() return check avformat_new_stream() return. Reviewed-by: Michael Niedermayer Signed-off-by: Jun Zhao > http://git.v

[FFmpeg-cvslog] avformat/vividas: Avoid allocation of AVIOContext

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Nov 28 15:31:33 2019 +0100| [ff5c8e57e756e5b80bc32ea469495a9a89c012b6] | committer: Michael Niedermayer avformat/vividas: Avoid allocation of AVIOContext Put an AVIOContext whose lifetime doesn't extend beyond the function where it is allocate

[FFmpeg-cvslog] avfilter/vf_yadif: rename config_props -> config_output, link -> outlink

2019-11-28 Thread Limin Wang
ffmpeg | branch: master | Limin Wang | Thu Nov 28 09:41:15 2019 +0800| [c1ed00fd185e347032bbe23b42f66ce027bbecce] | committer: Michael Niedermayer avfilter/vf_yadif: rename config_props -> config_output, link -> outlink Signed-off-by: Limin Wang Signed-off-by: Michael Niedermayer > http://g

[FFmpeg-cvslog] avformat/matroskaenc: Avoid allocation for small dynamic buffers

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:10 2019 +0100| [3a58ec7c772563fbacba63289aa49bc56a496e3f] | committer: James Almer avformat/matroskaenc: Avoid allocation for small dynamic buffers By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of avio_close_dyn_buf()

[FFmpeg-cvslog] avformat/av1: Avoid allocation for small headers

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:07 2019 +0100| [a31f68fb449eaf6f030ce5633435663f154bb34d] | committer: James Almer avformat/av1: Avoid allocation for small headers By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of avio_close_dyn_buf() + av_free() one

[FFmpeg-cvslog] avformat/id3v2enc: Avoid allocation for small tags

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:09 2019 +0100| [aad82270b60ad244330a137457f5a227fac9b175] | committer: James Almer avformat/id3v2enc: Avoid allocation for small tags By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of avio_close_dyn_buf() + av_free() on

[FFmpeg-cvslog] avformat/avc: write the missing bits in the AVC Decoder Configuration Box

2019-11-28 Thread James Almer
ffmpeg | branch: master | James Almer | Tue Nov 26 11:58:16 2019 -0300| [16fa513392adbdd786776d12258f39ad81149a19] | committer: James Almer avformat/avc: write the missing bits in the AVC Decoder Configuration Box Signed-off-by: James Almer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=c

[FFmpeg-cvslog] avformat/movenc: Avoid allocation for small dynamic buffers

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:11 2019 +0100| [4d97b2ad2fa6d851c70fd982ab300e4fd559f1d0] | committer: James Almer avformat/movenc: Avoid allocation for small dynamic buffers By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of avio_close_dyn_buf() + av_

[FFmpeg-cvslog] avformat/apetag: Avoid allocation for small tags

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:06 2019 +0100| [67ce9e0463e170179ece4abc33be716282a0202b] | committer: James Almer avformat/apetag: Avoid allocation for small tags By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of avio_close_dyn_buf() + av_free() one

[FFmpeg-cvslog] avformat/avc: Avoid allocation for small SPS/PPS arrays

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:08 2019 +0100| [c36a3df67692113af15f7accb006f02956882817] | committer: James Almer avformat/avc: Avoid allocation for small SPS/PPS arrays By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of avio_close_dyn_buf() + av_free

[FFmpeg-cvslog] avformat/aviobuf: Avoid allocating buffer when using dynamic buffer

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 13:22:05 2019 +0100| [163bb9ac0af495a5cb95441bdb5c02170440d28c] | committer: James Almer avformat/aviobuf: Avoid allocating buffer when using dynamic buffer Up until now, using a dynamic buffer entailed at least three allocations: One f

[FFmpeg-cvslog] avfilter/vf_colorconstancy: av_frame_free(&in) in case of error or direct flag is false

2019-11-28 Thread Limin Wang
ffmpeg | branch: master | Limin Wang | Wed Nov 27 18:46:51 2019 +0800| [3a6ec10d904f5f9d38900a79281000ca1d0a0747] | committer: Michael Niedermayer avfilter/vf_colorconstancy: av_frame_free(&in) in case of error or direct flag is false Signed-off-by: Limin Wang Reviewed-by: Paul B Mahol Sign

[FFmpeg-cvslog] avfilter/vf_libvmaf: Check for av_frame_alloc failure

2019-11-28 Thread Limin Wang
ffmpeg | branch: master | Limin Wang | Wed Nov 20 23:24:22 2019 +0800| [8aa143eaa89cff7a72e2e9c80eb7fbac3b77e5be] | committer: Michael Niedermayer avfilter/vf_libvmaf: Check for av_frame_alloc failure Reviewed-by: Paul B Mahol Signed-off-by: Limin Wang Signed-off-by: Michael Niedermayer >

[FFmpeg-cvslog] avformat/flacenc: Add const to ff_flac_write_header() parameter

2019-11-28 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Nov 27 08:48:56 2019 +0100| [df912bbc5f9cffa56341382a92aff739755f6d60] | committer: Michael Niedermayer avformat/flacenc: Add const to ff_flac_write_header() parameter The extradata is not changed at all. Signed-off-by: Andreas Rheinhardt Si

[FFmpeg-cvslog] avcodec/vp8: fix multiple ff_thread_finish_setup() calls

2019-11-28 Thread Zhao Zhili
ffmpeg | branch: master | Zhao Zhili | Thu Nov 14 12:29:55 2019 +0800| [ed5cdf3d5a7eae4e9f399520989c157cfb50fa51] | committer: Michael Niedermayer avcodec/vp8: fix multiple ff_thread_finish_setup() calls webp decoder doesn't set update_thread_context field $ ffmpeg -i rgb_q80.webp -f null - [

[FFmpeg-cvslog] lavc/qsvenc: Fix some code indentations

2019-11-28 Thread Linjie Fu
ffmpeg | branch: master | Linjie Fu | Tue Nov 26 11:53:16 2019 +0800| [df625057af9b646742b3b7ff558dd18d52cc8b4d] | committer: Zhong Li lavc/qsvenc: Fix some code indentations Signed-off-by: Linjie Fu > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=df625057af9b646742b3b7ff558dd18d5

[FFmpeg-cvslog] lavc/rav1e: log and doc updated for const quantizer mode

2019-11-28 Thread Zhong Li
ffmpeg | branch: master | Zhong Li | Tue Nov 12 09:09:20 2019 +| [846e26b8c93a313d9f0c1f7d4a2965b357482abf] | committer: Zhong Li lavc/rav1e: log and doc updated for const quantizer mode Signed-off-by: Zhong Li > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=846e26b8c93a313d9f

[FFmpeg-cvslog] doc/encoder: add the missing qsv encoders

2019-11-28 Thread Zhong Li
ffmpeg | branch: master | Zhong Li | Wed Nov 27 07:04:23 2019 +| [1b831bc72975d621b8821849d05357e6afafc229] | committer: Zhong Li doc/encoder: add the missing qsv encoders Reviewed-by: Gyan Doshi Signed-off-by: Zhong Li > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b831bc7

[FFmpeg-cvslog] Add options for spatial layers.

2019-11-28 Thread Thierry Foucu
ffmpeg | branch: master | Thierry Foucu | Wed Nov 27 16:25:33 2019 -0800| [eaf566ce0b9fd33120cc564bc7cd6986de3ca724] | committer: James Almer Add options for spatial layers. Disable by default to output all the layers, to match libaomdec wrapper. Add option to select the operating point for th