Kacper Michajłow
9b94b652db
doc/examples/decode_filter_video: use av_usleep
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
5a768e8dd0
doc/examples/decode_filter_audio: remove unused unistd.h include
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
1a1377c53d
avfilter/stack_internal: fix checkheaders test
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
48b941d543
tools/fourcc2pixfmt: fix getopt return value type
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
082e2b26d4
tools/graph2dot: fix getopt return value type
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
01cfb01c9c
avutil/tests/pca: comment out unused code
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
eec391993e
avcodec/prores_raw: add missing includes
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
a6380c35d6
avfilter/vf_blackdetect: add missing config.h include
...
For ARCH_X86.
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
b7a3c426ea
avcodec/vulkan_encode_av1: use CODEC_PIXFMTS to define pix_fmts
...
Fixes deprecation warnings.
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
ac6db22e37
avcodec/d3d12va_encode: fix label followed by a declaration warning
...
Fixes: d3d12va_encode.c: warning: label followed by a declaration is a
C23 extension
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
98c4b9dbbd
swscale/input: don't generate unused functions
...
Fixes: input.c:1271:1: warning: unused function 'planar_rgb16_s12_to_a'
Fixes: input.c:1272:1: warning: unused function 'planar_rgb16_s10_to_a'
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
0798f58abe
avcodec/mpeg4videodec: add av_unreachable for unexpected startcode
...
Fixes: mpeg4videodec.c:3679:22: warning: variable 'name' is used
uninitialized whenever 'if' condition is false
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 19:29:53 +00:00
Kacper Michajłow
2287a19abb
avcodec/libvorbisdec: avoid overflow when assinging sample rate from long to int
...
Fixes: 416134551/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LIBVORBIS_DEC_fuzzer-6096101407260672
Found-by: OSS-Fuzz
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 20:31:09 +02:00
Kacper Michajłow
286a3892a8
avcodec/g728dec: init missing sample rate
...
Fixes: BAD BUILD: fuzzing /tmp/not-out/tmp0d_svy0e/ffmpeg_AV_CODEC_ID_G728_DEC_fuzzer with afl-fuzz failed
Found-by: OSS-Fuzz
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 20:31:09 +02:00
Kacper Michajłow
c2f7dae70d
avcodec/g726: init missing sample rate
...
Fixes: 416134551/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ADPCM_G726_DEC_fuzzer-5695764455292928
Found-by: OSS-Fuzz
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 20:31:09 +02:00
Kacper Michajłow
db05b656b8
avformat/lrcdec: use av_sscanf to avoid possible locale issues
...
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 20:31:09 +02:00
Kacper Michajłow
c74bc74398
avformat/lrcdec: limit input timestamp range to avoid overflows
...
Fixes: clusterfuzz-testcase-ffmpeg_dem_LRC_fuzzer-5226140131459072
Found-by: OSS-Fuzz
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 20:31:09 +02:00
Kacper Michajłow
e6635ada64
avfilter/vf_colordetect: optimize C functions a bit
...
They are used to process tail, so it's still good to have them faster.
Even if AVX version are used.
GCC 14.2.0 | x86_64 (default config) | Before:
detect_alpha_8_full_c: 3803.0 ( 1.00x)
detect_alpha_8_full_avx2: 166.4 (22.86x)
detect_alpha_8_full_avx512icl: 144.2 (26.37x)
detect_alpha_8_limited_c: 10454.4 ( 1.00x)
detect_alpha_8_limited_avx2: 616.5 (16.96x)
detect_alpha_8_limited_avx512icl: 509.4 (20.52x)
detect_alpha_16_full_c: 1903.0 ( 1.00x)
detect_alpha_16_full_avx2: 172.4 (11.04x)
detect_alpha_16_full_avx512icl: 163.4 (11.65x)
detect_alpha_16_limited_c: 3703.6 ( 1.00x)
detect_alpha_16_limited_avx2: 644.4 ( 5.75x)
detect_alpha_16_limited_avx512icl: 558.0 ( 6.64x)
detect_range_8_c: 5855.9 ( 1.00x)
detect_range_8_avx2: 150.4 (38.94x)
detect_range_8_avx512icl: 146.7 (39.91x)
detect_range_16_c: 2702.2 ( 1.00x)
detect_range_16_avx2: 256.7 (10.53x)
detect_range_16_avx512icl: 116.8 (23.13x)
GCC 14.2.0 | x86_64 (default config) | After:
detect_alpha_8_full_c: 376.3 ( 1.00x)
detect_alpha_8_full_avx2: 169.2 ( 2.22x)
detect_alpha_8_full_avx512icl: 134.6 ( 2.80x)
detect_alpha_8_limited_c: 6024.1 ( 1.00x)
detect_alpha_8_limited_avx2: 641.8 ( 9.39x)
detect_alpha_8_limited_avx512icl: 493.0 (12.22x)
detect_alpha_16_full_c: 436.4 ( 1.00x)
detect_alpha_16_full_avx2: 156.3 ( 2.79x)
detect_alpha_16_full_avx512icl: 151.8 ( 2.87x)
detect_alpha_16_limited_c: 3679.9 ( 1.00x)
detect_alpha_16_limited_avx2: 642.0 ( 5.73x)
detect_alpha_16_limited_avx512icl: 555.2 ( 6.63x)
detect_range_8_c: 655.2 ( 1.00x)
detect_range_8_avx2: 153.9 ( 4.26x)
detect_range_8_avx512icl: 147.4 ( 4.45x)
detect_range_16_c: 743.3 ( 1.00x)
detect_range_16_avx2: 258.6 ( 2.87x)
detect_range_16_avx512icl: 107.7 ( 6.90x)
Clang 19.1.7 | x86_64 (default config) | Before:
detect_alpha_8_full_c: 7013.4 ( 1.00x)
detect_alpha_8_full_avx2: 141.8 (49.46x)
detect_alpha_8_full_avx512icl: 133.8 (52.40x)
detect_alpha_8_limited_c: 7038.8 ( 1.00x)
detect_alpha_8_limited_avx2: 605.0 (11.63x)
detect_alpha_8_limited_avx512icl: 506.5 (13.90x)
detect_alpha_16_full_c: 1799.5 ( 1.00x)
detect_alpha_16_full_avx2: 143.0 (12.59x)
detect_alpha_16_full_avx512icl: 127.5 (14.12x)
detect_alpha_16_limited_c: 3499.6 ( 1.00x)
detect_alpha_16_limited_avx2: 633.6 ( 5.52x)
detect_alpha_16_limited_avx512icl: 551.9 ( 6.34x)
detect_range_8_c: 5253.6 ( 1.00x)
detect_range_8_avx2: 125.0 (42.01x)
detect_range_8_avx512icl: 123.2 (42.65x)
detect_range_16_c: 3055.2 ( 1.00x)
detect_range_16_avx2: 230.0 (13.28x)
detect_range_16_avx512icl: 95.9 (31.86x)
Clang 19.1.7 | x86_64 (default config) | After:
detect_alpha_8_full_c: 323.3 ( 1.00x)
detect_alpha_8_full_avx2: 149.7 ( 2.16x)
detect_alpha_8_full_avx512icl: 127.7 ( 2.53x)
detect_alpha_8_limited_c: 5075.9 ( 1.00x)
detect_alpha_8_limited_avx2: 625.4 ( 8.12x)
detect_alpha_8_limited_avx512icl: 493.0 (10.30x)
detect_alpha_16_full_c: 421.0 ( 1.00x)
detect_alpha_16_full_avx2: 238.8 ( 1.76x)
detect_alpha_16_full_avx512icl: 126.0 ( 3.34x)
detect_alpha_16_limited_c: 3516.8 ( 1.00x)
detect_alpha_16_limited_avx2: 624.7 ( 5.63x)
detect_alpha_16_limited_avx512icl: 544.7 ( 6.46x)
detect_range_8_c: 609.1 ( 1.00x)
detect_range_8_avx2: 239.4 ( 2.54x)
detect_range_8_avx512icl: 89.0 ( 6.84x)
detect_range_16_c: 463.9 ( 1.00x)
detect_range_16_avx2: 127.4 ( 3.64x)
detect_range_16_avx512icl: 86.4 ( 5.37x)
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 17:39:23 +00:00
Lynne
85e8e59001
Revert "doc/developer: Basic documentation for Source Plugins"
...
This reverts commit 67320e0627 .
We do not want random forks or features.
2025-08-11 19:53:28 +09:00
Michael Niedermayer
67320e0627
doc/developer: Basic documentation for Source Plugins
...
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
2025-08-11 12:33:16 +02:00
Michael Niedermayer
3542260376
avcodec/scpr3: Clear clr
...
clr is passing into decode_run_p() its not used when not set
but this possibly triggers msan (it doesnt locally)
Fixes?: use of uninintialized memory
Fixes?: 436997807/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCPR_fuzzer-6253316466606080
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
2025-08-11 11:54:31 +02:00
Michael Niedermayer
9686fdd729
avcodec/ilbcdec: Clear cbvec when used with create_augmented_vector()
...
Fixes: use of uninitialized memory
Fixes: 42538134/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ILBC_fuzzer-6322020827070464
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
2025-08-11 11:54:31 +02:00
Niklas Haas
e29a99a975
fftools/ffmpeg_enc: don't ignore user selected chroma location
...
This code always ignored the user-provided enc_ctx->chroma_sample_location
in favor of the location tagged on the frame. This leads to a very (IMHO)
unexpected outcome where -chroma_sample_location works differently from the
related options like -colorspace and -color_range, the latter of which
override the frame properties as a consequence of being configured on the
filter graph output.
The discrepancy comes from the fact that the chroma sample location does not
itself participate in filter graph negotiation.
Solve the situation by only overriding the enc_ctx option if it was left
unspecified by the user, and otherwise printing a warning if the requested
parameter does not match the frame parameter.
2025-08-11 09:38:38 +02:00
Kacper Michajłow
3bf8bf965f
avformat/mov: clear old name from infe
...
heif_items are reused and to avoid leaking memory or using stale name,
clear it first.
Fixes: 432505829/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-6654363487764480
Found-by: OSS-Fuzz
Signed-off-by: Kacper Michajłow <kasper93@gmail.com >
2025-08-11 01:25:05 +00:00
Leo Izen
cd83161ff6
avcodec/vp9: fix leaked cbs fragment AVBufferRef
...
When this function returns, the fragment is never reset, so
current_frag->data_ref is never unref-ed, which ends up leaking it.
We call ff_cbs_fragment_reset to release the reference on its buffer.
Signed-off-by: Leo Izen <leo.izen@gmail.com >
2025-08-10 13:23:33 -04:00
Maryla Ustarroz-Calonge via ffmpeg-devel
6711c6a89b
ffprobe: add -codec:<media_spec> option and -c:<media_spec> variant
...
opt_codec() is mostly copied over from ffplay.c.
This is useful when different decoders have different capabilities,
or to test a specific decoder.
Signed-off-by: Maryla Ustarroz-Calonge <maryla@google.com >
2025-08-10 10:19:57 +02:00
Gyan Doshi
9895c4222c
doc/filters: correct psnr option name ( #20199 )
...
Correct doc entry from stats_add_max to output_max
2025-08-10 11:02:22 +05:30
Michael Niedermayer
cfce595572
avcodec/apv_decode: make apv_format_table consistent with the code and check it
...
Fixes: writing in a null pointer
Fixes: 435278398/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APV_fuzzer-4566392923029504
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
2025-08-10 02:29:09 +00:00
Martin Storsjö
8e4c904c8e
checkasm: ac3dsp: Increase the float tolerance for sum_square_butterfly_float
...
Accept up to 13 ULP difference.
This fixes running "checkasm --test=ac3dsp 3044836819" on ARM.
Depending on how the SIMD implementations aggregate numbers,
larger/smaller values might not end up accumulated in exactly
the same way; the current NEON implementation for ARM aggregates
into vectors of 2 elements. If it would aggregate into vectors
of 4 elements instead, like the AArch64 version does, this particular
case would end up with a smaller difference.
2025-08-10 02:27:44 +00:00
Martin Storsjö
0400e05a1a
checkasm: ac3dsp: Fix function name typos for sum_square_butterfly
2025-08-10 02:27:44 +00:00
winlin
a72cc49e8a
avformat/tls_openssl: fix X509 cert serial number might be negative
...
See RFC5280 4.1.2.2
Signed-off-by: Jack Lau <jacklau1222@qq.com >
2025-08-10 02:26:16 +00:00
nyanmisaka
49f4ef9e79
lavu/log: fix color for AV_CLASS_CATEGORY_HWDEVICE on non-Win32
...
AV_CLASS_CATEGORY_HWDEVICE was introduced in the past but
no corresponding colors were added for non-Win32 platforms.
Fixes bf1579c ("avutil/log,hwcontext: Add AV_CLASS_CATEGORY_HWDEVICE")
Signed-off-by: nyanmisaka <nst799610810@gmail.com >
2025-08-10 02:24:56 +00:00
Jacob Lifshay
f6c4a64ee0
tests/fate/subtitles: add test for smpte436m_to_eia608 bsf
...
Signed-off-by: Jacob Lifshay <programmerjake@gmail.com >
2025-08-10 01:21:44 +00:00
Jacob Lifshay
925fad499d
lavc/bsf/smpte436m_to_eia608: fix memory leak -- forgot to free input av_packet
...
Signed-off-by: Jacob Lifshay <programmerjake@gmail.com >
2025-08-10 01:21:44 +00:00
Jacob Lifshay
f0a53917e3
lavc/bsf/eia608_to_smpte436m: fix memory leak -- forgot to free input av_packet
...
reported in https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20024#issuecomment-2405
Reported-by: Sean McGovern <gseanmcg@gmail.com >
Signed-off-by: Jacob Lifshay <programmerjake@gmail.com >
2025-08-10 01:21:44 +00:00
Jacob Lifshay
1d76302eb6
tests/fate/subtitles: fix mcc test input file paths
...
they use tests/ref/fate/sub-mcc-remux as input,
so prefix them with $(SRC_PATH) so building works
when not in the source directory.
Fixes : #20183
Reported-by: Sean McGovern <gseanmcg@gmail.com >
Signed-off-by: Jacob Lifshay <programmerjake@gmail.com >
2025-08-10 01:21:44 +00:00
Timo Rothenpieler
274e00ea84
forgejo/autolabeler: clean up logic a bit and prevent self-looping
...
The loop-protection only takes effect for the automatic token, not for
ffmpeg-devels PAT.
2025-08-10 01:50:46 +02:00
Mark Thompson
26a2a76346
cbs_vp9: Fix VP9 passthrough
...
Don't overwrite the bitstream values when updating the top-level loop
filter and segmentation state, instead do the update separately at the
end of the frame parsing.
This also reverts the change to the passthrough tests which made them
have output not matching the input.
2025-08-09 22:46:08 +00:00
Mark Thompson
19473362fc
hwcontext_vulkan: Fix build
2025-08-09 22:46:08 +00:00
Mark Thompson
4a42e5a1e2
hwcontext_vulkan: Fix build with older Vulkan headers
2025-08-09 22:46:08 +00:00
Leon Grutters
777408d149
doc/community.texi: fix spelling error
...
Fixes: 262d41c804 ("all: fix typos found by codespell")
Signed-off-by: Leon Grutters <gruttersleonbot2@gmail.com >
2025-08-09 22:01:42 +00:00
Jack Lau
037fc47f35
doc/protocols: add doc for dtls
...
Signed-off-by: Jack Lau <jacklau1222@qq.com >
2025-08-09 23:18:57 +02:00
Jack Lau
dc9f676b99
avformat/tls: add new option use_srtp to control whether enable it
...
The SRTP profile string "SRTP_AES128_CM_SHA1_80" is only used when
use_srtp is enabled. Move its declaration inside the "if (s->use_srtp)"
block to limit scope
Signed-off-by: Jack Lau <jacklau1222@qq.com >
2025-08-09 23:18:57 +02:00
Jack Lau
fd55c4b5f7
avformat/tls_openssl: add av_assert0() for tls_shared
...
Signed-off-by: Jack Lau <jacklau1222@qq.com >
2025-08-09 23:18:57 +02:00
Jack Lau
d7bc024476
avformat/tls_openssl: simplify the external_sock check
...
Signed-off-by: Jack Lau <jacklau1222@qq.com >
2025-08-09 23:18:57 +02:00
Jack Lau
553fa9e3df
avformat/tls_openssl: cleanup the pointer name of TLSContext and TLSShared
...
Pure cleanup, no functional changes
Unify local pointer names to `TLSContext *c` and `TLSShared *s` to
reduce confusion from inconsistent names (e.g. p, ctx, s, c)
Signed-off-by: Jack Lau <jacklau1222@qq.com >
2025-08-09 23:18:57 +02:00
Timo Rothenpieler
e992464f0f
forgejo/autolabeler: add some logic to also auto-remove the "New" label
2025-08-09 23:18:57 +02:00
Michael Niedermayer
638b521c7b
Bump versions for master after release/8.0
...
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
n8.1-dev
2025-08-09 18:03:05 +02:00
Michael Niedermayer
7eaa0f799a
Bump versions for release/8.0
...
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
2025-08-09 17:30:39 +02:00
Michael Niedermayer
f4f263aad0
Changelog: Add 8.0 marker
...
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc >
2025-08-09 17:26:13 +02:00