- 10 Jun, 2021 24 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Since AVStream.codec is gone, avformat.h does not require anything from avcodec.h.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Do not depend on avformat.h to provide it.
-
Anton Khirnov authored
-
Anton Khirnov authored
Include only defs.h, needed for AV_INPUT_BUFFER_PADDING_SIZE.
-
Anton Khirnov authored
Do not rely on including it indirectly through get_bits.h->avcodec.h
-
Anton Khirnov authored
-
Anton Khirnov authored
This file uses definitions from it, but relies on an indirect include through get_bits.h
-
Anton Khirnov authored
Include all required headers explicitly, avoid avcodec.h dependency.
-
Anton Khirnov authored
Include only the headers that are actually needed.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
This will allow to avoid #including the entire avcodec.h in some places.
-
zhilizhao authored
Simple test results: Command: ./ffmpeg -y -hwaccel videotoolbox -hwaccel_output_format videotoolbox_vld \ -i test.mp4 -an -c:v h264_videotoolbox -benchmark out.mp4 Before: frame= 1221 fps= 66 q=-0.0 Lsize= 3144kB time=00:00:20.33 bitrate=1266.6kbits/s dup=4 drop=0 speed= 1.1x bench: utime=2.714s stime=1.218s rtime=18.574s After: frame= 1221 fps=137 q=-0.0 Lsize= 3144kB time=00:00:20.33 bitrate=1266.4kbits/s dup=4 drop=0 speed=2.28x bench: utime=1.450s stime=1.440s rtime=8.924s It has limited usecase since there is no video filter support, so a log message is added to notify the user. Reviewed-by: Steven Liu <liuqi05@kuaishou.com>
-
Lynne authored
load_functions() did not load the device-level functions.
-
Gyan Doshi authored
-
- 09 Jun, 2021 5 commits
-
-
James Almer authored
They are private fields, no reason to have them exposed in a public header. Signed-off-by: James Almer <jamrial@gmail.com>
-
James Almer authored
It should not be accessed from outside of libavformat. Signed-off-by: James Almer <jamrial@gmail.com>
-
James Almer authored
libavdevice needs it. Signed-off-by: James Almer <jamrial@gmail.com>
-
Ting Fu authored
CID 1485003: Memory - illegal accesses (UNINIT) Using uninitialized value "sd". Signed-off-by: Ting Fu <ting.fu@intel.com>
-
Ting Fu authored
CID 1485004: Uninitialized variables (UNINIT) Using uninitialized value "x" when calling "*pixel_belongs_to_region". Signed-off-by: Ting Fu <ting.fu@intel.com>
-
- 08 Jun, 2021 11 commits
-
-
Zhao Zhili authored
Add 'srt_streamid' option as an alias for 'streamid'. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Zhao Zhili authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Zhao Zhili authored
There is no good use case for out of order delivery of data. For live streaming with TSBPD enabled by default, the receiver get data in order based on the timestamps. However, if TSBPD is disabled, the data can be delivered out of order. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Valerii Zapodovnikov authored
Signed-off-by: Valerii Zapodovnikov <val.zapod.vz@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
-
Valerii Zapodovnikov authored
This reverts commit d6d407d2. Hack not needed after a2b1dd0c. Will fix #7480 and #8904. This will include e.g. CODECS="hvc1.2.4.L123.B0" into m3u8. Signed-off-by: Valerii Zapodovnikov <val.zapod.vz@gmail.com>
-
Matthieu Patou authored
Suggested-by: ffmpeg@fb.com Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
-
Michael Niedermayer authored
Fixes: floating point division by 0 Fixes: Ticket 8269 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Fixes: floating point division by 0 Fixes: undefined behavior in handling NaN Fixes: Ticket 8268 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Fixes: CID1476303 Bad bit shift operation Fixes: 34871/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DPX_fuzzer-6331163028357120 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Fixes: Infinite loop Fixes: 34751/clusterfuzz-testcase-minimized-ffmpeg_dem_RPL_fuzzer-5439330800762880 Fixes: 34774/clusterfuzz-testcase-minimized-ffmpeg_dem_RPL_fuzzer-5851571660390400 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
Fixes: invalid shifts Fixes: Ticket 8221 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-