[FFmpeg-cvslog] lavfi/dnn_backend_openvino.c: Correct Pointer Type while Freeing

2021-05-27 Thread Shubhanshu Saxena
ffmpeg | branch: master | Shubhanshu Saxena | Thu May 27 23:53:55 2021 +0530| [e41255cddb827ee152a58a60ed3ecd4dc6e79847] | committer: Guo Yejun lavfi/dnn_backend_openvino.c: Correct Pointer Type while Freeing This commit corrects the type of pointer of elements from the inference queue in ff_d

[FFmpeg-cvslog] avfilter/yadif: Fix time base for large denominators

2021-05-27 Thread Tom Boshoven
ffmpeg | branch: master | Tom Boshoven | Tue May 25 11:57:08 2021 -0400| [8205f32663ec492200cdd47216719be15e92fcdb] | committer: Michael Niedermayer avfilter/yadif: Fix time base for large denominators This fixes an issue where the yadif filter could cause the timebase denominator to overflow

[FFmpeg-cvslog] avcodec/exr: More strictly check dc_count

2021-05-27 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Tue May 25 19:29:18 2021 +0200| [26d3c81bc5ef2f8c3f09d45eaeacfb4b1139a777] | committer: Michael Niedermayer avcodec/exr: More strictly check dc_count Fixes: out of array access Fixes: exr/deneme Found-by: Burak Çarıkçı Signed-off-by: Michael Ni

[FFmpeg-cvslog] avcodec/exr: x/ymax cannot be INT_MAX

2021-05-27 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Tue Apr 20 20:24:21 2021 +0200| [48342aa0750f83006582d1598b5f22297f6dbf83] | committer: Michael Niedermayer avcodec/exr: x/ymax cannot be INT_MAX The code uses x/ymax + 1 so the maximum is INT_MAX-1 Fixes: signed integer overflow: 2147483647 + 1

[FFmpeg-cvslog] avcodec/error_resilience: cleanup mpeg2 handling

2021-05-27 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Mon May 24 20:29:10 2021 +0200| [b752d195cc527c0147bad97767632de75e1be0d9] | committer: Michael Niedermayer avcodec/error_resilience: cleanup mpeg2 handling After this, the loop for the mpeg2 case is only executed when needed Signed-off-by: Mich

[FFmpeg-cvslog] avformat/avio: Check av_opt_copy() for failure

2021-05-27 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Thu May 20 21:16:52 2021 +0200| [f8611ae1efc47fbe1aff140c89bee4fd1d62d3e1] | committer: Michael Niedermayer avformat/avio: Check av_opt_copy() for failure Fixes: CID1477416 Unchecked return value Signed-off-by: Michael Niedermayer > http://git

[FFmpeg-cvslog] avformat/moflex: Remove unneeded format variable

2021-05-27 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Thu May 20 18:25:47 2021 +0200| [36a3a5050a06ed98e34a94caac7f4daf764cf55c] | committer: Michael Niedermayer avformat/moflex: Remove unneeded format variable Fixes: CID1477423 Uninitialized scalar variable Signed-off-by: Michael Niedermayer > h

[FFmpeg-cvslog] avcodec/utils: don't use ff_fast_mallocz() in av_fast_padded_malloc()

2021-05-27 Thread James Almer
ffmpeg | branch: master | James Almer | Sun May 23 11:18:18 2021 -0300| [e44cb7363fed11b638f1cfc798d942bcf1e4db50] | committer: James Almer avcodec/utils: don't use ff_fast_mallocz() in av_fast_padded_malloc() It will be removed in the next commit. Signed-off-by: James Almer > http://git.vid

[FFmpeg-cvslog] avutil/mem: make ff_fast_malloc() internal to mem.c

2021-05-27 Thread James Almer
ffmpeg | branch: master | James Almer | Sun May 23 11:24:17 2021 -0300| [786be70e28fe739b8e49893fa13ae4652a68d1ea] | committer: James Almer avutil/mem: make ff_fast_malloc() internal to mem.c Signed-off-by: James Almer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=786be70e28fe73

[FFmpeg-cvslog] avutil/mem: check for max_alloc_size in av_fast_malloc()

2021-05-27 Thread James Almer
ffmpeg | branch: master | James Almer | Sun May 23 11:29:04 2021 -0300| [918fc9a0ed4e9202341ffb3e7e4b72b4387dfe0a] | committer: James Almer avutil/mem: check for max_alloc_size in av_fast_malloc() This puts av_fast_malloc*() in line with av_fast_realloc(). Signed-off-by: James Almer > http:/