ffmpeg/libavcodec
Ben Avison 701e8b42e1 vc-1: Optimise parser (with special attention to ARM)
The previous implementation of the parser made four passes over each input
buffer (reduced to two if the container format already guaranteed the input
buffer corresponded to frames, such as with MKV). But these buffers are
often 200K in size, certainly enough to flush the data out of L1 cache, and
for many CPUs, all the way out to main memory. The passes were:

1) locate frame boundaries (not needed for MKV etc)
2) copy the data into a contiguous block (not needed for MKV etc)
3) locate the start codes within each frame
4) unescape the data between start codes

After this, the unescaped data was parsed to extract certain header fields,
but because the unescape operation was so large, this was usually also
effectively operating on uncached memory. Most of the unescaped data was
simply thrown away and never processed further. Only step 2 - because it
used memcpy - was using prefetch, making things even worse.

This patch reorganises these steps so that, aside from the copying, the
operations are performed in parallel, maximising cache utilisation. No more
than the worst-case number of bytes needed for header parsing is unescaped.
Most of the data is, in practice, only read in order to search for a start
code, for which optimised implementations already existed in the H264 codec
(notably the ARM version uses prefetch, so we end up doing both remaining
passes at maximum speed). For MKV files, we know when we've found the last
start code of interest in a given frame, so we are able to avoid doing even
that one remaining pass for most of the buffer.

In some use-cases (such as the Raspberry Pi) video decode is handled by the
GPU, but the entire elementary stream is still fed through the parser to
pick out certain elements of the header which are necessary to manage the
decode process. As you might expect, in these cases, the performance of the
parser is significant.

To measure parser performance, I used the same VC-1 elementary stream in
either an MPEG-2 transport stream or a MKV file, and fed it through avconv
with -c:v copy -c:a copy -f null. These are the gperftools counts for
those streams, both filtered to only include vc1_parse() and its callees,
and unfiltered (to include the whole binary). Lower numbers are better:

                Before          After
File  Filtered  Mean   StdDev   Mean   StdDev  Confidence  Change
M2TS  No        861.7  8.2      650.5  8.1     100.0%      +32.5%
MKV   No        868.9  7.4      731.7  9.0     100.0%      +18.8%
M2TS  Yes       250.0  11.2     27.2   3.4     100.0%      +817.9%
MKV   Yes       149.0  12.8     1.7    0.8     100.0%      +8526.3%

Yes, that last case shows vc1_parse() running 86 times faster! The M2TS
case does show a larger absolute improvement though, since it was worse
to begin with.

