- 21 May, 2017 3 commits
-
-
Michael Niedermayer authored
avcodec/sbrdsp_fixed: fix runtime error: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: part of 1709/clusterfuzz-testcase-minimized-4513580554649600 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
avcodec/aacsbr_fixed: Fix multiple runtime error: shift exponent 170 is too large for 32-bit type 'int' Fixes part of 1709/clusterfuzz-testcase-minimized-4513580554649600 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
James Almer authored
It was broken in 091c9860
-
- 20 May, 2017 17 commits
-
-
Muhammad Faiz authored
Modifying data pointer when skipping samples may make it unaligned. Workaround for Ticket6349. This should fix the crash of ticket's testcase and a crash/regression with avxsynth (reported by Michael Niedermayer). Also change frame->nb_samples < max to frame->nb_samples <= max. This improves performance. Benchmark: ./ffmpeg -filter_complex "aevalsrc=0:n=1166,firequalizer=fixed=on" -f null null old: 25767 decicycles in take_samples, 1023 runs, 1 skips 25422 decicycles in take_samples, 2047 runs, 1 skips 25181 decicycles in take_samples, 4095 runs, 1 skips 24904 decicycles in take_samples, 8191 runs, 1 skips new: 550 decicycles in take_samples, 1024 runs, 0 skips 548 decicycles in take_samples, 2048 runs, 0 skips 545 decicycles in take_samples, 4096 runs, 0 skips 544 decicycles in take_samples, 8192 runs, 0 skips Reviewed-by: Nicolas George <george@nsup.org> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
-
James Almer authored
-
Anton Khirnov authored
Currently it does not work at all. Libav Bug-Id: 1058 (cherry picked from commit 8652a2c2)
-
Michael Niedermayer authored
Fixes: runtime error: left shift of 706 by 22 places cannot be represented in type 'int' See: L_shl() in the reference software Fixes: 1609/clusterfuzz-testcase-minimized-5102163007111168 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpegSigned-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Clément Bœsch authored
* commit 'e519dcd9': dashenc: separate segments based on current segment duration Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '1920382a': dashenc: add option to provide UTC timing source Also use E instead of AV_OPT_FLAG_ENCODING_PARAM to be consistent with the other AVOption. Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit 'ba6a49e6': configure: Clean up temporary files on interrupt Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '78489822': configure: Place all temporary files in one separate directory Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '11e225db': rtmp: Account for bytes_read wraparound This commit is a noop, see 0849a0ebMerged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit 'ca6ae3b7': vaapi_encode: Add MPEG-2 support This commit is a noop, see 3b95c7c1Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '3c2717e4': dashenc: increase buffer time hint in the manifest Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '95f1004b': dashenc: add mandatory id to AdaptationSet and Period in manifest Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '1ae6cb7d': dashenc: fix ISO8601 UTC parsing Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '2bbb5abd': build: Map -Wall compiler flag to -W3 for MSVC and -Wextra to -W4 Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '6151e912': build: Detect blocks C language extension and add it as VDA dependency Merged-by: Clément Bœsch <u@pkh.me>
-
Matthieu Bouron authored
Some samples have their metadata track time_scale incorrectly set to 0 and the check introduced by a398f054 prevents playback of those samples. Setting the time_scale to 1 fixes playback.
-
Paul B Mahol authored
This avoids producing out of range or clipped samples. Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 19 May, 2017 20 commits
-
-
Michael Niedermayer authored
Fixes: runtime error: index 8 out of bounds for type 'uint8_t [8]' Fixes: 1699/clusterfuzz-testcase-minimized-6327177438035968 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpegSigned-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
The code mistook the first iteration sometimes as the end Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Muhammad Faiz authored
See http://lists.ffmpeg.org/pipermail/ffmpeg-user/2017-April/035975.html Parsed_filter_X could remain and user can override it with custom one. Example: ffplay -f lavfi "nullsrc=s=640x360, sendcmd='1 drawtext@top reinit text=Hello; 2 drawtext@bottom reinit text=World', drawtext@top=x=16:y=16:fontsize=20:fontcolor=Red:text='', drawtext@bottom=x=16:y=340:fontsize=16:fontcolor=Blue:text=''" Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
-
Michael Niedermayer authored
avcodec/aacsbr_fixed: Fix multiple runtime error: shift exponent 150 is too large for 32-bit type 'int' Fixes: 1681/clusterfuzz-testcase-minimized-5970545365483520 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpegSigned-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Fixes: 1674/clusterfuzz-testcase-minimized-6092531563495424 Fixes: 1686/clusterfuzz-testcase-minimized-6282691643179008 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpegSigned-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Clément Bœsch authored
* commit 'f96d07f4': configure: Add quotes around a variable which might be empty Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '562ef82d': fifo: Return the correct AVERROR value This commit is a noop, see 2e81bb5eMerged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '9bf262f4': configure: Use proper compiler-specific speed flags for hostcc Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit 'bf38959a': configure: Move optflags checks to a more sensible place Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '381a4e31': tak: Convert to the new bitstream reader magicyuv: Convert to the new bitstream reader truemotion2rt: Convert to the new bitstream reader wavpack: Convert to the new bitstream reader mpc: Convert to the new bitstream reader This merge is a noop, see http://ffmpeg.org/pipermail/ffmpeg-devel/2017-April/209609.htmlMerged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit 'b83aea73': des-test: Pass the proper types to av_des_*() functions See 183c3fa4Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '5c0e2b13': swscale-test: const correctness for pointer variable This commit is a noop, see b3674533Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '7ff018c1': OS/2: Try to commit memory above 1GB Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit 'fd8de7f2': dxtory: Convert to the new bitstream reader apedec: Convert to the new bitstream reader This commit is a noop, see http://ffmpeg.org/pipermail/ffmpeg-devel/2017-April/209609.htmlMerged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
-
Clément Bœsch authored
* commit 'b4a911c1': mpegvideoenc: make a table const Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '296eff4d': zmbvenc: get rid of a global table Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '00b775dd': hevc: Mark as having threadsafe init This commit is a noop, see 14b90601Merged-by: Clément Bœsch <u@pkh.me>
-
Clément Bœsch authored
* commit '54dcd228': als: Convert to the new bitstream reader This commit is a noop, see http://ffmpeg.org/pipermail/ffmpeg-devel/2017-April/209609.htmlMerged-by: Clément Bœsch <u@pkh.me>
-