- 27 May, 2019 7 commits
-
-
Michael Niedermayer authored
Fixes: Timeout (14sec -> 9sec) Fixes: 13398/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_fuzzer-5664106709778432 decode_line() becomes 1% faster for fate/vsynth2-ffv1.avi for another fate sample there is a 0.5% speedup the effect should be bigger for files with "flat" colored areas the new faster branch is used in 97-100% of the cases in fate samples compared to the older more complex (which i tested) vsynth3-ffv1-v3-bgr0.avi had the lowest percentual useage of about 97% Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Paul B Mahol authored
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
Werner Robitza authored
Explain that the default Lanczos filter parameter is 3 and that it can be changed by the param0 option. Signed-off-by:
Werner Robitza <werner.robitza@gmail.com>
-
James Almer authored
To ensure the custom allocator is effectively used. Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
Paul B Mahol authored
-
- 26 May, 2019 5 commits
-
-
Antonin Gouzer authored
Slightly modified by Marton Balint to produce valid json as well. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Shiyou Yin authored
In function ff_dct_unquantize_mpeg2_intra_mmi, addr0 shoudn't be changed before storage operation. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Derek Buitenhuis authored
Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 25 May, 2019 3 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Fixes: Timeout (23sec -> 0.5sec) Fixes: 14329/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LSCR_fuzzer-5679252923482112 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegReviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 24 May, 2019 13 commits
-
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Fixes infinte loop with -vf loop=loop=1 and also fixes looping when the input is less frames than the specified loop size. Possible regressions since ef1aadff. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Fixes Coverity CID 1441461. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Fixes Coverity CID 1441460. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Fixes a regression introduced in dbfd0429. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Gyan Doshi authored
Verified that cache files get deleted on Windows.
-
Timo Rothenpieler authored
-
Josh Allmann authored
Signed-off-by:
Timo Rothenpieler <timo@rothenpieler.org>
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Ruiling Song authored
Reviewed-by:
Mark Thompson <sw@jkqxz.net> Signed-off-by:
Ruiling Song <ruiling.song@intel.com>
-
Xuewei Meng authored
Add dilation parameter in dnn native to support dilated convolution. Signed-off-by:
Xuewei Meng <xwmeng96@gmail.com> Signed-off-by:
Steven Liu <lq@onvideo.cn>
-
- 22 May, 2019 4 commits
-
-
Linjie Fu authored
frame->enc_ctrl.Payload is malloced in get_free_frame, directly memset the whole structure of enc_ctrl to zero will cause the memory leak for enc_ctrl.Payload. frame->enc_ctrl as a structure will be malloc and init to zero by calling frame = av_mallocz(sizeof(*frame)), so the memset is redundant and can be removed. Signed-off-by:
Linjie Fu <linjie.fu@intel.com> Signed-off-by:
Zhong Li <zhong.li@intel.com>
-
Jun Zhao authored
ff_filter_get_nb_threads() respect AVFilterContext.nb_threads and graph->nb_threads both, in most case, we perfer this API than using ctx->graph->nb_threads directly. Reviewed-by:
Steven Liu <lq@onvideo.cn> Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
Jun Zhao authored
ff_filter_get_nb_threads() respect AVFilterContext.nb_threads and graph->nb_threads both, in most case, we perfer this API than using ctx->graph->nb_threads directly. Reviewed-by:
Steven Liu <lq@onvideo.cn> Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
Xuewei Meng authored
Add "Leaky_relu" and "None" option in activation function. Reviewed-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Xuewei Meng <xwmeng96@gmail.com> Signed-off-by:
Steven Liu <lq@onvideo.cn>
-
- 21 May, 2019 1 commit
-
-
Xuewei Meng authored
Add another two padding methods "VALID" and "SAME" as tensorflow, and keep the existing "SAME_CLAMP_TO_EDGE" method suggested by sr filter. As "SAME_CLAMP_TO_EDGE"can keep the output with the same size as original input, and gives a slight better result as mentioned by sr filter. Reviewed-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Xuewei Meng <xwmeng96@gmail.com> Signed-off-by:
Steven Liu <lq@onvideo.cn>
-
- 20 May, 2019 6 commits
-
-
Fu Linjie authored
Add "\n" to avoid continuous error messages in one line. Signed-off-by:
Fu Linjie <linjie.fu@intel.com>
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
Daniel Kucera authored
Reviewed-by:
Marton Balint <cus@passwd.hu> Signed-off-by:
Daniel Kucera <github@danman.eu>
-
James Almer authored
As suggested by Ronald, don't map auto threads to frame threads only, and instead distribute them between frame and tile more efficiently. Add a new framethreads override option, similar to the tilethreads one. Signed-off-by:
James Almer <jamrial@gmail.com>
-
Baptiste Coudurier authored
-
Michael Niedermayer authored
Fixes: Timeout (14sec -> 29ms) Fixes: 14733/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CPIA_fuzzer-5707022445576192 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegReviewed-by:
Carl Eugen Hoyos <ceffmpeg@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 19 May, 2019 1 commit
-
-
Michael Niedermayer authored
Fixes: "null pointer dereference" (actually misaligned access but the tools seem not to support this) Fixes: 14551/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_V210_fuzzer-5088609952071680 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-