FFmpeg/libavcodec
Andreas Rheinhardt fa77cb258b avcodec/h264dec: Fix data race when updating decode_error_flags
When using multi-threaded decoding, every decoding thread
has its own DBP consisting of H264Pictures and each of these
points to its own AVFrames. They are synced during
update_thread_context via av_frame_ref() and therefore
the threads actually decoding (as well as all the others)
must not modify any field that is copied by av_frame_ref()
after ff_thread_finish_setup().

Yet this is exactly what happens when an error occurs
during decoding and the AVFrame's decode_error_flags are updated.
Given that these errors only become apparent during decoding,
this can't be set before ff_thread_finish_setup() without
defeating the point of frame-threading; in practice,
this meant that the decoder did not set these flags correctly
in case frame-threading was in use. (This means that e.g.
the ffmpeg cli tool fails to output its "corrupt decoded frame"
message in a nondeterministic fashion.)

This commit fixes this by adding a new H264Picture field
that is actually propagated across threads; the field
is an AVBufferRef* whose data is an atomic_int; it is
atomic in order to allow multiple threads to update it
concurrently and not to provide synchronization
between the threads setting the field and the thread
ultimately returning the AVFrame.

This unfortunately has the overhead of one allocation
per H264Picture (both the original one as well as
creating a reference to an existing one), even in case
of no errors. In order to mitigate this, an AVBufferPool
has been used and only if frame-threading is actually
in use. This expense will be removed as soon as
a proper API for refcounted objects (not based upon
AVBuffer) is in place.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2023-09-15 13:08:37 +02:00
..
aarch64 aarch64/hevc: Replace br return with ret 2023-08-08 13:46:07 +03:00
alpha avcodec/idctdsp: Avoid inclusion of avcodec.h 2023-09-11 00:26:34 +02:00
arm
avr32
bfin
loongarch avcodec/la: Add LSX optimization for h264 qpel. 2023-05-25 21:05:01 +02:00
mips
neon
ppc avcodec/idctdsp: Avoid inclusion of avcodec.h 2023-09-11 00:26:34 +02:00
riscv lavc/g722dsp: add RISC-V V DSP function 2023-08-24 21:07:18 +03:00
sh4
sparc
tests avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
x86 avcodec/proresdsp: Pass necessary parameter directly 2023-09-11 00:26:34 +02:00
.gitignore
4xm.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
8bps.c avcodec/8bps: always decode to planar formats directly 2023-09-11 22:04:26 +02:00
8svx.c
012v.c
a64colors.h
a64multienc.c
a64tables.h
aac_ac3_parser.c avcodec/aac_ac3_parser: add preprocessor checks for codec specific code 2023-06-24 14:38:29 -03:00
aac_ac3_parser.h
aac_adtstoasc_bsf.c
aac_defines.h
aac_parser.c
aac.h
aaccoder_trellis.h
aaccoder_twoloop.h
aaccoder.c
aacdec_fixed.c
aacdec_template.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
aacdec.c
aacdectab.h
aacenc_is.c
aacenc_is.h
aacenc_ltp.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
aacenc_ltp.h
aacenc_pred.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
aacenc_pred.h
aacenc_quantization_misc.h
aacenc_quantization.h
aacenc_tns.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
aacenc_tns.h
aacenc_utils.h
aacenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
aacenc.h
aacenctab.c
aacenctab.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
aacps_common.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
aacps_fixed_tablegen.c
aacps_fixed_tablegen.h
aacps_fixed.c
aacps_float.c
aacps_tablegen_template.c
aacps_tablegen.c
aacps_tablegen.h
aacps.c
aacps.h
aacpsdata.c
aacpsdsp_fixed.c
aacpsdsp_float.c
aacpsdsp_template.c lavc/aacpsdsp: use restrict qualifier 2023-07-17 18:48:42 +03:00
aacpsdsp.h
aacpsy.c
aacsbr_fixed.c
aacsbr_template.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
aacsbr.c
aacsbr.h avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
aacsbrdata.h
aactab.c avcodec: Rename ff_kbd_window_init() as it will be needed from outside libavcodec 2023-07-22 16:18:39 +02:00
aactab.h
aandcttab.c
aandcttab.h
aasc.c
ac3_channel_layout_tab.c
ac3_channel_layout_tab.h
ac3_parser_internal.h
ac3_parser.c
ac3_parser.h
ac3.c
ac3.h
ac3dec_data.c
ac3dec_data.h
ac3dec_fixed.c
ac3dec_float.c
ac3dec.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
ac3dec.h
ac3defs.h
ac3dsp.c
ac3dsp.h
ac3enc_fixed.c avcodec: Rename ff_kbd_window_init() as it will be needed from outside libavcodec 2023-07-22 16:18:39 +02:00
ac3enc_float.c avcodec: Rename ff_kbd_window_init() as it will be needed from outside libavcodec 2023-07-22 16:18:39 +02:00
ac3enc_template.c
ac3enc.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
ac3enc.h
ac3tab.c
ac3tab.h
acelp_filters.c
acelp_filters.h
acelp_pitch_delay.c
acelp_pitch_delay.h
acelp_vectors.c
acelp_vectors.h
adpcm_data.c
adpcm_data.h
adpcm.c
adpcm.h
adpcmenc.c
adts_header.c
adts_header.h
adts_parser.c
adts_parser.h
adx_parser.c
adx.c
adx.h avcodec/adxdec: add support for 6 channels 2023-09-05 23:21:39 +02:00
adxdec.c avcodec/adxdec: add support for 6 channels 2023-09-05 23:21:39 +02:00
adxenc.c
agm.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
aic.c
alac_data.c
alac_data.h
alac.c avcodec/alac: use branchless sign 2023-08-15 19:09:23 +02:00
alacdsp.c
alacdsp.h
alacenc.c
aliaspixdec.c
aliaspixenc.c
allcodecs.c avcodec: add OSQ audio decoder 2023-09-01 14:26:47 +02:00
alsdec.c
amfenc_av1.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
amfenc_h264.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
amfenc_hevc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
amfenc.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
amfenc.h libavcodec/amfenc: add PreAnalysis support 2023-06-29 10:49:33 -03:00
amr_parser.c
amr.h
amrnbdata.h
amrnbdec.c
amrwbdata.h
amrwbdec.c
anm.c
ansi.c libavcodec/ansi: fix ECMA-48 SGR parameter 49 2023-07-12 08:38:51 +10:00
apac.c
apedec.c avcodec/apedec: Implement interim mode detection 2023-08-28 01:10:13 +02:00
apng.h
aptx.c
aptx.h
aptxdec.c
aptxenc.c
arbc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
argo.c
ass_split.c
ass_split.h
ass.c
ass.h
assdec.c
assenc.c
asv.c
asv.h
asvdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
asvenc.c avcodec/dct: Move fdct function declarations to fdctdsp.h 2023-07-29 04:16:59 +02:00
atrac1.c
atrac1data.h
atrac3.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
atrac3data.h
atrac3plus_data.h
atrac3plus.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
atrac3plus.h
atrac3plusdec.c
atrac3plusdsp.c
atrac9dec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
atrac9tab.h
atrac.c
atrac.h
atsc_a53.c
atsc_a53.h
audio_frame_queue.c
audio_frame_queue.h
audiodsp.c lavc/audiodsp: fix aliasing violation 2023-07-17 18:48:42 +03:00
audiodsp.h
audiotoolboxdec.c lavc/audiotoolbox: fix build failure on osx 10.5 (v3) 2023-07-15 19:57:47 -03:00
audiotoolboxenc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
aura.c
av1_frame_merge_bsf.c
av1_frame_split_bsf.c
av1_metadata_bsf.c
av1_parse.c
av1_parse.h
av1_parser.c
av1.h
av1dec.c avcodec/thread: Remove ff_thread_get_format define 2023-09-13 22:04:22 +02:00
av1dec.h avcodec/av1dec: convert to receive_frame() 2023-05-25 11:21:35 -03:00
avcodec_internal.h lavc: add generic-encode-layer private data 2023-07-07 12:07:23 +02:00
avcodec.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
avcodec.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
avcodecres.rc
avdct.c
avdct.h
avfft.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
avfft.h lavc/avfft: deprecate the API 2023-09-01 23:59:14 +02:00
avpacket.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
avrndec.c
avs2_parser.c
avs2.c
avs2.h
avs3_parser.c
avs3.h
avs.c
avuidec.c
avuienc.c
bethsoftvideo.c
bethsoftvideo.h
bfi.c
bgmc.c
bgmc.h
bink.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
binkaudio.c lavc/binkaudio: reset input packet on errors 2023-06-17 18:06:33 +02:00
binkdata.h
binkdsp.c
binkdsp.h
bintext.c
bintext.h
bit_depth_template.c simple_idct: Template functions to support an input bitdepth parameter 2018-04-02 13:06:19 +01:00
bitpacked_dec.c
bitpacked_enc.c
bitstream_filters.c avcodec: add MP4 to annexb bsf for H266/VVC 2023-06-29 14:12:50 -03:00
bitstream_template.h avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
bitstream.c
bitstream.h avcodec: add multi vlc reader 2023-09-07 00:23:30 +02:00
blockdsp.c
blockdsp.h
bmp_parser.c
bmp.c
bmp.h
bmpenc.c
bmvaudio.c
bmvvideo.c
bonk.c avcodec/bonk: Fix integer overflow in predictor_calc_error() 2023-09-14 22:00:17 +02:00
brenderpix.c
bsf_internal.h
bsf.c lavc/bsf: move IS_EMPTY() to packet_internal() 2023-07-07 12:07:24 +02:00
bsf.h
bswapdsp.c
bswapdsp.h
bytestream.h
c93.c
cabac_functions.h
cabac.c
cabac.h
canopus.c
canopus.h
cavs_parser.c
cavs.c
cavs.h
cavsdata.c
cavsdec.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
cavsdsp.c
cavsdsp.h
cbrt_data_fixed.c
cbrt_data.c
cbrt_data.h
cbrt_fixed_tablegen.c
cbrt_tablegen_template.c
cbrt_tablegen.c
cbrt_tablegen.h
cbs_av1_syntax_template.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
cbs_av1.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
cbs_av1.h cbs_av1: expose tile col/row starts in SBs 2023-05-29 00:41:59 +02:00
cbs_bsf.c
cbs_bsf.h
cbs_h264_syntax_template.c
cbs_h264.h
cbs_h265_syntax_template.c
cbs_h265.h
cbs_h266_syntax_template.c cbs_h266: slice_header, fix inference for pred_weight_table 2023-08-17 10:05:24 -03:00
cbs_h266.h cbs_h266: H266RawSliceHeader, expose NumRefIdxActive[] 2023-08-17 10:05:24 -03:00
cbs_h2645.c avcodec/cbs: Add specialization for ff_cbs_(read|write)_unsigned() 2023-07-30 21:36:31 +02:00
cbs_h2645.h
cbs_internal.h avcodec/cbs: Add specialization for ff_cbs_(read|write)_unsigned() 2023-07-30 21:36:31 +02:00
cbs_jpeg_syntax_template.c
cbs_jpeg.c
cbs_jpeg.h
cbs_mpeg2_syntax_template.c
cbs_mpeg2.c avcodec/cbs: Add specialization for ff_cbs_(read|write)_unsigned() 2023-07-30 21:36:31 +02:00
cbs_mpeg2.h
cbs_sei_syntax_template.c
cbs_sei.c avcodec/cbs: add cbs implementation for H266/VVC 2023-06-29 14:12:50 -03:00
cbs_sei.h
cbs_vp9_syntax_template.c
cbs_vp9.c avcodec/cbs: Add specialization for ff_cbs_(read|write)_unsigned() 2023-07-30 21:36:31 +02:00
cbs_vp9.h
cbs.c avcodec/cbs: Add specialization for ff_cbs_(read|write)_unsigned() 2023-07-30 21:36:31 +02:00
cbs.h avcodec/cbs: add API to discard units by AVDiscard 2023-06-19 11:52:18 +08:00
ccaption_dec.c
cdgraphics.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
cdtoons.c
cdxl.c
celp_filters.c
celp_filters.h
celp_math.c
celp_math.h
cfhd.c
cfhd.h
cfhddata.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
cfhddsp.c
cfhddsp.h
cfhdenc.c
cfhdencdsp.c
cfhdencdsp.h
cga_data.c
cga_data.h
chomp_bsf.c
cinepak.c
cinepakenc.c
clearvideo.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
clearvideodata.h
cljrdec.c
cljrenc.c
cllc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
cngdec.c
cngenc.c
codec2utils.h
codec_desc.c avcodec: add OSQ audio decoder 2023-09-01 14:26:47 +02:00
codec_desc.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
codec_id.h avcodec: add OSQ audio decoder 2023-09-01 14:26:47 +02:00
codec_internal.h
codec_par.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
codec_par.h
codec.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
cook_parser.c
cook.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
cookdata.h
copy_block.h
cos_tablegen.c
cpia.c
cri_parser.c
cri.c
crystalhd.c
cscd.c avcodec/cscd: Fix "CamStudio Lossless Codec 1.0" gzip files 2023-09-10 16:40:49 +02:00
cuviddec.c avcodec/cuviddec: dynamically set max decode surfaces 2023-08-13 19:13:01 +02:00
cyuv.c
d3d11va.c
d3d11va.h
dca_core_bsf.c
dca_core.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dca_core.h
dca_exss.c
dca_exss.h
dca_lbr.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dca_lbr.h
dca_parser.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dca_sample_rate_tab.c
dca_sample_rate_tab.h
dca_syncwords.h
dca_xll.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dca_xll.h
dca.c
dca.h
dcaadpcm.c
dcaadpcm.h
dcadata.c
dcadata.h
dcadct.c
dcadct.h
dcadec.c
dcadec.h
dcadsp.c
dcadsp.h
dcaenc.c
dcaenc.h
dcahuff.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
dcahuff.h
dcamath.h
dct32_fixed.c Merge remote-tracking branch 'qatar/master' 2013-11-21 19:26:01 +01:00
dct32_float.c
dct32_template.c
dct32.h
dct.c
dct.h avcodec/dct: Move fdct function declarations to fdctdsp.h 2023-07-29 04:16:59 +02:00
dctref.c
dctref.h
dds.c
decode.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
decode.h avcodec/decode: Extend ff_hwaccel_frame_priv_alloc()'s task 2023-08-07 09:50:29 +02:00
defs.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dfa.c
dfpwmdec.c
dfpwmenc.c
dirac_arith.c
dirac_arith.h
dirac_dwt_template.c
dirac_dwt.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
dirac_dwt.h
dirac_parser.c
dirac_vlc.c
dirac_vlc.h
dirac.c avcodec/dirac: Include used headers directly 2023-08-05 09:40:06 +02:00
dirac.h avcodec/dirac: Include used headers directly 2023-08-05 09:40:06 +02:00
diracdec.c
diracdsp.c
diracdsp.h
diractab.c
diractab.h
dnxhd_parser.c
dnxhddata.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dnxhddata.h
dnxhddec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
dnxhdenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dnxhdenc.h
dolby_e_parse.c
dolby_e_parser.c
dolby_e.c avcodec: Rename ff_kbd_window_init() as it will be needed from outside libavcodec 2023-07-22 16:18:39 +02:00
dolby_e.h
dovi_rpu.c
dovi_rpu.h
dpcm.c
dpx_parser.c
dpx.c
dpxenc.c
dsd.c
dsd.h
dsddec.c
dsicinaudio.c
dsicinvideo.c
dss_sp.c
dstdec.c
dts2pts_bsf.c
dump_extradata_bsf.c
dv_error_marker_bsf.c
dv_internal.h
dv_profile_internal.h
dv_profile.c
dv_profile.h
dv_tablegen.c
dv_tablegen.h
dv.c
dv.h
dvaudio_parser.c
dvaudio.h
dvaudiodec.c
dvbsub_parser.c
dvbsubdec.c
dvbsubenc.c
dvbtxt.h
dvd_nav_parser.c
dvdata.c
dvdata.h
dvdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
dvdsub_parser.c
dvdsub.c
dvdsub.h
dvdsubdec.c
dvdsubenc.c
dvenc.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
dxa.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
dxtory.c
dxv.c
dxva2_av1.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
dxva2_h264.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
dxva2_hevc.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
dxva2_internal.h
dxva2_mpeg2.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
dxva2_vc1.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
dxva2_vp9.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
dxva2.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
dxva2.h
dynamic_hdr_vivid.c
dynamic_hdr_vivid.h
eac3_core_bsf.c
eac3_data.c
eac3_data.h
eac3dec.c
eac3enc.c
eac3enc.h
eacmv.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
eaidct.c
eaidct.h
eamad.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
eatgq.c
eatgv.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
eatqi.c
elbg.c
elbg.h
elsdec.c
elsdec.h
encode.c avcodec/utils: move ff_add_cpb_side_data() to encoder code 2023-09-06 10:27:45 -03:00
encode.h avcodec/utils: move ff_add_cpb_side_data() to encoder code 2023-09-06 10:27:45 -03:00
error_resilience.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
error_resilience.h avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
escape124.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
escape130.c
evc_frame_merge_bsf.c avcodec/evc*: Improve included headers 2023-07-24 10:37:07 +02:00
evc_parse.c avcodec/evc*: Improve included headers 2023-07-24 10:37:07 +02:00
evc_parse.h avcodec/evc*: Improve included headers 2023-07-24 10:37:07 +02:00
evc_parser.c avcodec/evc*: Improve included headers 2023-07-24 10:37:07 +02:00
evc_ps.c avcodec/evc_ps: Check num_ref_pic_list_in_sps 2023-07-28 02:12:12 +02:00
evc_ps.h avcodec/evc_ps: Fix size of tile_(row|column) arrays 2023-07-16 17:06:50 +02:00
evc.h avcodec/evc_ps: Check num_ref_pic_list_in_sps 2023-07-28 02:12:12 +02:00
evrcdata.h
evrcdec.c
exif.c
exif.h
exr.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
exrdsp.c
exrdsp.h
exrenc.c
extract_extradata_bsf.c avcodec/extract_extradata: add support for H266/VVC 2023-06-29 14:12:50 -03:00
faandct.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
faandct.h
faanidct.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
faanidct.h
fastaudio.c
faxcompr.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
faxcompr.h
fdctdsp.c avcodec/dct: Move fdct function declarations to fdctdsp.h 2023-07-29 04:16:59 +02:00
fdctdsp.h avcodec/fdctdsp: Mark functions as hidden 2023-07-29 04:22:01 +02:00
ffjni.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
ffjni.h
fflcms2.c
fflcms2.h
fft_fixed_32.c
fft_float.c
fft_init_table.c
fft_table.h
fft_template.c
fft-internal.h
fft.h
ffv1_template.c
ffv1.c
ffv1.h
ffv1dec_template.c
ffv1dec.c
ffv1enc_template.c
ffv1enc.c
ffwavesynth.c
fic.c
file_open.c
filter_units_bsf.c avcodec/filter_units_bsf: reindent after previous commit 2023-06-19 11:52:18 +08:00
fits.c
fits.h
fitsdec.c
fitsenc.c
flac_parse.h
flac_parser.c
flac.c
flac.h
flacdata.c
flacdata.h
flacdec.c
flacdsp_lpc_template.c
flacdsp_template.c
flacdsp.c
flacdsp.h
flacenc.c
flacencdsp.c
flacencdsp.h
flashsv2enc.c
flashsv.c
flashsvenc.c
flicvideo.c avcodec/flicvideo: Remove unnecessary cast 2023-09-11 20:27:26 +02:00
float2half.c
flvdec.c
flvdec.h
flvenc.c
flvenc.h
fmtconvert.c
fmtconvert.h
fmvc.c
frame_thread_encoder.c
frame_thread_encoder.h
fraps.c avcodec/fraps: remove extra new lines and not needed cast 2023-09-11 22:04:28 +02:00
frwu.c
ftr_parser.c
ftr.c
g2meet.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
g722.c
g722.h
g722dec.c
g722dsp.c lavc/g722dsp: add RISC-V V DSP function 2023-08-24 21:07:18 +03:00
g722dsp.h lavc/g722dsp: add RISC-V V DSP function 2023-08-24 21:07:18 +03:00
g722enc.c
g723_1_parser.c
g723_1.c
g723_1.h
g723_1dec.c
g723_1enc.c
g726.c
g729_parser.c
g729.h
g729data.h
g729dec.c
g729postfilter.c
g729postfilter.h
gdv.c
gemdec.c
get_bits.h avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
get_buffer.c
gif_parser.c
gif.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
gif.h
gifdec.c lavc/gifdec: unify get_buffer() calls I/P frames 2023-07-15 11:35:59 +02:00
golomb.c
golomb.h
gsm_parser.c
gsm.h
gsmdec_data.c
gsmdec_data.h
gsmdec_template.c
gsmdec.c
h261_parser.c
h261.c
h261.h
h261data.c
h261dec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
h261enc.c
h261enc.h
h263_parser.c
h263.c
h263.h
h263data.c
h263data.h
h263dec.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
h263dec.h
h263dsp.c
h263dsp.h
h263enc.h
h264_cabac.c
h264_cavlc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
h264_direct.c
h264_levels.c
h264_levels.h
h264_loopfilter.c
h264_mb_template.c
h264_mb.c avcodec/h264dec: Move inline functions only used by CABAC/CAVLC code 2023-08-05 09:40:06 +02:00
h264_mc_template.c
h264_metadata_bsf.c avcodec/h264_metadata_bsf: Improve included headers 2023-08-05 09:40:06 +02:00
h264_mp4toannexb_bsf.c
h264_mvpred.h avcodec/h264dec: Move inline functions only used by CABAC/CAVLC code 2023-08-05 09:40:06 +02:00
h264_parse.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
h264_parse.h
h264_parser.c
h264_picture.c avcodec/h264dec: Fix data race when updating decode_error_flags 2023-09-15 13:08:37 +02:00
h264_ps.c h264_ps: expose scaling_matrix_present_mask 2023-05-29 00:41:30 +02:00
h264_ps.h h264_ps: expose scaling_matrix_present_mask 2023-05-29 00:41:30 +02:00
h264_redundant_pps_bsf.c
h264_refs.c
h264_sei.c
h264_sei.h
h264_slice.c avcodec/h264dec: Fix data race when updating decode_error_flags 2023-09-15 13:08:37 +02:00
h264.h
h264addpx_template.c
h264chroma_template.c
h264chroma.c lavc/h264chroma: RISC-V V add motion compensation for 8x8 chroma blocks 2023-05-30 17:15:05 +02:00
h264chroma.h lavc/h264chroma: RISC-V V add motion compensation for 8x8 chroma blocks 2023-05-30 17:15:05 +02:00
h264data.c
h264data.h
h264dec.c avcodec/h264dec: Fix data race when updating decode_error_flags 2023-09-15 13:08:37 +02:00
h264dec.h avcodec/h264dec: Fix data race when updating decode_error_flags 2023-09-15 13:08:37 +02:00
h264dsp_template.c
h264dsp.c
h264dsp.h
h264idct_template.c
h264idct.c
h264idct.h
h264pred_template.c
h264pred.c
h264pred.h
h264qpel_template.c
h264qpel.c
h264qpel.h
h265_metadata_bsf.c
h265_profile_level.c
h265_profile_level.h
h266_metadata_bsf.c avcodec/h266_metadata_bsf: Check if there are CodedBitstreamFragment units 2023-07-25 23:17:28 +02:00
h274.c
h274.h
h2645_parse.c avcodec/h2645_parse: add support for H266/VVC 2023-06-29 14:12:29 -03:00
h2645_parse.h
h2645_sei.c avcodec: move content light level SEI handling to h2645_sei 2023-07-27 21:45:43 +03:00
h2645_sei.h avcodec: move content light level SEI handling to h2645_sei 2023-07-27 21:45:43 +03:00
h2645_vui.c h2645_vui: expose aspect_ratio_info_present_flag 2023-05-29 00:41:28 +02:00
h2645_vui.h h2645_vui: expose aspect_ratio_info_present_flag 2023-05-29 00:41:28 +02:00
h2645data.c
h2645data.h
half2float.c
hap.c
hap.h
hapdec.c
hapenc.c
hapqa_extract_bsf.c
hca_data.h
hcadec.c avcodec/hcadec: small refactoring 2023-09-09 12:09:30 +02:00
hcom.c
hdr_parser.c
hdrdec.c
hdrenc.c
hevc_cabac.c
hevc_data.c
hevc_data.h
hevc_filter.c
hevc_mp4toannexb_bsf.c
hevc_mvs.c
hevc_parse.c avcodec/hevc_parse: check the size of hvcC is at least 23 2023-07-04 04:49:48 +08:00
hevc_parse.h
hevc_parser.c
hevc_ps_enc.c
hevc_ps.c hevc_ps: fix fixed_rate check 2023-09-10 20:05:07 +01:00
hevc_ps.h hevc_ps: expose sps_extension_present_flag 2023-05-29 00:41:35 +02:00
hevc_refs.c avcodec/decode: Extend ff_hwaccel_frame_priv_alloc()'s task 2023-08-07 09:50:29 +02:00
hevc_sei.c avcodec: move content light level SEI handling to h2645_sei 2023-07-27 21:45:43 +03:00
hevc_sei.h avcodec: move content light level SEI handling to h2645_sei 2023-07-27 21:45:43 +03:00
hevc.h
hevcdec.c avcodec/thread: Remove ff_thread_get_format define 2023-09-13 22:04:22 +02:00
hevcdec.h hevcdec: remove redundant bits_used_for_short_term_rps field 2023-06-07 23:59:12 +02:00
hevcdsp_template.c
hevcdsp.c
hevcdsp.h
hevcpred_template.c
hevcpred.c
hevcpred.h
hnm4video.c
hpel_template.c
hpeldsp.c
hpeldsp.h
hq_hqa.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
hq_hqa.h
hq_hqadata.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
hq_hqadsp.c
hq_hqadsp.h
hqx.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
hqx.h
hqxdsp.c
hqxdsp.h
hqxvlc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
htmlsubtitles.c
htmlsubtitles.h
huffman.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
huffman.h
huffyuv.c
huffyuv.h
huffyuvdec.c avcodec/huffyuvdec: avoid undefined behavior with get_vlc2() failure 2023-09-14 22:00:17 +02:00
huffyuvdsp.c
huffyuvdsp.h
huffyuvenc.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
huffyuvencdsp.c
huffyuvencdsp.h
hwaccel_internal.h avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
hwaccels.h avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
hwconfig.h avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
idcinvideo.c
idctdsp.c
idctdsp.h avcodec/idctdsp: Avoid inclusion of avcodec.h 2023-09-11 00:26:34 +02:00
iff.c
iirfilter.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
iirfilter.h
ilbcdata.h
ilbcdec.c
imc.c avcodec/imc: Fix leak on init error 2023-09-11 20:27:06 +02:00
imcdata.h
imgconvert.c
imm4.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
imm5.c
imx_dump_header_bsf.c
imx.c
indeo2.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
indeo2data.h
indeo3.c
indeo3data.h
indeo4.c
indeo4data.h
indeo5.c
indeo5data.h
intelh263dec.c
internal.h avcodec/utils: move ff_add_cpb_side_data() to encoder code 2023-09-06 10:27:45 -03:00
interplayacm.c
interplayvideo.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
intrax8.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
intrax8.h
intrax8dsp.c
intrax8dsp.h
intrax8huf.h
ipu_parser.c
ituh263dec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
ituh263enc.c
ivi_dsp.c
ivi_dsp.h
ivi.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
ivi.h
j2kenc.c avcodec/j2kenc: use uint64_t type for the lambda value 2023-06-24 14:39:04 -03:00
jacosub.h
jacosubdec.c
jfdctfst.c avcodec/dct: Move fdct function declarations to fdctdsp.h 2023-07-29 04:16:59 +02:00
jfdctint_template.c avcodec/dct: Move fdct function declarations to fdctdsp.h 2023-07-29 04:16:59 +02:00
jfdctint.c
jni.c
jni.h
jpeg2000_parser.c
jpeg2000.c
jpeg2000.h
jpeg2000dec.c avcodec/jpeg2000dec: jpeg2000 has its own lowres option 2023-09-14 22:00:17 +02:00
jpeg2000dec.h
jpeg2000dsp.c
jpeg2000dsp.h
jpeg2000dwt.c
jpeg2000dwt.h
jpeg2000htdec.c avcodec/jpeg2000htdec: Consolidate jpeg2000 spec bits in jpeg2000_bitbuf_refill_backwards() 2023-08-05 19:52:00 +02:00
jpeg2000htdec.h
jpegls.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
jpegls.h
jpeglsdec.c
jpeglsdec.h
jpeglsenc.c
jpegquanttables.c
jpegquanttables.h
jpegtables.c
jpegtables.h
jpegtabs.h
jpegxl_parse.c avcodec/jpegxl_parser: add JPEG XL parser 2023-08-27 01:36:08 -04:00
jpegxl_parse.h avcodec/jpegxl_parser: add JPEG XL parser 2023-08-27 01:36:08 -04:00
jpegxl_parser.c avcodec/jpegxl_parser: Check for ctx->skip overflow 2023-09-14 22:00:17 +02:00
jpegxl.h avcodec/jpegxl_parser: add JPEG XL parser 2023-08-27 01:36:08 -04:00
jrevdct.c
jvdec.c
kbdwin.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
kbdwin.h avcodec: Rename ff_kbd_window_init() as it will be needed from outside libavcodec 2023-07-22 16:18:39 +02:00
kgv1dec.c
kmvc.c
lagarith.c
lagarithrac.c
lagarithrac.h
latm_parser.c
lcl.h
lcldec.c
lclenc.c
libaom.c
libaom.h
libaomdec.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libaomenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libaribb24.c avcodec/libaribb24: Use FF_CODEC_CAP_INIT_CLEANUP 2023-09-14 12:32:02 +02:00
libaribcaption.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libavcodec.v
libcelt_dec.c
libcodec2.c
libdav1d.c avcodec/libdav1d: remove FF_CODEC_CAP_SETS_PKT_DTS flag 2023-07-11 14:26:43 -03:00
libdavs2.c
libfdk-aacdec.c
libfdk-aacenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libgsmdec.c
libgsmenc.c
libilbc.c
libjxl.c
libjxl.h
libjxldec.c avcodec/libjxldec: use internal AVFrame as buffered space 2023-08-27 01:36:03 -04:00
libjxlenc.c
libkvazaar.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
libmp3lame.c
libopencore-amr.c
libopenh264.c
libopenh264.h
libopenh264dec.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
libopenh264enc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libopenjpegenc.c
libopus.c
libopus.h
libopusdec.c
libopusenc.c
librav1e.c
librsvgdec.c
libshine.c
libspeexdec.c
libspeexenc.c
libsvtav1.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libtheoraenc.c
libtwolame.c
libuavs3d.c
libvo-amrwbenc.c
libvorbisdec.c
libvorbisenc.c
libvpx.h
libvpxdec.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
libvpxenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libwebpenc_animencoder.c
libwebpenc_common.c
libwebpenc_common.h
libwebpenc.c
libx264.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
libx265.c avcodec/utils: move ff_add_cpb_side_data() to encoder code 2023-09-06 10:27:45 -03:00
libxavs2.c
libxavs.c
libxvid.c
libzvbi-teletextdec.c
ljpegenc.c
loco.c
log2_tab.c
lossless_audiodsp.c
lossless_audiodsp.h
lossless_videodsp.c
lossless_videodsp.h
lossless_videoencdsp.c
lossless_videoencdsp.h
lpc.c
lpc.h
lscrdec.c
lsp.c
lsp.h
lzf.c
lzf.h
lzw.c
lzw.h
lzwenc.c
m101.c
mace.c
magicyuv.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
magicyuvenc.c avcodec/magicyuvenc: add support for encoding raw slice 2023-09-10 17:56:04 +02:00
Makefile avcodec/rv34_parser: Merge RV30 and RV40 parsers 2023-09-07 00:27:52 +02:00
mathops.h
mathtables.c
mdct_fixed_32.c
mdct_float.c
mdct_template.c
mdec.c
me_cmp.c
me_cmp.h
media100_to_mjpegb_bsf.c
mediacodec_surface.c
mediacodec_surface.h
mediacodec_sw_buffer.c
mediacodec_sw_buffer.h
mediacodec_wrapper.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
mediacodec_wrapper.h
mediacodec.c
mediacodec.h
mediacodecdec_common.c
mediacodecdec_common.h
mediacodecdec.c avcodec/mediacodecdec: remove FF_CODEC_CAP_SETS_PKT_DTS flag 2023-07-11 14:26:43 -03:00
mediacodecenc.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
metasound_data.h
metasound_twinvq_data.h
metasound.c
mf_utils.c
mf_utils.h
mfenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
microdvddec.c
midivid.c
mimic.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
misc4_parser.c
misc4.c
mjpeg2jpeg_bsf.c
mjpeg_parser.c
mjpeg.h
mjpega_dump_header_bsf.c
mjpegbdec.c
mjpegdec_common.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mjpegdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mjpegdec.h
mjpegenc_common.c
mjpegenc_common.h
mjpegenc_huffman.c
mjpegenc_huffman.h
mjpegenc.c
mjpegenc.h
mlp_parse.c
mlp_parse.h
mlp_parser.c
mlp.c
mlp.h
mlpdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mlpdsp.c
mlpdsp.h
mlpenc.c
mlz.c
mlz.h
mmaldec.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
mmvideo.c
mobiclip.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
motion_est_template.c
motion_est.c
motion_est.h
motionpixels_tablegen.c
motionpixels_tablegen.h
motionpixels.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
movsub_bsf.c
movtextdec.c
movtextenc.c
mp3_header_decompress_bsf.c
mpc7.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mpc7data.h
mpc8.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mpc8data.h
mpc8huff.h
mpc.c avutil/mem: Don't include avutil.h 2023-09-07 00:42:10 +02:00
mpc.h
mpcdata.h
mpeg2_metadata_bsf.c
mpeg4_unpack_bframes_bsf.c
mpeg4audio_copy_pce.h
mpeg4audio_sample_rates.c
mpeg4audio_sample_rates.h
mpeg4audio.c
mpeg4audio.h
mpeg4data.h
mpeg4video_parser.c
mpeg4video.c
mpeg4video.h
mpeg4videodata.h
mpeg4videodec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mpeg4videodec.h
mpeg4videodefs.h
mpeg4videodsp.c
mpeg4videodsp.h
mpeg4videoenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
mpeg4videoenc.h
mpeg12.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mpeg12.h
mpeg12codecs.h
mpeg12data.c
mpeg12data.h
mpeg12dec.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
mpeg12dec.h
mpeg12enc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
mpeg12enc.h
mpeg12framerate.c
mpeg12vlc.h
mpeg_er.c
mpeg_er.h
mpegaudio_parser.c
mpegaudio_tablegen.c
mpegaudio_tablegen.h
mpegaudio.c
mpegaudio.h
mpegaudiodata.c
mpegaudiodata.h
mpegaudiodec_common_tablegen.c
mpegaudiodec_common_tablegen.h
mpegaudiodec_common.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mpegaudiodec_fixed.c
mpegaudiodec_float.c
mpegaudiodec_template.c
mpegaudiodecheader.c
mpegaudiodecheader.h
mpegaudiodsp_data.c
mpegaudiodsp_fixed.c
mpegaudiodsp_float.c
mpegaudiodsp_template.c
mpegaudiodsp.c
mpegaudiodsp.h
mpegaudioenc_fixed.c
mpegaudioenc_float.c
mpegaudioenc_template.c
mpegaudiotab.h
mpegaudiotabs.c
mpegaudiotabs.h
mpegpicture.c avcodec/decode: Extend ff_hwaccel_frame_priv_alloc()'s task 2023-08-07 09:50:29 +02:00
mpegpicture.h
mpegutils.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
mpegutils.h
mpegvideo_dec.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
mpegvideo_enc.c avcodec/utils: move ff_add_cpb_side_data() to encoder code 2023-09-06 10:27:45 -03:00
mpegvideo_motion.c
mpegvideo_parser.c avcodec/mpeg12dec: stop propagating AVCPBProperties side data 2023-09-06 10:27:45 -03:00
mpegvideo.c
mpegvideo.h
mpegvideodata.c
mpegvideodata.h
mpegvideodec.h
mpegvideoenc.h
mpegvideoencdsp.c
mpegvideoencdsp.h
mpl2dec.c
mpv_reconstruct_mb_template.c
mqc.c
mqc.h
mqcdec.c
mqcenc.c
mscc.c
msgsmdec.c
msgsmdec.h
msmpeg4_vc1_data.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
msmpeg4_vc1_data.h
msmpeg4.c
msmpeg4.h
msmpeg4data.c
msmpeg4data.h
msmpeg4dec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
msmpeg4dec.h
msmpeg4enc.c avcodec: fix misleading indentation warnings after ticks_per_frame deprecation 2023-07-27 21:24:23 +02:00
msmpeg4enc.h
msp2dec.c
msrle.c
msrledec.c
msrledec.h
msrleenc.c avcodec/msrleenc: Constify pointers for frame->data 2023-07-17 16:23:26 +02:00
mss1.c
mss2.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
mss2dsp.c
mss2dsp.h
mss3.c
mss4.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mss12.c
mss12.h
mss34dsp.c
mss34dsp.h
msvideo1.c
msvideo1enc.c
mv30.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mvcdec.c
mvha.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
mwsc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
mxpegdec.c
nellymoser.c
nellymoser.h
nellymoserdec.c
nellymoserenc.c
noise_bsf.c avcodec/noise_bsf: Check for wrapped frames 2023-06-06 21:38:02 +02:00
notchlc.c
null_bsf.c
null.c
nuv.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
nvdec_av1.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_h264.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_hevc.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_mjpeg.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_mpeg4.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_mpeg12.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_vc1.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_vp8.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec_vp9.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
nvdec.c
nvdec.h
nvenc_av1.c avcodec/nvenc: let preset decide default gop size 2023-06-22 19:33:09 +02:00
nvenc_h264.c avcodec/nvenc: add option to limit slice size 2023-08-22 23:46:11 +02:00
nvenc_hevc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
nvenc.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
nvenc.h avcodec/nvenc: add option to limit slice size 2023-08-22 23:46:11 +02:00
omx.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
on2avc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
on2avcdata.c
on2avcdata.h
options_table.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
options.c
opus_celt.c
opus_celt.h
opus_metadata_bsf.c
opus_parse.c
opus_parse.h
opus_parser.c
opus_pvq.c
opus_pvq.h
opus_rc.c
opus_rc.h
opus_silk.c
opus_silk.h
opus.h
opusdec_celt.c
opusdec.c
opusdsp.c
opusdsp.h
opusenc_psy.c
opusenc_psy.h
opusenc_utils.h
opusenc.c
opusenc.h
opustab.c
opustab.h
osq.c avcodec/osq: fix 20bit decoding and remove invalid modes 2023-09-05 00:10:53 +02:00
packet_internal.h lavc/bsf: move IS_EMPTY() to packet_internal() 2023-07-07 12:07:24 +02:00
packet.h
paf.h
pafaudio.c
pafvideo.c
pamenc.c
parser.c
parser.h
parsers.c avcodec/rv34_parser: Merge RV30 and RV40 parsers 2023-09-07 00:27:52 +02:00
pcm_rechunk_bsf.c
pcm_tablegen.c
pcm_tablegen.h
pcm-bluray.c
pcm-blurayenc.c
pcm-dvd.c
pcm-dvdenc.c
pcm.c avcodec/pcm: Remove unnecessary emms_c() 2023-09-04 11:04:45 +02:00
pcx.c
pcxenc.c
pdvdec.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
pel_template.c
pgs_frame_merge_bsf.c
pgssubdec.c
pgxdec.c
photocd.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
pictordec.c
pixblockdsp.c
pixblockdsp.h
pixels.h
pixlet.c
png_parser.c
png.c
png.h
pngdec.c
pngdsp.c
pngdsp.h
pngenc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
pnm_parser.c
pnm.c
pnm.h
pnmdec.c
pnmenc.c
profiles.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
profiles.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
prores_metadata_bsf.c
proresdata.c
proresdata.h
proresdec2.c avcodec/thread: Remove ff_thread_get_format define 2023-09-13 22:04:22 +02:00
proresdec.h avcodec/proresdec: Include required headers directly 2023-09-11 00:26:34 +02:00
proresdsp.c avcodec/proresdsp: Pass necessary parameter directly 2023-09-11 00:26:34 +02:00
proresdsp.h avcodec/proresdsp: Pass necessary parameter directly 2023-09-11 00:26:34 +02:00
proresenc_anatoliy.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
proresenc_kostya.c avcodec/proresenc_kostya: set avctx->profile from ctx 2023-06-08 00:48:21 +02:00
prosumer.c
psd.c
psymodel.c
psymodel.h
pthread_frame.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
pthread_internal.h
pthread_slice.c
pthread.c
ptx.c
put_bits.h
put_golomb.h
qcelpdata.h
qcelpdec.c
qdm2_tablegen.c
qdm2_tablegen.h avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
qdm2.c
qdm2data.h
qdmc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
qdrw.c
qoi_parser.c
qoi.h
qoidec.c
qoienc.c
qpeg.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
qpel_template.c
qpeldsp.c
qpeldsp.h
qsv_api.c
qsv_internal.h
qsv.c lavc/qsv: fallback to the default mfx implementation for internal session on Windows 2023-05-25 09:04:13 +08:00
qsv.h
qsvdec.c
qsvenc_av1.c
qsvenc_h264.c
qsvenc_hevc.c lavc/qsvenc_hevc: restore the default gop size 2023-08-17 12:06:09 +08:00
qsvenc_jpeg.c
qsvenc_mpeg2.c
qsvenc_vp9.c
qsvenc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
qsvenc.h
qtrle.c
qtrleenc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
r210dec.c
r210enc.c
ra144.c
ra144.h
ra144dec.c
ra144enc.c
ra288.c
ra288.h
ralf.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
ralfdata.h
rangecoder.c
rangecoder.h
rasc.c
ratecontrol.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
ratecontrol.h
raw.c
raw.h
rawdec.c
rawenc.c
rdft.c
rdft.h
realtextdec.c
rectangle.h
remove_extradata_bsf.c
reverse.c
rka.c avcodec/rka: do not output extra invalid samples in last frame 2023-08-30 23:07:34 +02:00
rkmppdec.c
rl2.c
rl.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
rl.h avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
rle.c
rle.h
rnd_avg.h
roqaudioenc.c
roqvideo.c
roqvideo.h
roqvideodec.c
roqvideoenc.c
rpza.c
rpzaenc.c avcodec/rpzaenc: replace float-point calculations with integer ones 2023-09-07 20:58:08 +02:00
rscc.c
rtjpeg.c avcodec/idctdsp: Avoid inclusion of avcodec.h 2023-09-11 00:26:34 +02:00
rtjpeg.h avcodec/idctdsp: Avoid inclusion of avcodec.h 2023-09-11 00:26:34 +02:00
rtv1.c avcodec: add RTV1 decoder 2023-06-07 09:00:18 +02:00
rv10.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
rv10dec.h
rv10enc.c
rv10enc.h
rv20enc.c
rv30.c
rv30data.h
rv30dsp.c
rv34_parser.c avcodec/rv34_parser: Remove unused ParseContext 2023-09-07 00:28:01 +02:00
rv34.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
rv34.h
rv34data.h
rv34dsp.c
rv34dsp.h
rv34vlc.h
rv40.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
rv40data.h
rv40dsp.c
rv40vlc2.h
s302m.c
s302menc.c
samidec.c
sanm.c
sbc_parser.c
sbc.c
sbc.h
sbcdec_data.c
sbcdec_data.h
sbcdec.c
sbcdsp_data.c
sbcdsp_data.h
sbcdsp.c
sbcdsp.h
sbcenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
sbr.h
sbrdsp_fixed.c
sbrdsp_template.c
sbrdsp.c
sbrdsp.h
scpr3.c
scpr3.h
scpr.c
scpr.h
screenpresso.c
sei.h
setts_bsf.c
sga.c avcodec/sga: Don't use GetBit-API for byte-aligned reads 2023-08-02 18:31:59 +02:00
sgi.h
sgidec.c
sgienc.c
sgirledec.c
sheervideo.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
sheervideodata.h
shorten.c avcodec/shorten: use uint16_t for wave_format 2023-09-11 01:14:49 +02:00
simple_idct_template.c
simple_idct.c
simple_idct.h
sinewin_fixed_tablegen.c
sinewin_fixed_tablegen.h
sinewin_tablegen.c
sinewin_tablegen.h
sinewin.c
sinewin.h
sipr16k.c
sipr16kdata.h
sipr_parser.c
sipr.c
sipr.h
siprdata.h
siren.c
smacker.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
smc.c
smcenc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
snappy.c
snappy.h
snow_dwt.c
snow_dwt.h
snow.c
snow.h
snowdata.h
snowdec.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
snowenc.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
sonic.c
sp5x.h
sp5xdec.c
speedhq.c
speedhq.h
speedhqdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
speedhqenc.c
speedhqenc.h
speexdata.h
speexdec.c
srtdec.c
srtenc.c
startcode.c
startcode.h
subviewerdec.c
sunrast.c
sunrast.h
sunrastenc.c
svq1_cb.h
svq1_vlc.h
svq1.c
svq1.h
svq1dec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
svq1enc_cb.h
svq1enc.c avutil/internal: Don't auto-include emms.h 2023-09-04 11:04:45 +02:00
svq1encdsp.h
svq3.c
synth_filter.c
synth_filter.h
tableprint_vlc.h
tableprint.h
tak_parser.c
tak.c avcodec/tak: Use void* instead of AVCodecContext* for logcontext 2023-08-05 09:40:06 +02:00
tak.h avcodec/tak: Use void* instead of AVCodecContext* for logcontext 2023-08-05 09:40:06 +02:00
takdec.c
takdsp.c avcodec/takdsp: Fix integer overflows 2023-06-18 14:29:12 +02:00
takdsp.h
targa_y216dec.c
targa.c
targa.h
targaenc.c
tdsc.c
textdec.c
texturedsp_template.c
texturedsp.c
texturedsp.h
texturedspenc.c
thread.h avcodec/thread: Remove ff_thread_get_format define 2023-09-13 22:04:22 +02:00
threadframe.h
tiertexseqv.c
tiff_common.c
tiff_common.h
tiff_data.h
tiff.c avcodec/tiff: Don't cast const away 2023-09-07 20:58:00 +02:00
tiff.h
tiffenc.c
tmv.c
to_upper4.c
to_upper4.h
tpeldsp.c
tpeldsp.h
trace_headers_bsf.c
truehd_core_bsf.c
truemotion1.c
truemotion1data.h
truemotion2.c avcodec/truemotion2: Don't check before freeing VLC 2023-09-11 00:28:04 +02:00
truemotion2rt.c
truespeech_data.h
truespeech.c
tscc2.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
tscc2data.h
tscc.c
tta.c avcodec/tta: fix signed overflow in decorrelate 2023-09-04 21:45:51 +02:00
ttadata.c avcodec/tta: fix minor code style issues 2023-08-16 21:36:40 +02:00
ttadata.h
ttadsp.c avcodec/tta: fix minor code style issues 2023-08-16 21:36:40 +02:00
ttadsp.h
ttaenc.c
ttaencdsp.c
ttaencdsp.h
ttmlenc.c avcodec/libaribb24,ttmlenc, avutil/tx: Remove redundant init of AVBPrint 2023-09-14 12:32:02 +02:00
ttmlenc.h
twinvq_data.h
twinvq.c
twinvq.h
twinvqdec.c
txd.c
ulti_cb.h
ulti.c
unary.h
utils.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
utvideo.h avcodec/utvideodec: add vlc multi support 2023-09-07 00:23:30 +02:00
utvideodec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
utvideodsp.c
utvideodsp.h
utvideoenc.c
v4l2_buffers.c
v4l2_buffers.h
v4l2_context.c avcodec/v4l2_context: suppress POLLERR and fix crash when buffers are uninitialized 2023-07-27 21:23:39 +02:00
v4l2_context.h
v4l2_fmt.c
v4l2_fmt.h
v4l2_m2m_dec.c avcodec/v4l2_m2m_dec: remove FF_CODEC_CAP_SETS_PKT_DTS flag 2023-07-11 14:26:43 -03:00
v4l2_m2m_enc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
v4l2_m2m.c
v4l2_m2m.h
v210_template.c
v210dec_init.h
v210dec.c avutil/imgutils: Add wrapper for av_image_copy() to avoid casts 2023-09-12 09:42:27 +02:00
v210dec.h
v210enc_init.h
v210enc.c
v210enc.h
v210x.c
v308dec.c
v308enc.c
v408dec.c
v408enc.c
v410dec.c
v410enc.c
vaapi_av1.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_decode.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_decode.h
vaapi_encode_h264.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode_h265.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode_mjpeg.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode_mpeg2.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode_vp8.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode_vp9.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_encode.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_h264.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_hevc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vaapi_hevc.h
vaapi_mjpeg.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_mpeg2.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_mpeg4.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_vc1.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_vp8.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vaapi_vp9.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vb.c
vble.c
vbn.h
vbndec.c
vbnenc.c
vc1_block.c
vc1_common.h
vc1_loopfilter.c
vc1_mc.c
vc1_parser.c
vc1_pred.c
vc1_pred.h
vc1_vlc_data.h
vc1.c
vc1.h
vc1acdata.h
vc1data.c
vc1data.h
vc1dec.c avcodec/error_resilience: Make applying decode_error_flags optional 2023-09-15 13:08:37 +02:00
vc1dsp.c
vc1dsp.h
vc2enc_dwt.c
vc2enc_dwt.h
vc2enc.c
vcr1.c
vdpau_av1.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau_h264.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau_hevc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau_internal.h
vdpau_mpeg4.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau_mpeg12.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau_vc1.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau_vp9.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vdpau.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vdpau.h
version_major.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
version.c
version.h avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
videodsp_template.c
videodsp.c
videodsp.h
videotoolbox_vp9.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
videotoolbox.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
videotoolbox.h
videotoolboxenc.c avcodec/defs: Add AV_PROFILE_* defines, deprecate FF_PROFILE_* defines 2023-09-07 00:39:02 +02:00
vima.c
vlc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
vlc.h avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
vmdaudio.c
vmdvideo.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
vmixdec.c avcodec/vmixdec: add support for custom first byte 2023-09-14 14:54:40 +02:00
vmnc.c
vorbis_data.c
vorbis_data.h
vorbis_enc_data.h
vorbis_parser_internal.h
vorbis_parser.c
vorbis_parser.h
vorbis.c
vorbis.h
vorbisdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
vorbisdsp.c
vorbisdsp.h
vorbisenc.c
vp3_parser.c
vp3.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
vp3data.h
vp3dsp.c
vp3dsp.h
vp4data.h
vp5.c
vp5data.h
vp6.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
vp6data.h
vp6dsp.c
vp8_parser.c
vp8.c avcodec/avcodec: Add FFHWAccel, hide internals of AVHWAccel 2023-08-07 09:50:29 +02:00
vp8.h
vp8data.c avcodec/vp8data: Use <> for inclusion of stdint.h 2023-09-07 00:49:11 +02:00
vp8data.h
vp8dsp.c
vp8dsp.h
vp9_mc_template.c
vp9_metadata_bsf.c
vp9_parser.c
vp9_raw_reorder_bsf.c
vp9_superframe_bsf.c
vp9_superframe_split_bsf.c
vp9.c avcodec/thread: Remove ff_thread_get_format define 2023-09-13 22:04:22 +02:00
vp9.h
vp9block.c
vp9data.c
vp9data.h
vp9dec.h
vp9dsp_8bpp.c
vp9dsp_10bpp.c
vp9dsp_12bpp.c
vp9dsp_template.c
vp9dsp.c
vp9dsp.h
vp9lpf.c
vp9mvs.c
vp9prob.c
vp9recon.c
vp9shared.h
vp56.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
vp56.h
vp56data.c
vp56data.h
vp56dsp.c
vp56dsp.h
vp89_rac.h
vpx_rac.c
vpx_rac.h
vqavideo.c
vqcdec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
vt_internal.h
vulkan_av1.c avcodec/vulkan_decode: Factor creating session params out, fix leak 2023-09-15 02:38:22 +02:00
vulkan_decode.c avcodec/vulkan_decode: Factor creating session params out, fix leak 2023-09-15 02:38:22 +02:00
vulkan_decode.h avcodec/vulkan_decode: Factor creating session params out, fix leak 2023-09-15 02:38:22 +02:00
vulkan_h264.c avcodec/vulkan_decode: Factor creating session params out, fix leak 2023-09-15 02:38:22 +02:00
vulkan_hevc.c avcodec/vulkan_decode: Factor creating session params out, fix leak 2023-09-15 02:38:22 +02:00
vulkan_video_codec_av1std_decode.h av1dec: add Vulkan hwaccel 2023-05-29 00:42:00 +02:00
vulkan_video_codec_av1std.h av1dec: add Vulkan hwaccel 2023-05-29 00:42:00 +02:00
vulkan_video.c vulkan_decode: convert max level from vulkan to av for comparisons 2023-09-08 06:56:43 +02:00
vulkan_video.h vulkan_decode: convert max level from vulkan to av for comparisons 2023-09-08 06:56:43 +02:00
vulkan.c libavcodec: add Vulkan common video code 2023-05-29 00:41:57 +02:00
vulkan.h libavcodec: add Vulkan common video code 2023-05-29 00:41:57 +02:00
vvc_mp4toannexb_bsf.c avcodec/vvc_mp4toannexb_bsf: Improve included headers 2023-07-24 10:37:07 +02:00
vvc_parser.c avcodec/cbs_h2645: fix parsing and storing Picture Header references in the context 2023-06-30 08:26:38 -03:00
vvc.h avcodec/cbs_h266: add support for Adaptation parameter set NALU type 2023-07-06 11:43:13 -03:00
wavarc.c avcodec/wavarc: fix bugs in arithmetic coding mode 2023-09-02 21:16:20 +02:00
wavpack.c avcodec/wavpack: fix indentation 2023-08-16 22:05:14 +02:00
wavpack.h
wavpackdata.c
wavpackenc.c avcodec/wavpackenc: add support for encoding unspec channel layouts 2023-08-15 00:32:45 +02:00
wavpackenc.h
wbmpdec.c
wbmpenc.c
wcmv.c
webp_parser.c
webp.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
webvttdec.c
webvttenc.c
wma_common.c
wma_common.h
wma_freqs.c
wma_freqs.h
wma.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
wma.h
wmadata.h
wmadec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
wmaenc.c
wmalosslessdec.c
wmaprodata.h
wmaprodec.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
wmavoice_data.h
wmavoice.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
wmv2.c
wmv2.h
wmv2data.c
wmv2data.h
wmv2dec.c
wmv2dec.h
wmv2dsp.c
wmv2dsp.h
wmv2enc.c
wmv2enc.h
wnv1.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
wrapped_avframe.c
ws-snd1.c
xan.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
xbm_parser.c
xbmdec.c
xbmenc.c
xface.c
xface.h
xfacedec.c
xfaceenc.c
xiph.c
xiph.h
xl.c
xma_parser.c
xpmdec.c
xsubdec.c
xsubenc.c
xvididct.c avcodec/xvididct: Fix integer overflow in idct_row() 2023-08-23 22:52:26 +02:00
xvididct.h
xvmc.h
xwd_parser.c
xwd.h
xwddec.c
xwdenc.c
xxan.c
y41pdec.c
y41penc.c
ylc.c avcodec/vlc: Use proper namespace 2023-09-11 00:27:45 +02:00
yop.c
yuv4dec.c
yuv4enc.c avcodec/yuv4enc: do not read past end of input in case of odd height 2023-09-06 15:17:12 +02:00
zerocodec.c all: Use av_frame_replace() where appropriate 2023-09-10 21:22:30 +02:00
zlib_wrapper.c
zlib_wrapper.h
zmbv.c
zmbvenc.c