This patch has been tested with the FATE suite (albeit on x86 for speed).

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2014-08-04 22:22:54 +02:00
..
aarch64 aarch64: add ',' between assembler macro arguments where missing 2014-08-04 00:17:21 +02:00
arm vc-1: Add platform-specific start code search routine to VC1DSPContext. 2014-08-04 22:22:54 +02:00
avr32
mips
neon aarch64: NEON intrinsics dct_unquantize_h263. 2014-07-21 23:18:29 +02:00
ppc ppc: fft: Build AltiVec optimizations in the standard way 2014-08-02 07:40:37 -07:00
x86 idct: Split off Xvid IDCT 2014-08-01 01:25:18 -07:00
4xm.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
8bps.c lavc: Add an internal wrapper around get_format() 2014-05-11 14:59:07 +02:00
8svx.c
Makefile vc-1: Add platform-specific start code search routine to VC1DSPContext. 2014-08-04 22:22:54 +02:00
a64colors.h
a64enc.h
a64multienc.c
a64tables.h
aac.h
aac_ac3_parser.c
aac_ac3_parser.h
aac_adtstoasc_bsf.c
aac_parser.c
aac_tablegen.c
aac_tablegen.h
aac_tablegen_decl.h
aacadtsdec.c aac: K&R formatting cosmetics 2014-05-01 13:00:57 +02:00
aacadtsdec.h
aaccoder.c
aacdec.c
aacdectab.h
aacenc.c
aacenc.h
aacps.c
aacps.h
aacps_tablegen.c
aacps_tablegen.h
aacpsdata.c
aacpsdsp.c
aacpsdsp.h
aacpsy.c
aacsbr.c
aacsbr.h
aacsbrdata.h
aactab.c
aactab.h
aandcttab.c
aandcttab.h
aasc.c
ac3.c
ac3.h
ac3_parser.c
ac3_parser.h
ac3dec.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
ac3dec.h dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
ac3dec_data.c
ac3dec_data.h
ac3dsp.c
ac3dsp.h
ac3enc.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
ac3enc.h dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
ac3enc_fixed.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
ac3enc_float.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
ac3enc_opts_template.c
ac3enc_template.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
ac3tab.c
ac3tab.h
acelp_filters.c
acelp_filters.h
acelp_pitch_delay.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
acelp_pitch_delay.h dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
acelp_vectors.c
acelp_vectors.h
adpcm.c
adpcm.h
adpcm_data.c
adpcm_data.h
adpcmenc.c adpcm: Write the proper predictor in trellis mode in IMA QT 2014-06-10 16:28:47 +03:00
adx.c adxdec: get rid of an avpriv function 2014-07-09 13:37:18 +00:00
adx.h adxdec: get rid of an avpriv function 2014-07-09 13:37:18 +00:00
adx_parser.c
adxdec.c adxdec: get rid of an avpriv function 2014-07-09 13:37:18 +00:00
adxenc.c
aic.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
alac.c
alac_data.c
alac_data.h
alacenc.c
aliaspixdec.c
aliaspixenc.c
allcodecs.c lavc: add a native Opus decoder. 2014-05-15 06:49:34 +02:00
alsdec.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
amr.h
amrnbdata.h
amrnbdec.c
amrwbdata.h
amrwbdec.c
anm.c
ansi.c
apedec.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
apedsp.h dsputil: Move APE-specific bits into apedsp 2014-05-29 06:41:15 -07:00
ass.c
ass.h
assdec.c
assenc.c
asv.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
asv.h dsputil: Split off pixel block routines into their own context 2014-07-09 08:05:26 -07:00
asvdec.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
asvenc.c dsputil: Split off pixel block routines into their own context 2014-07-09 08:05:26 -07:00
atrac.c
atrac.h
atrac1.c
atrac1data.h
atrac3.c
atrac3data.h
atrac3plus.c
atrac3plus.h
atrac3plus_data.h
atrac3plusdec.c
atrac3plusdsp.c
audio_frame_queue.c
audio_frame_queue.h
audiodsp.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
audiodsp.h dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
aura.c
avcodec.h avcodec: Deprecate dtg_active_format field in favor of avframe side-data 2014-08-03 15:43:02 -07:00
avfft.c
avfft.h
avpacket.c lavc: add a convenience function for rescaling timestamps in a packet 2014-06-20 14:14:11 +02:00
avpicture.c
avs.c
bethsoftvideo.c
bethsoftvideo.h
bfi.c
bgmc.c
bgmc.h
bink.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
binkaudio.c
binkdata.h
binkdsp.c dsputil: Move Bink-specific add_pixels8 to binkdsp 2014-05-29 06:48:08 -07:00
binkdsp.h dsputil: Move Bink-specific add_pixels8 to binkdsp 2014-05-29 06:48:08 -07:00
bit_depth_template.c
bitstream.c
bitstream_filter.c avcodec: Mark argument in av_{parser|hwaccel|bitstream_filter}_next as const 2014-07-26 14:51:16 -07:00
blockdsp.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
blockdsp.h dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
bmp.c
bmp.h
bmp_parser.c
bmpenc.c
bmvaudio.c bmv: Split audio and video decoder 2014-07-06 10:58:43 -07:00
bmvvideo.c bmv: Split audio and video decoder 2014-07-06 10:58:43 -07:00
brenderpix.c avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_YA8 2014-08-04 12:55:08 +01:00
bswapdsp.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
bswapdsp.h dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
bytestream.h
c93.c
cabac.c
cabac.h
cabac_functions.h
cavs.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
cavs.h dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
cavs_parser.c
cavsdata.c
cavsdec.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
cavsdsp.c qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
cavsdsp.h dsputil: Split off quarterpel bits into their own context 2014-05-29 06:48:31 -07:00
cbrt_tablegen.c
cbrt_tablegen.h
cdgraphics.c
cdxl.c
celp_filters.c
celp_filters.h
celp_math.c
celp_math.h
cga_data.c
cga_data.h
chomp_bsf.c
cinepak.c
cljrdec.c cljr: split decoder and encoder 2014-07-06 09:28:20 -07:00
cljrenc.c cljr: split decoder and encoder 2014-07-06 09:28:20 -07:00
cllc.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
cngdec.c
cngenc.c
codec_desc.c codec_desc: fix some typos in long codec names 2014-07-28 08:03:13 +00:00
cook.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
cook_parser.c
cookdata.h
copy_block.h
cos_tablegen.c
cscd.c
cyuv.c
dca.c
dca.h
dca_parser.c
dcadata.h dca: Convert dca_dmixtable to integers 2014-05-23 15:07:05 +02:00
dcadec.c dcadec: replace ldexpf with a multiplication by a constant 2014-06-18 08:23:15 +02:00
dcadsp.c
dcadsp.h
dcahuff.h
dct-test.c build: Conditionally build and run DCT test program 2014-07-21 05:32:35 -07:00
dct.c
dct.h dct/rdft: Remove duplicate typedefs for context structs 2014-07-25 02:02:15 -07:00
dct32.h
dct32_fixed.c
dct32_float.c
dct32_template.c
dctref.c
dctref.h
dfa.c
dirac.c Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
dirac.h
dirac_parser.c
dnxhd_parser.c
dnxhddata.c
dnxhddata.h
dnxhddec.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
dnxhdenc.c dsputil: Split off pixel block routines into their own context 2014-07-09 08:05:26 -07:00
dnxhdenc.h dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
dpcm.c
dpx.c Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
dpxenc.c
dsicinaudio.c dsicin: Split audio and video decoder 2014-07-06 11:27:34 -07:00
dsicinvideo.c dsicin: Split audio and video decoder 2014-07-06 11:27:34 -07:00
dump_extradata_bsf.c
dv.c lavc: export DV profile API used by muxer/demuxer as public 2014-07-09 13:35:07 +00:00
dv.h dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
dv_profile.c lavc: export DV profile API used by muxer/demuxer as public 2014-07-09 13:35:07 +00:00
dv_profile.h lavc: export DV profile API used by muxer/demuxer as public 2014-07-09 13:35:07 +00:00
dv_profile_internal.h lavc: export DV profile API used by muxer/demuxer as public 2014-07-09 13:35:07 +00:00
dv_tablegen.c
dv_tablegen.h
dvbsub.c
dvbsub_parser.c
dvbsubdec.c
dvdata.c
dvdata.h
dvdec.c dv: Update DV-profile-related functions to current public API 2014-08-02 12:54:37 -07:00
dvdsub_parser.c
dvdsubdec.c
dvdsubenc.c
dvenc.c dv: Update DV-profile-related functions to current public API 2014-08-02 12:54:37 -07:00
dxa.c
dxtory.c
dxva2.c
dxva2.h dxva2_h264: add a workaround for old Intel GPUs 2014-04-28 20:21:59 +02:00
dxva2_h264.c hwaccel: Rename priv_data_size to frame_priv_data_size 2014-05-11 14:59:07 +02:00
dxva2_internal.h
dxva2_mpeg2.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
dxva2_vc1.c hwaccel: Rename priv_data_size to frame_priv_data_size 2014-05-11 14:59:07 +02:00
eac3_data.c
eac3_data.h
eac3dec.c
eac3enc.c ac3: Only initialize float_dsp for the float encoder variant 2014-06-13 05:21:34 -07:00
eac3enc.h
eacmv.c
eaidct.c
eaidct.h
eamad.c eamad: use the bytestream2 API instead of AV_RL 2014-07-27 07:10:54 +00:00
eatgq.c idct: Convert IDCT permutation #defines to an enum 2014-07-18 07:51:03 -07:00
eatgv.c
eatqi.c idct: Convert IDCT permutation #defines to an enum 2014-07-18 07:51:03 -07:00
elbg.c
elbg.h
error_resilience.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
error_resilience.h dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
escape124.c
escape130.c
exr.c Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
faandct.c
faandct.h
faanidct.c
faanidct.h
faxcompr.c
faxcompr.h
fdctdsp.c dsputil: Split off FDCT bits into their own context 2014-07-07 12:28:45 -07:00
fdctdsp.h dsputil: Split off FDCT bits into their own context 2014-07-07 12:28:45 -07:00
fft-fixed-test.c
fft-internal.h
fft-test.c fft-test: Pass the right struct members instead of casting 2014-07-25 06:54:37 -07:00
fft.h fft: Convert FFT/MDCT permutation type #defines to enums 2014-07-18 07:29:13 -07:00
fft_fixed.c
fft_float.c
fft_template.c aarch64: NEON float FFT 2014-04-22 19:35:40 +02:00
ffv1.c
ffv1.h
ffv1dec.c Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
ffv1enc.c
fic.c fic: Make warning message more accurate 2014-04-23 17:53:00 +01:00
file_open.c
flac.c flac: make avpriv_flac_parse_block_header() inline 2014-05-28 07:48:30 +02:00
flac.h flac: make avpriv_flac_parse_block_header() inline 2014-05-28 07:48:30 +02:00
flac_parser.c
flacdata.c
flacdata.h
flacdec.c flac: make avpriv_flac_parse_block_header() inline 2014-05-28 07:48:30 +02:00
flacdsp.c
flacdsp.h
flacdsp_lpc_template.c
flacdsp_template.c
flacenc.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
flashsv.c
flashsvenc.c
flicvideo.c
flv.h
flvdec.c flv: K&R formatting cosmetics 2014-05-01 13:00:57 +02:00
flvenc.c
fmtconvert.c
fmtconvert.h
fraps.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
frwu.c
g2meet.c g2meet: allow size changes within original sizes 2014-07-15 20:08:16 -04:00
g722.c
g722.h
g722dec.c
g722enc.c
g723_1.c
g723_1_data.h
g726.c
get_bits.h
gif.c
gifdec.c
golomb-test.c
golomb.c
golomb.h
gsm.h
gsm_parser.c
gsmdec.c
gsmdec_data.c
gsmdec_data.h
gsmdec_template.c
h261.c
h261.h
h261_parser.c
h261data.c
h261dec.c mpeg: Split error resilience bits off into a separate file 2014-06-22 17:36:37 -07:00
h261enc.c
h263.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
h263.h dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
h263_parser.c
h263_parser.h
h263data.h
h263dec.c mpeg: Split error resilience bits off into a separate file 2014-06-22 17:36:37 -07:00
h263dsp.c
h263dsp.h
h264.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
h264.h dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
h264_cabac.c
h264_cavlc.c
h264_direct.c h264: Fix direct temporal mvs for bottom-field-first poc order 2014-07-20 23:32:13 +01:00
h264_loopfilter.c
h264_mb.c dsputil: Split off quarterpel bits into their own context 2014-05-29 06:48:31 -07:00
h264_mb_template.c
h264_mc_template.c
h264_mp4toannexb_bsf.c
h264_mvpred.h
h264_parser.c h264: Move start code search functions into separate source files. 2014-08-04 22:22:54 +02:00
h264_picture.c h264: fix build when error resilience is disabled 2014-06-20 12:48:06 -04:00
h264_ps.c
h264_refs.c
h264_sei.c h264: prevent theoretical infinite loop in SEI parsing 2014-08-01 13:08:32 +01:00
h264_slice.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
h264addpx_template.c
h264chroma.c
h264chroma.h
h264chroma_template.c
h264data.h
h264dsp.c h264: Move start code search functions into separate source files. 2014-08-04 22:22:54 +02:00
h264dsp.h h264: Move start code search functions into separate source files. 2014-08-04 22:22:54 +02:00
h264dsp_template.c
h264idct.c
h264idct.h
h264idct_template.c
h264pred.c
h264pred.h
h264pred_template.c
h264qpel.c
h264qpel.h dsputil: Split off quarterpel bits into their own context 2014-05-29 06:48:31 -07:00
h264qpel_template.c qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
hevc.c hevc: eliminate the last element from TransformTree 2014-07-28 08:10:35 +00:00
hevc.h hevc: eliminate the last element from TransformTree 2014-07-28 08:10:35 +00:00
hevc_cabac.c hevc: Mark num_bins_in_se as unused 2014-06-18 22:03:40 +02:00
hevc_filter.c hevcdsp: remove an unneeded variable in the loop filter 2014-07-26 15:00:11 +00:00
hevc_mvs.c
hevc_parser.c
hevc_ps.c hevc_ps: remove a write-only variable 2014-07-11 08:38:51 +00:00
hevc_refs.c hevc: implement pic_output_flag handling 2014-07-11 08:52:54 +00:00
hevc_sei.c hevc: parse display orientation SEI message 2014-07-09 10:18:06 -04:00
hevcdsp.c hevc: SSE2 and SSSE3 loop filters 2014-07-26 15:01:01 +00:00
hevcdsp.h hevc: SSE2 and SSSE3 loop filters 2014-07-26 15:01:01 +00:00
hevcdsp_template.c hevcdsp: remove an unneeded variable in the loop filter 2014-07-26 15:00:11 +00:00
hevcpred.c hevc: templatize intra_pred 2014-05-19 07:10:03 +02:00
hevcpred_template.c hevc/intra_pred: simplify neighboring sample derivation 2014-05-19 07:12:55 +02:00
hnm4video.c
hpel_template.c
hpeldsp.c Rename tpel_template.c ---> pel_template.c 2014-06-13 05:21:34 -07:00
hpeldsp.h Remove all Blackfin architecture optimizations 2014-06-02 08:41:47 -07:00
huffman.c
huffman.h
huffyuv.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
huffyuv.h dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
huffyuvdec.c huffyuv: Check and propagate function return values 2014-08-03 15:35:30 -07:00
huffyuvdsp.c dsputil: Split off HuffYUV decoding bits into their own context 2014-05-27 08:52:34 -07:00
huffyuvdsp.h dsputil: Split off HuffYUV decoding bits into their own context 2014-05-27 08:52:34 -07:00
huffyuvenc.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
huffyuvencdsp.c dsputil: Split off HuffYUV encoding bits into their own context 2014-05-27 08:54:53 -07:00
huffyuvencdsp.h dsputil: Split off HuffYUV encoding bits into their own context 2014-05-27 08:54:53 -07:00
idcinvideo.c
idctdsp.c idctdsp: prettyprinting cosmetics 2014-07-18 07:51:03 -07:00
idctdsp.h idct: Convert IDCT permutation #defines to an enum 2014-07-18 07:51:03 -07:00
iff.c
iirfilter.c
iirfilter.h
imc.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
imcdata.h
imgconvert.c imgconvert: cosmetics: Reshuffle defines to reduce ifdeffery 2014-07-21 15:08:01 -07:00
imgconvert.h
imx_dump_header_bsf.c
indeo2.c indeo2: rename stride to pitch for consistency with other Indeo decoders 2014-06-26 19:16:08 +02:00
indeo2data.h
indeo3.c
indeo3data.h
indeo4.c indeo4: B-frames decoding 2014-06-26 19:17:33 +02:00
indeo4data.h
indeo5.c indeo4: B-frames decoding 2014-06-26 19:17:33 +02:00
indeo5data.h
intelh263dec.c i263: skip dummy frames 2014-06-19 13:13:20 +02:00
internal.h Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
interplayvideo.c
intrax8.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
intrax8.h
intrax8dsp.c
intrax8dsp.h
intrax8huf.h
ituh263dec.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
ituh263enc.c h263enc: keep block_last_index always valid during advanced intra coding 2014-06-11 21:28:39 +02:00
ivi_common.c indeo4: B-frames decoding 2014-06-26 19:17:33 +02:00
ivi_common.h indeo4: B-frames decoding 2014-06-26 19:17:33 +02:00
ivi_dsp.c indeo4: B-frames decoding 2014-06-26 19:17:33 +02:00
ivi_dsp.h indeo4: B-frames decoding 2014-06-26 19:17:33 +02:00
jfdctfst.c
jfdctint.c
jfdctint_template.c
jpeg2000.c jpeg2000: fix dereferencing invalid pointers during cleanup 2014-06-23 18:58:29 -04:00
jpeg2000.h
jpeg2000dec.c jpeg2000: Mark static data init functions as av_cold 2014-06-17 08:44:07 -07:00
jpeg2000dwt.c
jpeg2000dwt.h
jpegls.c
jpegls.h
jpeglsdec.c
jpeglsdec.h
jpeglsenc.c
jrevdct.c
jvdec.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
kbdwin.c
kbdwin.h
kgv1dec.c
kmvc.c
lagarith.c dsputil: Split off HuffYUV decoding bits into their own context 2014-05-27 08:52:34 -07:00
lagarithrac.c
lagarithrac.h
latm_parser.c
lcl.h
lcldec.c lcl: Disentangle pointers to input data and decompression buffer 2014-08-03 01:29:43 -07:00
lclenc.c
libavcodec.v
libfaac.c
libfdk-aacdec.c libfdk-aacdec: Decode the first AAC frame to reliably identify the bitstream 2014-07-07 22:09:15 +03:00
libfdk-aacenc.c libfdk-aac: Relicense the library wrappers to the ISC license 2014-06-06 10:48:27 +03:00
libgsmdec.c libgsm: Split decoder and encoder 2014-07-18 17:27:54 +02:00
libgsmenc.c libgsm: Split decoder and encoder 2014-07-18 17:27:54 +02:00
libilbc.c
libmp3lame.c Check mp3 header before calling avpriv_mpegaudio_decode_header(). 2014-06-22 20:31:58 -04:00
libopencore-amr.c
libopenjpegdec.c avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_YA8 2014-08-04 12:55:08 +01:00
libopenjpegenc.c avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_YA8 2014-08-04 12:55:08 +01:00
libopus.c
libopus.h
libopusdec.c
libopusenc.c
libschroedinger.c
libschroedinger.h
libschroedingerdec.c
libschroedingerenc.c
libspeexdec.c
libspeexenc.c
libtheoraenc.c
libtwolame.c
libvo-aacenc.c
libvo-amrwbenc.c
libvorbis.c
libvpx.c
libvpx.h
libvpxdec.c
libvpxenc.c vp9 encoder: use a decent default speed setting 2014-06-17 21:38:43 +02:00
libwavpackenc.c
libwebpenc.c
libx264.c libx264: Correctly manage constant rate factor params 2014-06-22 21:01:07 +02:00
libx265.c libx265: Remove unneeded bit depth check 2014-06-12 16:45:02 +01:00
libxavs.c
libxvid.c libxvid: Drop PPC-specific CPU detection hack 2014-07-22 11:45:07 -07:00
libxvid.h
libxvid_rc.c
ljpegenc.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
loco.c
log2_tab.c
lpc.c
lpc.h
lsp.c
lsp.h
lzw.c
lzw.h
lzwenc.c
mace.c
mathops.h
mathtables.c
mdct_fixed.c
mdct_float.c
mdct_template.c
mdec.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
me_cmp.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
me_cmp.h dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
metasound.c
metasound_data.c
metasound_data.h
mimic.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
mjpeg.c
mjpeg.h
mjpeg2jpeg_bsf.c
mjpeg_parser.c
mjpega_dump_header_bsf.c
mjpegbdec.c
mjpegdec.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
mjpegdec.h dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
mjpegenc.c mjpeg: return proper error code 2014-07-21 01:25:33 -07:00
mjpegenc.h mjpeg: Split off bits shared by MJPEG and LJPEG encoders 2014-06-30 07:53:40 -07:00
mjpegenc_common.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
mjpegenc_common.h dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
mlp.c
mlp.h
mlp_parser.c
mlp_parser.h
mlpdec.c
mlpdsp.c
mlpdsp.h
mmvideo.c
motion_est.c mpegvideo: Move ME_MAP_* defines to the only place they are used 2014-07-25 12:00:53 -07:00
motion_est_template.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
motionpixels.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
motionpixels_tablegen.c
motionpixels_tablegen.h
movsub_bsf.c
mpc.c
mpc.h dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
mpc7.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
mpc7data.h
mpc8.c
mpc8data.h
mpc8huff.h
mpcdata.h
mpeg4audio.c
mpeg4audio.h
mpeg4data.h
mpeg4video.c
mpeg4video.h mpegvideo: move vol_control_parameters to the only place it is used 2014-07-29 09:13:18 -07:00
mpeg4video_parser.c
mpeg4video_parser.h
mpeg4videodec.c mpeg4video: Initialize xvididct for all threads 2014-08-03 15:18:58 -07:00
mpeg4videoenc.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
mpeg12.c
mpeg12.h
mpeg12data.c
mpeg12data.h
mpeg12dec.c avcodec: Suppress deprecation warnings from DTG code scheduled for removal 2014-08-04 11:08:35 -07:00
mpeg12enc.c mpeg2: add sequence display extension information 2014-06-06 15:38:10 +01:00
mpeg_er.c mpeg: Split error resilience bits off into a separate file 2014-06-22 17:36:37 -07:00
mpeg_er.h mpeg: Split error resilience bits off into a separate file 2014-06-22 17:36:37 -07:00
mpegaudio.c
mpegaudio.h
mpegaudio_parser.c
mpegaudio_tablegen.c
mpegaudio_tablegen.h
mpegaudiodata.c
mpegaudiodata.h
mpegaudiodec_fixed.c
mpegaudiodec_float.c
mpegaudiodec_template.c
mpegaudiodecheader.c Check if an mp3 header is using a reserved sample rate. 2014-06-22 20:31:57 -04:00
mpegaudiodecheader.h
mpegaudiodectab.h
mpegaudiodsp.c aarch64: NEON fixed/floating point MPADSP apply_window 2014-04-22 22:01:45 +02:00
mpegaudiodsp.h aarch64: NEON fixed/floating point MPADSP apply_window 2014-04-22 22:01:45 +02:00
mpegaudiodsp_data.c
mpegaudiodsp_fixed.c
mpegaudiodsp_float.c
mpegaudiodsp_template.c
mpegaudioenc.c
mpegaudiotab.h
mpegutils.c
mpegutils.h
mpegvideo.c aarch64: NEON intrinsics dct_unquantize_h263. 2014-07-21 23:18:29 +02:00
mpegvideo.h mpegvideo: move vol_control_parameters to the only place it is used 2014-07-29 09:13:18 -07:00
mpegvideo_enc.c mpegvideo: Move QMAT_SHIFT* defines to the only place they are used 2014-07-25 12:00:53 -07:00
mpegvideo_motion.c dsputil: Split off global motion compensation bits into a separate context 2014-06-23 09:58:17 -07:00
mpegvideo_parser.c
mpegvideo_xvmc.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
mpegvideodsp.c dsputil: Split off global motion compensation bits into a separate context 2014-06-23 09:58:17 -07:00
mpegvideodsp.h dsputil: Split off global motion compensation bits into a separate context 2014-06-23 09:58:17 -07:00
mpegvideoencdsp.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
mpegvideoencdsp.h dsputil: Move draw_edges() to mpegvideoencdsp 2014-07-06 14:48:50 -07:00
mqc.c jpeg2000: Mark static data init functions as av_cold 2014-06-17 08:44:07 -07:00
mqc.h
mqcdec.c
msgsmdec.c
msgsmdec.h
msmpeg4.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
msmpeg4.h
msmpeg4data.c
msmpeg4data.h
msmpeg4dec.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
msmpeg4enc.c
msrle.c
msrledec.c
msrledec.h
mss1.c
mss2.c mpeg: Split error resilience bits off into a separate file 2014-06-22 17:36:37 -07:00
mss2dsp.c
mss2dsp.h
mss3.c
mss4.c
mss12.c
mss12.h
mss34dsp.c
mss34dsp.h
msvideo1.c
mvcdec.c mvc: Specify the pixel format for the mv-mvc* tests 2014-04-19 21:41:34 +03:00
mxpegdec.c
nellymoser.c
nellymoser.h
nellymoserdec.c
nellymoserenc.c
noise_bsf.c
nuv.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
on2avc.c on2avc: Remove pointless dsputil.h #include 2014-05-27 03:12:17 -07:00
on2avcdata.c On2 AVC decoder 2014-04-23 19:57:44 +02:00
on2avcdata.h on2avc: change a comment at #endif to match actual define 2014-04-23 20:54:29 +02:00
options.c lavc: add avcodec_free_context(). 2014-05-18 10:17:41 +02:00
options_table.h avcodec: Deprecate unused defines and options 2014-08-03 03:24:16 -07:00
opus.c lavc: add a native Opus decoder. 2014-05-15 06:49:34 +02:00
opus.h aarch64: opus NEON iMDCT and FFT 2014-05-15 18:17:02 +02:00
opus_celt.c aarch64: opus NEON iMDCT and FFT 2014-05-15 18:17:02 +02:00
opus_imdct.c aarch64: opus NEON iMDCT and FFT 2014-05-15 18:17:02 +02:00
opus_imdct.h aarch64: opus NEON iMDCT and FFT 2014-05-15 18:17:02 +02:00
opus_parser.c lavc: add a native Opus decoder. 2014-05-15 06:49:34 +02:00
opus_silk.c lavc: add a native Opus decoder. 2014-05-15 06:49:34 +02:00
opusdec.c lavc: add a native Opus decoder. 2014-05-15 06:49:34 +02:00
pafaudio.c paf: split audio and video decoder 2014-07-06 09:36:17 -07:00
pafvideo.c paf: split audio and video decoder 2014-07-06 09:36:17 -07:00
pamenc.c
parser.c avcodec: Mark argument in av_{parser|hwaccel|bitstream_filter}_next as const 2014-07-26 14:51:16 -07:00
parser.h
pcm-bluray.c
pcm-dvd.c pcm-dvd: Fix 20bit decoding 2014-05-09 16:07:15 +02:00
pcm.c
pcm_tablegen.c
pcm_tablegen.h
pcx.c
pcxenc.c
pel_template.c Rename tpel_template.c ---> pel_template.c 2014-06-13 05:21:34 -07:00
pgssubdec.c pgssubdec: Check RLE size before copying 2014-08-01 02:13:32 +02:00
pictordec.c
pixblockdsp.c dsputil: Split off pixel block routines into their own context 2014-07-09 08:05:26 -07:00
pixblockdsp.h dsputil: Split off pixel block routines into their own context 2014-07-09 08:05:26 -07:00
pixblockdsp_template.c dsputil: Split off pixel block routines into their own context 2014-07-09 08:05:26 -07:00
pixels.h
png.c
png.h
png_parser.c
pngdec.c png: support reading gray+alpha at 16 bits 2014-08-04 12:57:38 +01:00
pngdsp.c
pngdsp.h
pngenc.c pngenc: Drop pointless pointer cast in png_write_row() 2014-08-01 04:08:45 -07:00
pnm.c
pnm.h
pnm_parser.c
pnmdec.c
pnmenc.c
proresdata.c
proresdata.h
proresdec.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
proresdsp.c idct: Convert IDCT permutation #defines to an enum 2014-07-18 07:51:03 -07:00
proresdsp.h
proresenc.c dsputil: Split off FDCT bits into their own context 2014-07-07 12:28:45 -07:00
psymodel.c
psymodel.h
pthread.c
pthread_frame.c avcodec: Suppress deprecation warnings from DTG code scheduled for removal 2014-08-04 11:08:35 -07:00
pthread_internal.h
pthread_slice.c
ptx.c
put_bits.h
qcelpdata.h
qcelpdec.c
qdm2.c
qdm2_tablegen.c
qdm2_tablegen.h
qdm2data.h
qdrw.c
qpeg.c
qpel_template.c dsputil: Split off quarterpel bits into their own context 2014-05-29 06:48:31 -07:00
qpeldsp.c qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
qpeldsp.h qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
qtrle.c
qtrleenc.c
r210dec.c
ra144.c
ra144.h
ra144dec.c
ra144enc.c
ra288.c
ra288.h
ralf.c
ralfdata.h
rangecoder.c
rangecoder.h
ratecontrol.c lavc: move CODEC_FLAG_NORMALIZE_AQP to mpegvideo 2014-05-01 09:23:19 +02:00
ratecontrol.h
raw.c avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_YA8 2014-08-04 12:55:08 +01:00
raw.h
rawdec.c
rawenc.c
rdft.c
rdft.h dct/rdft: Remove duplicate typedefs for context structs 2014-07-25 02:02:15 -07:00
rectangle.h
remove_extradata_bsf.c
rl.h
rl2.c
rle.c
rle.h
rnd_avg.h
roqaudioenc.c
roqvideo.c
roqvideo.h
roqvideodec.c
roqvideoenc.c
rpza.c
rtjpeg.c dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
rtjpeg.h dsputil: Split off IDCT bits into their own context 2014-06-30 07:58:46 -07:00
rv10.c mpegencconetxt: Move rv10-specific orig_width/orig_height where they belong 2014-07-20 05:13:01 -07:00
rv10enc.c
rv20enc.c
rv30.c
rv30data.h
rv30dsp.c qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
rv34.c mpeg: Split error resilience bits off into a separate file 2014-06-22 17:36:37 -07:00
rv34.h
rv34_parser.c
rv34data.h
rv34dsp.c
rv34dsp.h dsputil: Split off quarterpel bits into their own context 2014-05-29 06:48:31 -07:00
rv34vlc.h
rv40.c
rv40data.h
rv40dsp.c qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
rv40vlc2.h
s3tc.c
s3tc.h
s302m.c
sanm.c sanm: Use correct printf conversion specifiers for POSIX int types 2014-07-28 13:19:04 -07:00
sbr.h
sbrdsp.c
sbrdsp.h
sgi.h
sgidec.c
sgienc.c
sgirledec.c Silicon Graphics RLE 8-bit video decoder 2014-04-19 16:24:26 +02:00
shorten.c
simple_idct.c
simple_idct.h simple_idct: Move x86-specific declarations to a header in the x86 directory 2014-07-19 02:33:36 -07:00
simple_idct_template.c
sinewin.c
sinewin.h
sinewin_tablegen.c
sinewin_tablegen.h
sipr.c
sipr.h
sipr16k.c
sipr16kdata.h
siprdata.h
smacker.c
smc.c
sp5x.h
sp5xdec.c
srtdec.c
startcode.c h264: Move start code search functions into separate source files. 2014-08-04 22:22:54 +02:00
startcode.h h264: Move start code search functions into separate source files. 2014-08-04 22:22:54 +02:00
sunrast.c
sunrast.h
sunrastenc.c
svq1.c
svq1.h
svq1_cb.h
svq1_vlc.h
svq1dec.c
svq1enc.c dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
svq1enc.h dsputil: Split motion estimation compare bits off into their own context 2014-07-17 09:07:10 -07:00
svq1enc_cb.h
svq3.c
svq3.h
svq13.c
synth_filter.c
synth_filter.h
tableprint.h
tak.c
tak.h
tak_parser.c
takdec.c dsputil: Split audio operations off into a separate context 2014-06-22 06:20:15 -07:00
targa.c
targa.h
targaenc.c
thread.h
tiertexseqv.c
tiff.c tiff: support reading gray+alpha at 8 bits 2014-08-04 12:57:39 +01:00
tiff.h tiff: use a better name and enum values for PhotometricInterpretation 2014-04-12 14:52:07 -04:00
tiffenc.c tiffenc: fix packet size calculation 2014-06-17 21:24:12 +02:00
tmv.c
tpeldsp.c Rename tpel_template.c ---> pel_template.c 2014-06-13 05:21:34 -07:00
tpeldsp.h
truemotion1.c Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
truemotion1data.h
truemotion2.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
truespeech.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
truespeech_data.h
tscc.c tscc: Eliminate pointless variable indirections in decode_frame() 2014-08-01 04:08:46 -07:00
tscc2.c
tscc2data.h
tta.c
twinvq.c
twinvq.h
twinvq_data.h
twinvqdec.c
txd.c
ulti.c
ulti_cb.h
unary.h
utils.c avcodec: Mark argument in av_{parser|hwaccel|bitstream_filter}_next as const 2014-07-26 14:51:16 -07:00
utvideo.c
utvideo.h dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
utvideodec.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
utvideoenc.c dsputil: Split bswap*_buf() off into a separate context 2014-06-22 18:22:31 -07:00
v210dec.c
v210enc.c
v210x.c
v410dec.c
v410enc.c
vaapi.c
vaapi.h
vaapi_h264.c hwaccel: fix dxva2 & vaapi loop filter parameters 2014-04-28 20:23:17 +02:00
vaapi_internal.h
vaapi_mpeg2.c vaapi: Update idct_permutation location after dsputil/idctdsp split 2014-07-01 07:36:22 -07:00
vaapi_mpeg4.c vaapi: Update idct_permutation location after dsputil/idctdsp split 2014-07-01 07:36:22 -07:00
vaapi_vc1.c
vb.c
vble.c dsputil: Split off HuffYUV decoding bits into their own context 2014-05-27 08:52:34 -07:00
vc1.c vc-1: Add platform-specific start code search routine to VC1DSPContext. 2014-08-04 22:22:54 +02:00
vc1.h
vc1_parser.c vc-1: Optimise parser (with special attention to ARM) 2014-08-04 22:22:54 +02:00
vc1acdata.h
vc1data.c
vc1data.h
vc1dec.c vc-1: Add platform-specific start code search routine to VC1DSPContext. 2014-08-04 22:22:54 +02:00
vc1dsp.c vc-1: Add platform-specific start code search routine to VC1DSPContext. 2014-08-04 22:22:54 +02:00
vc1dsp.h vc-1: Add platform-specific start code search routine to VC1DSPContext. 2014-08-04 22:22:54 +02:00
vcr1.c
vda.c lavc: Add new VDA hwaccel 2014-05-11 15:00:03 +02:00
vda.h lavc: Add new VDA hwaccel 2014-05-11 15:00:03 +02:00
vda_h264.c lavc: Add new VDA hwaccel 2014-05-11 15:00:03 +02:00
vda_internal.h lavc: Add new VDA hwaccel 2014-05-11 15:00:03 +02:00
vdpau.c
vdpau.h
vdpau_h264.c hwaccel: Rename priv_data_size to frame_priv_data_size 2014-05-11 14:59:07 +02:00
vdpau_internal.h
vdpau_mpeg4.c hwaccel: Rename priv_data_size to frame_priv_data_size 2014-05-11 14:59:07 +02:00
vdpau_mpeg12.c hwaccel: Rename priv_data_size to frame_priv_data_size 2014-05-11 14:59:07 +02:00
vdpau_vc1.c hwaccel: Rename priv_data_size to frame_priv_data_size 2014-05-11 14:59:07 +02:00
version.h avcodec: Deprecate dtg_active_format field in favor of avframe side-data 2014-08-03 15:43:02 -07:00
videodsp.c
videodsp.h
videodsp_template.c
vima.c
vmdaudio.c vmd: Split audio and video decoder 2014-07-07 07:45:00 -07:00
vmdvideo.c vmd: Split audio and video decoder 2014-07-07 07:45:00 -07:00
vmnc.c
vorbis.c
vorbis.h
vorbis_data.c
vorbis_enc_data.h
vorbis_parser.c
vorbis_parser.h
vorbisdec.c
vorbisdsp.c aarch64: NEON vorbis_inverse_coupling 2014-04-22 22:01:45 +02:00
vorbisdsp.h aarch64: NEON vorbis_inverse_coupling 2014-04-22 22:01:45 +02:00
vorbisenc.c
vp3.c Add av_image_check_sar() and use it to validate SAR 2014-06-20 10:39:33 -04:00
vp3_parser.c
vp3data.h
vp3dsp.c Remove all Blackfin architecture optimizations 2014-06-02 08:41:47 -07:00
vp3dsp.h Remove all Blackfin architecture optimizations 2014-06-02 08:41:47 -07:00
vp5.c
vp5data.h
vp6.c
vp6data.h
vp6dsp.c
vp8.c Update Fiona's name in copyright statements. 2014-07-01 03:26:51 -07:00
vp8.h Update Fiona's name in copyright statements. 2014-07-01 03:26:51 -07:00
vp8_parser.c
vp8data.h
vp8dsp.c
vp8dsp.h
vp9.c vp9: Read the frame size as unsigned 2014-05-03 18:25:17 +02:00
vp9.h
vp9block.c
vp9data.c
vp9data.h
vp9dsp.c
vp9mvs.c
vp9prob.c
vp56.c
vp56.h
vp56data.c
vp56data.h
vp56dsp.c
vp56dsp.h
vp56rac.c Update Fiona's name in copyright statements. 2014-07-01 03:26:51 -07:00
vqavideo.c
wavpack.c
webp.c webpdec: Fix decoding of the huffman group indices. 2014-07-03 15:29:01 -04:00
wma.c
wma.h
wma_common.c
wma_common.h
wmadata.h
wmadec.c
wmaenc.c
wmalosslessdec.c
wmaprodata.h
wmaprodec.c
wmavoice.c
wmavoice_data.h
wmv2.c idct: Convert IDCT permutation #defines to an enum 2014-07-18 07:51:03 -07:00
wmv2.h
wmv2dec.c dsputil: Split clear_block*/fill_block* off into a separate context 2014-06-18 14:07:23 -07:00
wmv2dsp.c qpeldsp: Mark source pointer in qpel_mc_func function pointer const 2014-07-25 02:52:54 -07:00
wmv2dsp.h dsputil: Split off quarterpel bits into their own context 2014-05-29 06:48:31 -07:00
wmv2enc.c
wnv1.c
ws-snd1.c
xan.c
xbmdec.c
xbmenc.c
xiph.c
xiph.h
xl.c
xsubdec.c
xsubenc.c
xvididct.c idct: Split off Xvid IDCT 2014-08-01 01:25:18 -07:00
xvididct.h idct: Split off Xvid IDCT 2014-08-01 01:25:18 -07:00
xvmc.h
xvmc_internal.h
xwd.h
xwddec.c
xwdenc.c
xxan.c
yop.c
zerocodec.c
zmbv.c
zmbvenc.c