ffmpeg/libavcodec
Jose Da Silva 41b8fd3a16 avcodec/xbmenc: Do not add last comma into output
There is a minor bug in xbm encode which adds a trailing comma at the end
of data. This isn't a big problem, but it would be nicer to be more
technically true to an array of data (by not including the last comma).

This bug fixes the output from something like this (having 4 values):
static unsigned char image_bits[] = { 0x00, 0x11, 0x22, }
to C code that looks like this instead (having 3 values):
static unsigned char image_bits[] = { 0x00, 0x11, 0x22 }
which is the intended results.
Subject: [PATCH 1/3] avcodec/xbmenc: Do not add last comma into output array

xbm outputs c arrays of data.
Including a comma at the end means there is another value to be added.
This bug fix changes something like this:
static unsigned char image_bits[] = { 0x00, 0x11, 0x22, }
to C code like this:
static unsigned char image_bits[] = { 0x00, 0x11, 0x22 }

Signed-off-by: Joe Da Silva <digital@joescat.com>
2021-01-28 15:50:09 +01:00
..
aarch64 lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
alpha
arm fft: remove 16-bit FFT and MDCT code 2021-01-14 01:44:21 +01:00
avr32
bfin
mips lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
neon
ppc lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sh4
sparc
tests fft: remove 16-bit FFT and MDCT code 2021-01-14 01:44:21 +01:00
x86 ac3enc_fixed: drop unnecessary fixed-point DSP code 2021-01-14 01:44:20 +01:00
.gitignore
4xm.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
8bps.c
8svx.c
012v.c
Makefile avcodec/dolby_e: split decoder and parser more thoroughly 2021-01-25 16:45:20 -03:00
a64colors.h
a64multienc.c
a64tables.h
aac.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aac_ac3_parser.c
aac_ac3_parser.h
aac_adtstoasc_bsf.c
aac_defines.h
aac_parser.c
aaccoder.c
aaccoder_trellis.h
aaccoder_twoloop.h
aacdec.c
aacdec_fixed.c
aacdec_template.c
aacdectab.h
aacenc.c
aacenc.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aacenc_is.c
aacenc_is.h
aacenc_ltp.c
aacenc_ltp.h
aacenc_pred.c
aacenc_pred.h
aacenc_quantization.h
aacenc_quantization_misc.h
aacenc_tns.c
aacenc_tns.h
aacenc_utils.h
aacenctab.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
aacenctab.h Mark some pointers as const 2021-01-01 15:25:48 +01:00
aacps.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
aacps.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aacps_common.c avcodec/aacps_common: Use minimal VLC nb_bits/max_depth 2020-12-31 23:18:55 +01:00
aacps_fixed.c
aacps_fixed_tablegen.c
aacps_fixed_tablegen.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aacps_float.c
aacps_tablegen.c
aacps_tablegen.h
aacps_tablegen_template.c
aacpsdata.c avcodec/aacps: Factor out code shared by float and fixed point decoder 2020-12-31 22:12:39 +01:00
aacpsdsp.h
aacpsdsp_fixed.c
aacpsdsp_float.c
aacpsdsp_template.c
aacpsy.c
aacsbr.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
aacsbr.h
aacsbr_fixed.c
aacsbr_template.c avcodec/aacps: Factor out code shared by float and fixed point decoder 2020-12-31 22:12:39 +01:00
aacsbrdata.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aactab.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aactab.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aandcttab.c
aandcttab.h
aasc.c
ac3.c
ac3.h
ac3_parser.c
ac3_parser.h
ac3_parser_internal.h
ac3dec.c avcodec/ac3dec: Make decoders init-threadsafe 2021-01-09 04:06:32 +01:00
ac3dec.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
ac3dec_data.c
ac3dec_data.h
ac3dec_fixed.c avcodec/ac3dec: Make decoders init-threadsafe 2021-01-09 04:06:32 +01:00
ac3dec_float.c avcodec/ac3dec: Make decoders init-threadsafe 2021-01-09 04:06:32 +01:00
ac3dsp.c ac3enc_fixed: drop unnecessary fixed-point DSP code 2021-01-14 01:44:20 +01:00
ac3dsp.h ac3enc_fixed: drop unnecessary fixed-point DSP code 2021-01-14 01:44:20 +01:00
ac3enc.c ac3enc_fixed: convert to 32-bit sample format 2021-01-14 01:44:12 +01:00
ac3enc.h ac3enc_fixed: convert to 32-bit sample format 2021-01-14 01:44:12 +01:00
ac3enc_fixed.c ac3enc: halve the MDCT window size by using vector_fmul_reverse 2021-01-14 01:44:18 +01:00
ac3enc_float.c ac3enc: halve the MDCT window size by using vector_fmul_reverse 2021-01-14 01:44:18 +01:00
ac3enc_opts_template.c
ac3enc_template.c ac3enc: halve the MDCT window size by using vector_fmul_reverse 2021-01-14 01:44:18 +01:00
ac3tab.c ac3enc_fixed: drop unnecessary fixed-point DSP code 2021-01-14 01:44:20 +01:00
ac3tab.h ac3enc_fixed: drop unnecessary fixed-point DSP code 2021-01-14 01:44:20 +01:00
acelp_filters.c
acelp_filters.h
acelp_pitch_delay.c
acelp_pitch_delay.h
acelp_vectors.c
acelp_vectors.h
adpcm.c
adpcm.h
adpcm_data.c
adpcm_data.h
adpcmenc.c
adts_header.c
adts_header.h
adts_parser.c
adts_parser.h
adx.c
adx.h
adx_parser.c
adxdec.c
adxenc.c
agm.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
aic.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
alac.c
alac_data.c
alac_data.h
alacdsp.c
alacdsp.h
alacenc.c
aliaspixdec.c
aliaspixenc.c
allcodecs.c
alsdec.c avcodec/alsdec: Fix integer overflow with quant_cof 2021-01-05 02:00:05 +01:00
amfenc.c
amfenc.h
amfenc_h264.c
amfenc_hevc.c
amr.h
amrnbdata.h avcodec/amrnbdata: Remove unused array 2021-01-26 13:56:59 +01:00
amrnbdec.c
amrwbdata.h
amrwbdec.c
anm.c
ansi.c
apedec.c avcodec/apedec: Use FFABSU() in do_apply_filter() 2021-01-26 18:37:12 +01:00
apng.h
aptx.c
aptx.h
aptxdec.c
aptxenc.c
arbc.c
argo.c
ass.c
ass.h
ass_split.c
ass_split.h
assdec.c
assenc.c
asv.c
asv.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
asvdec.c
asvenc.c
atrac.c
atrac.h
atrac1.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
atrac1data.h
atrac3.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
atrac3data.h
atrac3plus.c
atrac3plus.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
atrac3plus_data.h avcodec/atrac3plus_data: Remove unused arrays 2021-01-26 13:56:59 +01:00
atrac3plusdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
atrac3plusdsp.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
atrac9dec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
atrac9tab.h
atsc_a53.c
atsc_a53.h
audio_frame_queue.c
audio_frame_queue.h
audiodsp.c
audiodsp.h
audiotoolboxdec.c All: update names in copyright headers 2021-01-20 01:02:56 -06:00
audiotoolboxenc.c All: update names in copyright headers 2021-01-20 01:02:56 -06:00
aura.c
av1.h
av1_frame_merge_bsf.c
av1_frame_split_bsf.c avcodec/cbs: constify decompose_unit_types 2021-01-10 19:23:07 -03:00
av1_metadata_bsf.c av1_metadata_bsf: Use common cbs bsf implementation 2021-01-21 17:13:55 +00:00
av1_parse.c
av1_parse.h
av1_parser.c avcodec/cbs: constify decompose_unit_types 2021-01-10 19:23:07 -03:00
av1dec.c avcodec/av1dec: add an option to select an operating point 2021-01-04 16:28:29 -03:00
av1dec.h avcodec/av1dec: add an option to select an operating point 2021-01-04 16:28:29 -03:00
avcodec.h lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
avcodecres.rc
avdct.c
avdct.h
avfft.c
avfft.h
avpacket.c
avpicture.c
avrndec.c
avs.c
avs2_parser.c
avs3.h
avs3_parser.c
avuidec.c
avuienc.c
bethsoftvideo.c
bethsoftvideo.h
bfi.c
bgmc.c
bgmc.h
bink.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
binkaudio.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
binkdata.h
binkdsp.c
binkdsp.h
bintext.c
bintext.h
bit_depth_template.c
bitpacked.c
bitstream.c
bitstream_filter.c
bitstream_filters.c
blockdsp.c
blockdsp.h
bmp.c
bmp.h
bmp_parser.c
bmpenc.c
bmvaudio.c
bmvvideo.c
brenderpix.c
bsf.c
bsf.h
bsf_internal.h
bswapdsp.c
bswapdsp.h
bytestream.h
c93.c
cabac.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
cabac.h
cabac_functions.h
canopus.c
canopus.h
cavs.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
cavs.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
cavs_parser.c
cavsdata.c
cavsdec.c
cavsdsp.c
cavsdsp.h
cbrt_data.c
cbrt_data.h
cbrt_data_fixed.c
cbrt_fixed_tablegen.c
cbrt_tablegen.c
cbrt_tablegen.h
cbrt_tablegen_template.c
cbs.c avcodec/cbs: allow cbs_read_fragment_content() to skip decomposition of units 2021-01-04 16:28:29 -03:00
cbs.h avcodec/cbs: constify decompose_unit_types 2021-01-10 19:23:07 -03:00
cbs_av1.c avcodec/cbs_av1: add an option to select an operating point 2021-01-04 16:28:29 -03:00
cbs_av1.h avcodec/cbs_av1: add an option to select an operating point 2021-01-04 16:28:29 -03:00
cbs_av1_syntax_template.c
cbs_bsf.c cbs: Implement common parts of cbs-based bitstream filters separately 2021-01-21 17:13:54 +00:00
cbs_bsf.h cbs: Implement common parts of cbs-based bitstream filters separately 2021-01-21 17:13:54 +00:00
cbs_h264.h cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_h264_syntax_template.c cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_h265.h cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_h265_syntax_template.c cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_h2645.c cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_h2645.h
cbs_internal.h avcodec/cbs: add an AVClass to CodedBitstreamType for option handling 2021-01-04 16:28:29 -03:00
cbs_jpeg.c
cbs_jpeg.h
cbs_jpeg_syntax_template.c
cbs_mpeg2.c
cbs_mpeg2.h
cbs_mpeg2_syntax_template.c
cbs_sei.c cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_sei.h cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
cbs_sei_syntax_template.c cbs_sei: Remove restrictions on MDCV values 2021-01-21 17:13:54 +00:00
cbs_vp9.c
cbs_vp9.h
cbs_vp9_syntax_template.c
ccaption_dec.c
cdgraphics.c
cdtoons.c
cdxl.c
celp_filters.c
celp_filters.h
celp_math.c
celp_math.h
cfhd.c avcodec/cfhd: only increase s->level if transform is supported 2021-01-17 13:40:15 +01:00
cfhd.h
cfhddata.c
cfhddsp.c
cfhddsp.h
cfhdenc.c
cga_data.c
cga_data.h
chomp_bsf.c
cinepak.c
cinepakenc.c
clearvideo.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
clearvideodata.h
cljrdec.c
cljrenc.c
cllc.c
cngdec.c
cngenc.c
codec.h
codec2utils.c
codec2utils.h
codec_desc.c avcodec: add vvc codec id and profiles 2021-01-11 17:01:34 -03:00
codec_desc.h
codec_id.h avcodec: add vvc codec id and profiles 2021-01-11 17:01:34 -03:00
codec_par.h
cook.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
cook_parser.c
cookdata.h
copy_block.h
cos_tablegen.c
cpia.c
cri.c avcodec/cri: Fix whitespace issue in unpack_10bit() 2021-01-26 19:52:59 +01:00
crystalhd.c
cscd.c
cuviddec.c
cyuv.c
d3d11va.c
d3d11va.h
dca.c
dca.h
dca_core.c
dca_core.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dca_core_bsf.c
dca_exss.c
dca_exss.h
dca_lbr.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
dca_lbr.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dca_parser.c
dca_syncwords.h
dca_xll.c
dca_xll.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dcaadpcm.c
dcaadpcm.h
dcadata.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dcadata.h
dcadct.c
dcadct.h
dcadec.c
dcadec.h
dcadsp.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
dcadsp.h
dcaenc.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
dcaenc.h
dcahuff.c
dcahuff.h
dcamath.h
dct.c
dct.h
dct32.h
dct32_fixed.c
dct32_float.c
dct32_template.c
dctref.c
dctref.h
dds.c
decode.c lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
decode.h
dfa.c
dirac.c
dirac.h
dirac_arith.c avcodec/dirac_arith: Make table only used here static 2020-12-31 23:37:53 +01:00
dirac_arith.h avcodec/dirac_arith: Make table only used here static 2020-12-31 23:37:53 +01:00
dirac_dwt.c
dirac_dwt.h
dirac_dwt_template.c
dirac_parser.c
dirac_vlc.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dirac_vlc.h
diracdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
diracdsp.c
diracdsp.h
diractab.c
diractab.h
dnxhd_parser.c
dnxhddata.c avcodec/dnxhd: Make ff_dxnhd_get_cid_table return a pointer, not index 2021-01-26 13:56:59 +01:00
dnxhddata.h avcodec/dnxhd: Make ff_dxnhd_get_cid_table return a pointer, not index 2021-01-26 13:56:59 +01:00
dnxhddec.c avcodec/dnxhd: Make ff_dxnhd_get_cid_table return a pointer, not index 2021-01-26 13:56:59 +01:00
dnxhdenc.c avcodec/dnxhd: Make ff_dxnhd_get_cid_table return a pointer, not index 2021-01-26 13:56:59 +01:00
dnxhdenc.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dolby_e.c avcodec/dolby_e: split decoder and parser more thoroughly 2021-01-25 16:45:20 -03:00
dolby_e.h avcodec/dolby_e: split decoder and parser more thoroughly 2021-01-25 16:45:20 -03:00
dolby_e_parse.c avcodec/dolby_e: split decoder and parser more thoroughly 2021-01-25 16:45:20 -03:00
dolby_e_parser.c avcodec/dolby_e: split decoder and parser more thoroughly 2021-01-25 16:45:20 -03:00
dpcm.c
dpx.c
dpx_parser.c
dpxenc.c
dsd.c
dsd.h
dsd_tablegen.h
dsddec.c
dsicinaudio.c
dsicinvideo.c
dss_sp.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dstdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
dump_extradata_bsf.c
dv.c
dv.h
dv_profile.c
dv_profile.h
dv_profile_internal.h
dv_tablegen.c
dv_tablegen.h
dvaudio.h
dvaudio_parser.c
dvaudiodec.c
dvbsub_parser.c
dvbsubdec.c
dvbsubenc.c
dvbtxt.h
dvd_nav_parser.c
dvdata.c
dvdata.h
dvdec.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
dvdsub.c
dvdsub_parser.c
dvdsubdec.c
dvdsubenc.c
dvenc.c avcodec/dvenc: dv100_weight_shift never used 2021-01-24 09:35:12 +11:00
dxa.c
dxtory.c
dxv.c
dxva2.c
dxva2.h
dxva2_av1.c
dxva2_h264.c
dxva2_hevc.c
dxva2_internal.h
dxva2_mpeg2.c
dxva2_vc1.c
dxva2_vp9.c
dynamic_hdr10_plus.c
dynamic_hdr10_plus.h
eac3_core_bsf.c
eac3_data.c
eac3_data.h
eac3dec.c
eac3enc.c avcodec/[e]ac3enc: Don't invade CONFIG_ namespace 2021-01-09 04:06:31 +01:00
eac3enc.h
eacmv.c
eaidct.c
eaidct.h
eamad.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
eatgq.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
eatgv.c
eatqi.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
elbg.c
elbg.h
elsdec.c
elsdec.h
encode.c lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
encode.h
error_resilience.c
error_resilience.h
escape124.c
escape130.c
evrcdata.h
evrcdec.c
exif.c avcodec/exif: Avoid allocation for small buffer 2021-01-26 13:56:59 +01:00
exif.h
exr.c
exrdsp.c
exrdsp.h
extract_extradata_bsf.c
faandct.c
faandct.h
faanidct.c
faanidct.h
fastaudio.c
faxcompr.c
faxcompr.h
fdctdsp.c
fdctdsp.h
ffjni.c
ffjni.h
fft-internal.h fft: remove 16-bit FFT and MDCT code 2021-01-14 01:44:21 +01:00
fft.h fft: remove 16-bit FFT and MDCT code 2021-01-14 01:44:21 +01:00
fft_fixed_32.c
fft_float.c
fft_init_table.c
fft_table.h
fft_template.c fft: remove 16-bit FFT and MDCT code 2021-01-14 01:44:21 +01:00
ffv1.c
ffv1.h
ffv1_template.c
ffv1dec.c
ffv1dec_template.c
ffv1enc.c
ffv1enc_template.c
ffwavesynth.c
fic.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
file_open.c
filter_units_bsf.c
fits.c
fits.h
fitsdec.c
fitsenc.c
flac.c
flac.h
flac_parser.c
flacdata.c
flacdata.h
flacdec.c
flacdsp.c
flacdsp.h
flacdsp_lpc_template.c
flacdsp_template.c
flacenc.c
flashsv.c
flashsv2enc.c avcodec/flashsv2enc: Fix use of uninitialized value 2021-01-28 13:59:00 +01:00
flashsvenc.c
flicvideo.c
flv.h
flvdec.c
flvenc.c
fmtconvert.c
fmtconvert.h
fmvc.c
frame_thread_encoder.c
frame_thread_encoder.h
fraps.c
frwu.c
g2meet.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
g722.c
g722.h
g722dec.c
g722dsp.c
g722dsp.h
g722enc.c
g723_1.c avcodec/g723_1: Deduplicate arrays 2021-01-08 05:05:10 +01:00
g723_1.h avcodec/g723_1: Move tables to their only user 2021-01-08 05:05:10 +01:00
g723_1_parser.c
g723_1dec.c avcodec/g723_1: Move tables to their only user 2021-01-08 05:05:10 +01:00
g723_1enc.c avcodec/g723_1: Move tables to their only user 2021-01-08 05:05:10 +01:00
g726.c
g729.h
g729_parser.c
g729data.h
g729dec.c
g729postfilter.c
g729postfilter.h
gdv.c
get_bits.h
gif.c
gif.h
gif_parser.c
gifdec.c
golomb.c
golomb.h
gsm.h
gsm_parser.c
gsmdec.c
gsmdec_data.c
gsmdec_data.h
gsmdec_template.c
h261.c avcodec/h261enc: Make encoder init-threadsafe 2021-01-25 14:52:51 +01:00
h261.h avcodec/h261enc: Make encoder init-threadsafe 2021-01-25 14:52:51 +01:00
h261_parser.c
h261data.c
h261dec.c avcodec/h261dec: Make VLC smaller 2021-01-27 11:53:22 +01:00
h261enc.c avcodec/h261enc: Make encoder init-threadsafe 2021-01-25 14:52:51 +01:00
h263.c
h263.h avcodec/msmpeg4dec: Reuse identical MV VLC 2021-01-25 14:51:53 +01:00
h263_parser.c
h263_parser.h
h263data.c avcodec/h263data, ituh263*: Make initializing RL inter table thread-safe 2021-01-25 14:52:58 +01:00
h263data.h avcodec/h263data, ituh263*: Make initializing RL inter table thread-safe 2021-01-25 14:52:58 +01:00
h263dec.c mpegvideo: use the AVVideoEncParams API for exporting QP tables 2021-01-01 14:23:19 +01:00
h263dsp.c
h263dsp.h
h264.h
h264_cabac.c
h264_cavlc.c
h264_direct.c
h264_levels.c
h264_levels.h
h264_loopfilter.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
h264_mb.c
h264_mb_template.c
h264_mc_template.c
h264_metadata_bsf.c avcodec/h264_metadata_bsf: Don't use unitialized value 2021-01-22 14:38:09 +01:00
h264_mp4toannexb_bsf.c
h264_mvpred.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
h264_parse.c
h264_parse.h
h264_parser.c
h264_picture.c
h264_ps.c
h264_ps.h
h264_redundant_pps_bsf.c h264_redundant_pps_bsf: Use common cbs bsf implementation 2021-01-21 17:13:55 +00:00
h264_refs.c
h264_sei.c h264: Use common SEI types 2021-01-21 17:13:54 +00:00
h264_sei.h h264: Use common SEI types 2021-01-21 17:13:54 +00:00
h264_slice.c
h264addpx_template.c
h264chroma.c
h264chroma.h
h264chroma_template.c
h264data.c
h264data.h
h264dec.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
h264dec.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
h264dsp.c
h264dsp.h
h264dsp_template.c
h264idct.c
h264idct.h
h264idct_template.c
h264pred.c
h264pred.h
h264pred_template.c
h264qpel.c
h264qpel.h
h264qpel_template.c
h265_metadata_bsf.c h265_metadata_bsf: Use common cbs bsf implementation 2021-01-21 17:13:55 +00:00
h265_profile_level.c
h265_profile_level.h
h2645_parse.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
h2645_parse.h
hap.c
hap.h
hapdec.c
hapenc.c
hapqa_extract_bsf.c
hca_data.h
hcadec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
hcom.c
hevc.h
hevc_cabac.c avcodec/hevcdec: fix stat_coeff save/load for persistent_rice_adaptation_enabled_flag 2021-01-04 15:18:19 +00:00
hevc_data.c
hevc_data.h
hevc_filter.c
hevc_mp4toannexb_bsf.c
hevc_mvs.c
hevc_parse.c
hevc_parse.h
hevc_parser.c
hevc_ps.c
hevc_ps.h
hevc_ps_enc.c
hevc_refs.c
hevc_sei.c hevc: Use common SEI types 2021-01-21 17:13:54 +00:00
hevc_sei.h hevc: Use common SEI types 2021-01-21 17:13:54 +00:00
hevcdec.c avcodec/hevcdec: fix stat_coeff save/load for persistent_rice_adaptation_enabled_flag 2021-01-04 15:18:19 +00:00
hevcdec.h avcodec/hevcdec: fix stat_coeff save/load for persistent_rice_adaptation_enabled_flag 2021-01-04 15:18:19 +00:00
hevcdsp.c
hevcdsp.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
hevcdsp_template.c
hevcpred.c
hevcpred.h
hevcpred_template.c
hnm4video.c
hpel_template.c
hpeldsp.c
hpeldsp.h
hq_hqa.c
hq_hqa.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
hq_hqadata.c
hq_hqadsp.c
hq_hqadsp.h
hqx.c
hqx.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
hqxdsp.c
hqxdsp.h
hqxvlc.c
htmlsubtitles.c
htmlsubtitles.h
huffman.c
huffman.h
huffyuv.c
huffyuv.h
huffyuvdec.c
huffyuvdsp.c
huffyuvdsp.h
huffyuvenc.c
huffyuvencdsp.c
huffyuvencdsp.h
hwaccels.h
hwconfig.h
idcinvideo.c
idctdsp.c
idctdsp.h
iff.c
iirfilter.c
iirfilter.h
ilbcdata.h avcodec/ilbcdata: Remove unused array 2021-01-26 13:56:59 +01:00
ilbcdec.c
imc.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
imcdata.h
imgconvert.c
imm4.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
imm5.c
imx_dump_header_bsf.c
indeo2.c
indeo2data.h
indeo3.c
indeo3data.h
indeo4.c
indeo4data.h
indeo5.c
indeo5data.h
intelh263dec.c
internal.h lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
interplayacm.c
interplayvideo.c
intrax8.c
intrax8.h
intrax8dsp.c
intrax8dsp.h
intrax8huf.h
ipu_parser.c
ituh263dec.c avcodec/h263data, ituh263*: Make initializing RL inter table thread-safe 2021-01-25 14:52:58 +01:00
ituh263enc.c avcodec/h263data, ituh263*: Make initializing RL inter table thread-safe 2021-01-25 14:52:58 +01:00
ivi.c
ivi.h
ivi_dsp.c
ivi_dsp.h
j2kenc.c
jacosub.h
jacosubdec.c
jfdctfst.c
jfdctint.c
jfdctint_template.c
jni.c
jni.h
jpeg2000.c
jpeg2000.h
jpeg2000_parser.c
jpeg2000dec.c
jpeg2000dsp.c
jpeg2000dsp.h
jpeg2000dwt.c
jpeg2000dwt.h
jpegls.c
jpegls.h
jpeglsdec.c
jpeglsdec.h
jpeglsenc.c
jpegtables.c
jpegtables.h
jrevdct.c
jvdec.c
kbdwin.c
kbdwin.h
kgv1dec.c
kmvc.c
lagarith.c
lagarithrac.c
lagarithrac.h
latm_parser.c
lcl.h
lcldec.c
lclenc.c
libaomdec.c
libaomenc.c
libaribb24.c
libavcodec.v
libcelt_dec.c
libcodec2.c
libdav1d.c
libdavs2.c
libfdk-aacdec.c
libfdk-aacenc.c
libgsmdec.c
libgsmenc.c
libilbc.c
libkvazaar.c avcodec/libkvazaar: Set default ratecontrol algorithm for libkvazaar 2021-01-04 15:18:19 +00:00
libmp3lame.c
libopencore-amr.c
libopenh264.c
libopenh264.h
libopenh264dec.c
libopenh264enc.c
libopenjpegdec.c
libopenjpegenc.c
libopus.c
libopus.h
libopusdec.c
libopusenc.c avcodec/libopusenc: Fix for header pre-skip value 2021-01-07 22:42:15 +01:00
librav1e.c avcodec/librav1e: Pass through timestamps as opaque user data 2021-01-17 14:49:46 +00:00
librsvgdec.c
libshine.c
libspeexdec.c
libspeexenc.c
libsvtav1.c
libtheoraenc.c
libtwolame.c
libuavs3d.c
libvo-amrwbenc.c
libvorbisdec.c
libvorbisenc.c
libvpx.c
libvpx.h
libvpxdec.c
libvpxenc.c avcodec/libvpxenc: add a way to set VP9E_SET_SVC_REF_FRAME_CONFIG 2021-01-14 11:08:33 -08:00
libwebpenc.c
libwebpenc_animencoder.c
libwebpenc_common.c
libwebpenc_common.h
libx264.c
libx265.c
libxavs.c
libxavs2.c
libxvid.c
libxvid.h
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 lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
lpc.h
lsp.c
lsp.h
lzf.c
lzf.h
lzw.c
lzw.h
lzwenc.c
m101.c
mace.c
magicyuv.c
magicyuvenc.c
mathops.h
mathtables.c
mdct15.c
mdct15.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
mdct_fixed_32.c
mdct_float.c
mdct_template.c
mdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
me_cmp.c avcodec/me_cmp: Remove ff_check_alignment() 2021-01-21 19:13:06 +01:00
me_cmp.h avcodec/me_cmp: Remove ff_check_alignment() 2021-01-21 19:13:06 +01:00
mediacodec.c
mediacodec.h
mediacodec_surface.c
mediacodec_surface.h
mediacodec_sw_buffer.c
mediacodec_sw_buffer.h
mediacodec_wrapper.c
mediacodec_wrapper.h
mediacodecdec.c
mediacodecdec_common.c
mediacodecdec_common.h
metasound.c avcodec/metasound: Deduplicate data 2021-01-08 05:05:10 +01:00
metasound_data.c avcodec/twinvq, metasound_data: Deduplicate lsp tables 2021-01-08 05:05:10 +01:00
metasound_data.h avcodec/twinvq, metasound_data: Deduplicate lsp tables 2021-01-08 05:05:10 +01:00
mf_utils.c
mf_utils.h
mfenc.c
microdvddec.c
midivid.c
mimic.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
mjpeg.h
mjpeg2jpeg_bsf.c
mjpeg_parser.c
mjpega_dump_header_bsf.c
mjpegbdec.c
mjpegdec.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
mjpegdec.h lavc/mjpegdec: cosmetics, org->orig 2021-01-01 14:33:47 +01:00
mjpegenc.c avcodec/mpegvideo_enc: Make mpv_encode_defaults thread-safe 2021-01-25 14:51:53 +01:00
mjpegenc.h
mjpegenc_common.c
mjpegenc_common.h
mjpegenc_huffman.c
mjpegenc_huffman.h
mlp.c
mlp.h
mlp_parse.c
mlp_parse.h
mlp_parser.c
mlpdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
mlpdsp.c
mlpdsp.h
mlpenc.c
mlz.c
mlz.h
mmaldec.c All: update names in copyright headers 2021-01-20 01:02:56 -06:00
mmvideo.c
mobiclip.c
motion_est.c
motion_est.h
motion_est_template.c
motionpixels.c
motionpixels_tablegen.c
motionpixels_tablegen.h
movsub_bsf.c
movtextdec.c
movtextenc.c
mp3_header_decompress_bsf.c
mpc.c
mpc.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
mpc7.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
mpc7data.h
mpc8.c
mpc8data.h
mpc8huff.h
mpcdata.h
mpeg2_metadata_bsf.c mpeg2_metadata_bsf: Use common cbs bsf implementation 2021-01-21 17:13:55 +00:00
mpeg4_unpack_bframes_bsf.c
mpeg4audio.c
mpeg4audio.h
mpeg4data.h
mpeg4video.c
mpeg4video.h
mpeg4video_parser.c
mpeg4video_parser.h
mpeg4videodec.c Revert "mpeg4videodec: raise an error if sprite_trajectory.table is NULL" 2021-01-27 11:53:22 +01:00
mpeg4videoenc.c avcodec/Makefile: Make H.263 encoder compilable without MPEG4 encoder 2021-01-21 19:02:18 +01:00
mpeg12.c
mpeg12.h
mpeg12data.c
mpeg12data.h
mpeg12dec.c avcodec/mpeg12dec: Remove redundant writes 2021-01-21 19:12:43 +01:00
mpeg12enc.c avcodec/mpegvideo_enc: Make mpv_encode_defaults thread-safe 2021-01-25 14:51:53 +01:00
mpeg12framerate.c
mpeg12vlc.h
mpeg_er.c
mpeg_er.h
mpegaudio.c
mpegaudio.h
mpegaudio_parser.c
mpegaudio_tablegen.c
mpegaudio_tablegen.h
mpegaudiodata.c
mpegaudiodata.h
mpegaudiodec_common.c
mpegaudiodec_common_tablegen.c
mpegaudiodec_common_tablegen.h
mpegaudiodec_fixed.c
mpegaudiodec_float.c
mpegaudiodec_template.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
mpegaudiodecheader.c
mpegaudiodecheader.h
mpegaudiodsp.c
mpegaudiodsp.h
mpegaudiodsp_data.c
mpegaudiodsp_fixed.c
mpegaudiodsp_float.c
mpegaudiodsp_template.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
mpegaudioenc_fixed.c
mpegaudioenc_float.c
mpegaudioenc_template.c
mpegaudiotab.h
mpegpicture.c avcodec: remove long dead debug_mv code 2021-01-25 19:03:22 -03:00
mpegpicture.h mpegvideo: use the AVVideoEncParams API for exporting QP tables 2021-01-01 14:23:19 +01:00
mpegutils.c avcodec: remove long dead debug_mv code 2021-01-25 19:03:22 -03:00
mpegutils.h
mpegvideo.c mpegvideo: use the AVVideoEncParams API for exporting QP tables 2021-01-01 14:23:19 +01:00
mpegvideo.h
mpegvideo_enc.c avcodec/sp5x: Remove unused quant tables 2021-01-26 13:57:00 +01:00
mpegvideo_motion.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
mpegvideo_parser.c
mpegvideo_xvmc.c
mpegvideodata.c
mpegvideodata.h
mpegvideodsp.c
mpegvideodsp.h
mpegvideoencdsp.c
mpegvideoencdsp.h
mpl2dec.c
mqc.c
mqc.h
mqcdec.c
mqcenc.c
mscc.c
msgsmdec.c
msgsmdec.h
msmpeg4.c
msmpeg4.h
msmpeg4data.c
msmpeg4data.h
msmpeg4dec.c avcodec/msmpeg4dec: Reuse identical MV VLC 2021-01-25 14:51:53 +01:00
msmpeg4enc.c
msp2dec.c
msrle.c
msrledec.c
msrledec.h
mss1.c
mss2.c
mss2dsp.c
mss2dsp.h
mss3.c
mss4.c
mss12.c
mss12.h
mss34dsp.c
mss34dsp.h
msvideo1.c
msvideo1enc.c
mv30.c
mvcdec.c
mvha.c
mwsc.c
mxpegdec.c
nellymoser.c
nellymoser.h
nellymoserdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
nellymoserenc.c
noise_bsf.c
notchlc.c avcodec/notchlc: Check uncompressed size against input for LZ4 2021-01-03 01:16:25 +01:00
null_bsf.c
nuv.c
nvdec.c
nvdec.h
nvdec_av1.c
nvdec_h264.c
nvdec_hevc.c
nvdec_mjpeg.c
nvdec_mpeg4.c
nvdec_mpeg12.c
nvdec_vc1.c
nvdec_vp8.c
nvdec_vp9.c
nvenc.c hevc: Use common SEI types 2021-01-21 17:13:54 +00:00
nvenc.h
nvenc_h264.c
nvenc_hevc.c
omx.c
on2avc.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
on2avcdata.c
on2avcdata.h
options.c
options_table.h lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
opus.c
opus.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
opus_celt.c
opus_celt.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
opus_metadata_bsf.c
opus_parser.c
opus_pvq.c
opus_pvq.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
opus_rc.c
opus_rc.h
opus_silk.c
opusdec.c avcodec/opusdec: Mark decoder as init-threadsafe 2020-12-31 23:35:21 +01:00
opusdsp.c
opusdsp.h
opusenc.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
opusenc.h
opusenc_psy.c
opusenc_psy.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
opusenc_utils.h
opustab.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
opustab.h Mark some pointers as const 2021-01-01 15:25:48 +01:00
packet.h
packet_internal.h
paf.h
pafaudio.c
pafvideo.c
pamenc.c
parser.c
parser.h
parsers.c avcodec/dolby_e: Add a parser 2021-01-25 13:17:43 +01:00
pcm-bluray.c
pcm-dvd.c
pcm-dvdenc.c
pcm.c
pcm_rechunk_bsf.c
pcm_tablegen.c
pcm_tablegen.h
pcx.c
pcxenc.c
pel_template.c
pgssubdec.c
pgxdec.c
photocd.c
pictordec.c
pixblockdsp.c
pixblockdsp.h
pixels.h
pixlet.c
png.c
png.h
png_parser.c
pngdec.c
pngdsp.c
pngdsp.h
pngenc.c
pnm.c
pnm.h
pnm_parser.c
pnmdec.c
pnmenc.c
profiles.c avcodec: add vvc codec id and profiles 2021-01-11 17:01:34 -03:00
profiles.h avcodec: add vvc codec id and profiles 2021-01-11 17:01:34 -03:00
prores_metadata_bsf.c
proresdata.c
proresdata.h
proresdec.h
proresdec2.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
proresdsp.c
proresdsp.h
proresenc_anatoliy.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
proresenc_kostya.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
prosumer.c
psd.c
psymodel.c
psymodel.h
pthread.c
pthread_frame.c avcodec: deprecate AVCodecContext.debug_mv 2021-01-25 19:31:04 -03:00
pthread_internal.h
pthread_slice.c
ptx.c
put_bits.h
qcelpdata.h
qcelpdec.c
qdm2.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
qdm2_tablegen.c
qdm2_tablegen.h
qdm2data.h
qdmc.c avcodec/qdmc: Mark decoder as init-threadsafe 2020-12-31 23:36:37 +01:00
qdrw.c
qpeg.c
qpel_template.c
qpeldsp.c
qpeldsp.h
qsv.c
qsv.h
qsv_api.c
qsv_internal.h
qsvdec.c avcodec/qsvdec: refact, remove duplicate code for plugin loading 2021-01-23 16:07:54 +00:00
qsvdec.h
qsvenc.c qsv: dump more info in error, debug and verbose mode 2021-01-23 16:10:16 +00:00
qsvenc.h
qsvenc_h264.c
qsvenc_hevc.c
qsvenc_jpeg.c
qsvenc_mpeg2.c
qsvenc_vp9.c
qtrle.c
qtrleenc.c
r210dec.c
r210enc.c
ra144.c
ra144.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
ra144dec.c
ra144enc.c
ra288.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
ra288.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
ralf.c
ralfdata.h
rangecoder.c
rangecoder.h
rasc.c avcodec/rasc: Check frame before clearing 2021-01-08 18:08:56 +01:00
ratecontrol.c
ratecontrol.h
raw.c
raw.h
rawdec.c
rawenc.c
rdft.c
rdft.h
realtextdec.c
rectangle.h
remove_extradata_bsf.c
reverse.c
rkmppdec.c
rl.c avcodec/rl: Allow to create only a few VLC tables 2021-01-25 14:51:53 +01:00
rl.h avcodec/rl: Allow to create only a few VLC tables 2021-01-25 14:51:53 +01:00
rl2.c
rle.c
rle.h
rnd_avg.h
roqaudioenc.c
roqvideo.c
roqvideo.h
roqvideodec.c
roqvideoenc.c
rpza.c
rpzaenc.c
rscc.c
rtjpeg.c
rtjpeg.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
rv10.c
rv10.h
rv10enc.c
rv20enc.c
rv30.c
rv30data.h
rv30dsp.c
rv34.c mpegvideo: use the AVVideoEncParams API for exporting QP tables 2021-01-01 14:23:19 +01:00
rv34.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
rv34_parser.c
rv34data.h
rv34dsp.c
rv34dsp.h
rv34vlc.h
rv40.c
rv40data.h
rv40dsp.c
rv40vlc2.h
s302m.c
s302menc.c
samidec.c
sanm.c
sbc.c
sbc.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sbc_parser.c sbc: do not set sample format in parser 2021-01-09 15:24:32 -03:00
sbcdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sbcdec_data.c
sbcdec_data.h
sbcdsp.c
sbcdsp.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sbcdsp_data.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sbcdsp_data.h
sbcenc.c
sbr.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sbrdsp.c
sbrdsp.h
sbrdsp_fixed.c
sbrdsp_template.c
scpr.c
scpr.h
scpr3.c
scpr3.h
screenpresso.c
sei.h avcodec/sei: add Parameter Sets Inclusion Indication enum value 2021-01-26 21:27:29 -03:00
sgi.h
sgidec.c
sgienc.c
sgirledec.c
sheervideo.c
sheervideodata.h
shorten.c
simple_idct.c
simple_idct.h
simple_idct_template.c
sinewin.c
sinewin.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sinewin_fixed.c
sinewin_fixed_tablegen.c
sinewin_tablegen.c
sinewin_tablegen.h
sinewin_tablegen_template.c
sipr.c
sipr.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
sipr16k.c
sipr16kdata.h
sipr_parser.c
siprdata.h
siren.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
smacker.c
smc.c
snappy.c
snappy.h
snow.c
snow.h
snow_dwt.c
snow_dwt.h
snowdata.h
snowdec.c
snowenc.c
sonic.c
sp5x.h avcodec/sp5x: Remove unused quant tables 2021-01-26 13:57:00 +01:00
sp5xdec.c avcodec/sp5x: Remove unused quant tables 2021-01-26 13:57:00 +01:00
speedhq.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
speedhqenc.c avcodec/mpeg12enc, speedhqenc: Avoid redundant copies of tables 2021-01-25 14:51:53 +01:00
speedhqenc.h
srtdec.c
srtenc.c
startcode.c
startcode.h
subviewerdec.c
sunrast.c
sunrast.h
sunrastenc.c
svq1.c
svq1.h
svq1_cb.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
svq1_vlc.h
svq1dec.c avcodec/svq1dec: Increase nb_bits of VLC to read it in one go 2020-12-31 23:42:05 +01:00
svq1enc.c
svq1enc.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
svq1enc_cb.h
svq3.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
synth_filter.c
synth_filter.h
tableprint.h avcodec/tableprint: Don't include mem_internal.h 2021-01-22 19:09:57 +01:00
tableprint_vlc.h
tak.c
tak.h
tak_parser.c
takdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
takdsp.c
takdsp.h
targa.c
targa.h
targa_y216dec.c
targaenc.c
tdsc.c
textdec.c
texturedsp.c
texturedsp.h
texturedspenc.c
thread.h
tiertexseqv.c
tiff.c
tiff.h
tiff_common.c
tiff_common.h avcodec/tiff_common: Remove declarations of inexistent functions 2021-01-25 00:23:17 +01:00
tiff_data.c
tiff_data.h
tiffenc.c
tmv.c
tpeldsp.c
tpeldsp.h
trace_headers_bsf.c
truehd_core_bsf.c
truemotion1.c
truemotion1data.h
truemotion2.c
truemotion2rt.c
truespeech.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
truespeech_data.h
tscc.c
tscc2.c
tscc2data.h
tta.c
ttadata.c
ttadata.h
ttadsp.c
ttadsp.h
ttaenc.c
ttaencdsp.c
ttaencdsp.h
twinvq.c
twinvq.h
twinvq_data.h avcodec/twinvq, metasound_data: Deduplicate lsp tables 2021-01-08 05:05:10 +01:00
twinvqdec.c avcodec/twinvq, metasound_data: Deduplicate lsp tables 2021-01-08 05:05:10 +01:00
txd.c
ulti.c
ulti_cb.h
unary.h
utils.c lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
utvideo.h
utvideodec.c
utvideodsp.c
utvideodsp.h
utvideoenc.c
v4l2_buffers.c
v4l2_buffers.h
v4l2_context.c
v4l2_context.h
v4l2_fmt.c
v4l2_fmt.h
v4l2_m2m.c
v4l2_m2m.h
v4l2_m2m_dec.c
v4l2_m2m_enc.c
v210_template.c
v210dec.c
v210dec.h
v210enc.c
v210enc.h
v210x.c
v308dec.c
v308enc.c
v408dec.c
v408enc.c
v410dec.c
v410enc.c
vaapi.h
vaapi_av1.c
vaapi_decode.c
vaapi_decode.h
vaapi_encode.c
vaapi_encode.h
vaapi_encode_h264.c cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
vaapi_encode_h265.c cbs_h2645: Merge SEI message handling in common between codecs 2021-01-21 17:13:54 +00:00
vaapi_encode_mjpeg.c
vaapi_encode_mpeg2.c
vaapi_encode_vp8.c
vaapi_encode_vp9.c
vaapi_h264.c
vaapi_hevc.c
vaapi_hevc.h
vaapi_mjpeg.c
vaapi_mpeg2.c
vaapi_mpeg4.c
vaapi_vc1.c
vaapi_vp8.c
vaapi_vp9.c
vb.c
vble.c
vc1.c
vc1.h
vc1_block.c
vc1_common.h
vc1_loopfilter.c
vc1_mc.c
vc1_parser.c
vc1_pred.c
vc1_pred.h
vc1acdata.h
vc1data.c
vc1data.h
vc1dec.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
vc1dsp.c
vc1dsp.h
vc2enc.c
vc2enc_dwt.c
vc2enc_dwt.h
vcr1.c
vdpau.c
vdpau.h
vdpau_h264.c
vdpau_hevc.c
vdpau_internal.h
vdpau_mpeg4.c
vdpau_mpeg12.c
vdpau_vc1.c
vdpau_vp9.c
version.h lavc: shedule old encoding/decoding API for removal 2021-01-26 17:05:58 +01:00
videodsp.c
videodsp.h
videodsp_template.c
videotoolbox.c avcodec/videotoolbox: make FFmpeg-to-VT mapping error more informative 2021-01-02 14:36:22 +02:00
videotoolbox.h
videotoolboxenc.c avcodec/videotoolboxenc: Fix SEI enum identifiers 2021-01-22 13:31:16 +01:00
vima.c
vlc.h
vmdaudio.c
vmdvideo.c
vmnc.c
vorbis.c
vorbis.h
vorbis_data.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
vorbis_enc_data.h
vorbis_parser.c
vorbis_parser.h
vorbis_parser_internal.h
vorbisdec.c
vorbisdsp.c
vorbisdsp.h
vorbisenc.c
vp3.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
vp3_parser.c
vp3data.h avcodec/vp3data: Deduplicate coeff_tables 2021-01-08 05:05:10 +01:00
vp3dsp.c
vp3dsp.h
vp4data.h
vp5.c
vp5data.h
vp6.c
vp6data.h
vp6dsp.c
vp8.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
vp8.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
vp8_parser.c
vp8data.h avcodec/vp8data: Remove unused array 2021-01-25 00:18:47 +01:00
vp8dsp.c
vp8dsp.h
vp9.c Mark some pointers as const 2021-01-01 15:25:48 +01:00
vp9.h
vp9_mc_template.c
vp9_metadata_bsf.c vp9_metadata_bsf: Use common cbs bsf implementation 2021-01-21 17:13:55 +00:00
vp9_parser.c
vp9_raw_reorder_bsf.c
vp9_superframe_bsf.c
vp9_superframe_split_bsf.c
vp9block.c
vp9data.c
vp9data.h
vp9dec.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
vp9dsp.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
vp9dsp.h
vp9dsp_8bpp.c
vp9dsp_10bpp.c
vp9dsp_12bpp.c
vp9dsp_template.c
vp9lpf.c
vp9mvs.c
vp9prob.c
vp9recon.c lavu: move LOCAL_ALIGNED from internal.h to mem_internal.h 2021-01-01 14:11:01 +01:00
vp9shared.h
vp56.c
vp56.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
vp56data.c
vp56data.h
vp56dsp.c
vp56dsp.h
vp56rac.c
vqavideo.c
vt_internal.h
wavpack.c
wavpack.h avcodec/wavpack: Deduplicate exp and log tables 2021-01-08 05:06:11 +01:00
wavpackdata.c avcodec/wavpack: Deduplicate exp and log tables 2021-01-08 05:06:11 +01:00
wavpackenc.c avcodec/wavpack: Deduplicate exp and log tables 2021-01-08 05:06:11 +01:00
wavpackenc.h
wcmv.c
webp.c
webp_parser.c
webvttdec.c
webvttenc.c
wma.c
wma.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
wma_common.c
wma_common.h
wma_freqs.c
wma_freqs.h
wmadata.h
wmadec.c
wmaenc.c
wmalosslessdec.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
wmaprodata.h
wmaprodec.c avcodec/wmaprodec: Check packet size 2021-01-08 18:08:57 +01:00
wmavoice.c lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
wmavoice_data.h
wmv2.c
wmv2.h lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump 2021-01-01 14:14:57 +01:00
wmv2data.c
wmv2data.h
wmv2dec.c
wmv2dsp.c
wmv2dsp.h
wmv2enc.c
wnv1.c
wrapped_avframe.c
ws-snd1.c
xan.c
xbmdec.c
xbmenc.c avcodec/xbmenc: Do not add last comma into output 2021-01-28 15:50:09 +01:00
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
xvididct.h
xvmc.h
xvmc_internal.h
xwd.h
xwddec.c
xwdenc.c
xxan.c
y41pdec.c
y41penc.c
ylc.c
yop.c
yuv4dec.c
yuv4enc.c
zerocodec.c
zmbv.c
zmbvenc.c