1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-03 05:10:03 +02:00
FFmpeg/libavcodec
pin xue 05c062e9da replace movw instruction in ac3dsp_armv6.S
AS      libavcodec/arm/ac3dsp_armv6.o
ffmpeg-src/libavcodec/arm/ac3dsp_armv6.S: Assembler messages:
ffmpeg-src/libavcodec/arm/ac3dsp_armv6.S:40: Error: selected processor
does not support `movw r8,#0x1fe0'
make[1]: *** [libavcodec/arm/ac3dsp_armv6.o] Error 1

MOVW is ARMv7 way to load constant:
   * movw, or move wide, will move a 16-bit constant into a register,
implicitly zeroing the top 16 bits of the target register.
   * movt, or move top, will move a 16-bit constant into the top half
of a given register without altering the bottom 16 bits
To load 32 bit constant, movw  lower16; movt upper16; is better than
ldr if available, because:
While this approach takes two instructions, it does not require any
extra space to store the constant so both the movw/movt method and the
ldr method will end up using the same amount of memory. Memory
bandwidth is precious in and the movw/movt approach avoids an extra
read on the data side, not to mention the read could have missed the
cache.

But here it is armv6 optimization, so that we have to use ldr.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-04-10 03:49:24 +02:00
..
alpha Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
arm replace movw instruction in ac3dsp_armv6.S 2011-04-10 03:49:24 +02:00
avr32 Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bfin Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mips Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mlib Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ppc Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ps2 Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sh4 Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sparc Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
x86 Merge remote-tracking branch 'newdev/master' 2011-03-27 01:40:18 +01:00
4xm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
8bps.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
8svx.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
a64colors.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
a64enc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
a64multienc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
a64tables.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aac_ac3_parser.c Merge remote-tracking branch 'newdev/master' 2011-03-26 03:06:30 +01:00
aac_ac3_parser.h Merge remote-tracking branch 'newdev/master' 2011-03-26 03:06:30 +01:00
aac_adtstoasc_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aac_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aac_tablegen_decl.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aac_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aac_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacadtsdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacadtsdec.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aaccoder.c Merge remote branch 'qatar/master' 2011-04-05 02:31:56 +02:00
aacdec.c Merge remote branch 'qatar/master' 2011-04-06 02:59:49 +02:00
aacdectab.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacenc.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
aacenc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacps_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacps_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacps.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacps.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacpsdata.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacpsy.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacpsy.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacsbr.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
aacsbr.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aacsbrdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aactab.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aactab.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aandcttab.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aandcttab.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aasc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ac3_parser.c Merge remote-tracking branch 'newdev/master' 2011-03-26 03:06:30 +01:00
ac3_parser.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ac3.c Merge remote-tracking branch 'newdev/master' 2011-03-30 03:09:08 +02:00
ac3.h Merge remote-tracking branch 'newdev/master' 2011-03-30 03:09:08 +02:00
ac3dec_data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ac3dec_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ac3dec.c ac3dec: avoid pointless alloc and indirection for input_buffer 2011-04-05 18:21:51 +02:00
ac3dec.h ac3dec: avoid pointless alloc and indirection for input_buffer 2011-04-05 18:21:51 +02:00
ac3dsp.c Merge remote branch 'qatar/master' 2011-04-05 02:31:56 +02:00
ac3dsp.h Merge remote branch 'qatar/master' 2011-04-05 02:31:56 +02:00
ac3enc_fixed.c Merge remote branch 'qatar/master' 2011-04-04 02:15:12 +02:00
ac3enc_float.c Merge remote branch 'qatar/master' 2011-04-04 02:15:12 +02:00
ac3enc.c Merge remote branch 'qatar/master' 2011-04-05 02:31:56 +02:00
ac3tab.c Merge remote-tracking branch 'newdev/master' 2011-03-24 02:16:11 +01:00
ac3tab.h Merge remote-tracking branch 'newdev/master' 2011-03-30 03:09:08 +02:00
acelp_filters.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
acelp_filters.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
acelp_pitch_delay.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
acelp_pitch_delay.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
acelp_vectors.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
acelp_vectors.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
adpcm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
adx.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
adxdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
adxenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
alac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
alacenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
allcodecs.c Allow selecting VDPAU, XvMC via get_format for MPEG-2 2011-04-01 19:13:24 +02:00
alsdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
amr.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
amrnbdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
amrnbdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
amrwbdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
amrwbdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
anm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ansi.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
apedec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
api-example.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ass_split.c add SubRip encoder 2011-03-28 00:16:44 +02:00
ass_split.h add SubRip encoder 2011-03-28 00:16:44 +02:00
ass.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ass.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
assdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
assenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
asv1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
atrac1.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
atrac1data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
atrac3.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
atrac3data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
atrac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
atrac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
audioconvert.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
audioconvert.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
aura.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
avcodec.h Merge remote branch 'qatar/master' 2011-04-08 02:50:13 +02:00
avfft.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
avfft.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
avpacket.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
avs.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bethsoftvideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bethsoftvideo.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bfi.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bgmc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bgmc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bink.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
binkaudio.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
binkdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
binkidct.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bitstream_filter.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bitstream.c Fix undefined behavior in ffv1 with insane widths. 2011-04-01 12:49:52 +02:00
bmp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bmp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bmpenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
bytestream.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
c93.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cabac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cabac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavs_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavs.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavs.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavsdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavsdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavsdsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cavsdsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cbrt_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cbrt_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cdgraphics.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
celp_filters.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
celp_filters.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
celp_math.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
celp_math.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cga_data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cga_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
chomp_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cinepak.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cljr.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cook.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
cookdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
costablegen.c Merge remote-tracking branch 'newdev/master' 2011-04-01 02:58:15 +02:00
crystalhd.c CrystalHD: Improve detection of h.264 content. 2011-04-08 20:17:53 -07:00
cscd.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
cyuv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dca_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dca.c Libavcodec AC3/E-AC3/DTS decoders now output floating point data. 2011-04-03 22:52:58 +02:00
dca.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dcadata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dcadsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dcadsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dcahuff.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dct32.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dct-test.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dct.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
dct.h Merge remote-tracking branch 'newdev/master' 2011-03-23 02:42:56 +01:00
dctref.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dctref.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dfa.c Fix buffer overflow checks to avoid integer overflows. 2011-03-30 09:15:52 +02:00
dirac_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dirac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dirac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dnxhd_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dnxhddata.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dnxhddata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dnxhddec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dnxhdenc.c Fix dnxhd custom options, add AVClass in private context 2011-03-30 08:48:08 -07:00
dnxhdenc.h Fix dnxhd custom options, add AVClass in private context 2011-03-30 08:48:08 -07:00
dpcm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dpx.c dpx decoder: read sample aspect ratio 2011-04-02 18:19:01 +02:00
dpxenc.c dpx:fix typo 2011-04-02 19:26:58 +02:00
dsicinav.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dsputil.c Merge remote-tracking branch 'newdev/master' 2011-03-27 01:40:18 +01:00
dsputil.h Correctly implement: 2011-04-03 16:40:10 +02:00
dump_extradata_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dv_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dv_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dv_vlc_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvbsub_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvbsub.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvbsubdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvdata.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvdsub_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dvdsubdec.c Fix incorrect colors when decoding DVD subtitles 2011-03-25 19:00:54 +01:00
dvdsubenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dwt.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dwt.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxa.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxva2_h264.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxva2_internal.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxva2_mpeg2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxva2_vc1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxva2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
dxva2.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eac3dec_data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eac3dec_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eac3dec.c Merge remote-tracking branch 'newdev/master' 2011-03-26 03:06:30 +01:00
eacmv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eaidct.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eamad.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eatgq.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eatgv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
eatqi.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
elbg.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
elbg.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
error_resilience.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
escape124.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
faandct.c
faandct.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
faanidct.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
faanidct.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
faxcompr.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
faxcompr.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
fft_fixed.c Merge remote-tracking branch 'newdev/master' 2011-04-01 02:58:15 +02:00
fft_float.c Merge remote-tracking branch 'newdev/master' 2011-04-01 02:58:15 +02:00
fft-fixed-test.c Merge remote branch 'qatar/master' 2011-04-02 01:54:27 +02:00
fft-internal.h Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
fft-test.c Merge remote branch 'qatar/master' 2011-04-02 01:54:27 +02:00
fft.c Merge remote branch 'qatar/master' 2011-04-04 02:15:12 +02:00
fft.h Merge remote branch 'qatar/master' 2011-04-04 02:15:12 +02:00
ffv1.c Fix undefined behavior in ffv1 with insane widths. 2011-04-01 12:49:52 +02:00
flac_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flacdata.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flacdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flacdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flacenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flashsv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flashsvenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flicvideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flv.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flvdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
flvenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
fmtconvert.c Libavcodec AC3/E-AC3/DTS decoders now output floating point data. 2011-04-03 22:52:58 +02:00
fmtconvert.h Libavcodec AC3/E-AC3/DTS decoders now output floating point data. 2011-04-03 22:52:58 +02:00
fraps.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
frwu.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
g722.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
g726.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
g729.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
g729data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
g729dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
get_bits.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
gif.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
gifdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
golomb.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
golomb.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
gsmdec_data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
gsmdec_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
gsmdec_template.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
gsmdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h261_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h261.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h261.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h261data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h261dec.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
h261enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h263_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h263_parser.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h263.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h263.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h263data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h263dec.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
h264_cabac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264_cavlc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264_direct.c Fake-Merge remote-tracking branch 'ffmpeg-mt/master' 2011-03-22 22:36:57 +01:00
h264_loopfilter.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264_mp4toannexb_bsf.c Cleanup 'Fix spurious warning when stream has SPS and PPS units.' 2011-04-08 12:29:30 +02:00
h264_mvpred.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264_parser.c h264_parser: Fix whitespace after previous change. 2011-04-04 20:32:33 -07:00
h264_ps.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264_refs.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264_sei.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264.c Fix deblocking with thread_slices 2011-04-08 00:20:18 +02:00
h264.h Fake-Merge remote-tracking branch 'ffmpeg-mt/master' 2011-03-22 22:36:57 +01:00
h264data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264dsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264idct.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264pred.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
h264pred.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
huffman.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
huffman.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
huffyuv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
idcinvideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
iff.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
iirfilter.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
iirfilter.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
imc.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
imcdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
imgconvert.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
imgconvert.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
imx_dump_header_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
indeo2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
indeo2data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
indeo3.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
indeo3data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
indeo5.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
indeo5data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
intelh263dec.c Intel H.263 aspect ratio processing fix. 2011-03-25 01:16:22 +01:00
internal.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
interplayvideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
intrax8.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
intrax8.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
intrax8dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
intrax8huf.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
inverse.c
ituh263dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ituh263enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ivi_common.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ivi_common.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ivi_dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ivi_dsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
jfdctfst.c
jfdctint.c
jpegls.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
jpegls.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
jpeglsdec.c Add support for picture_ptr field in MJpegDecodeContext 2011-03-30 07:18:34 +02:00
jpeglsdec.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
jpeglsenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
jrevdct.c
jvdec.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
kbdwin.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
kbdwin.h Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
kgv1dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
kmvc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lagarith.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lagarithrac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lagarithrac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
latm_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lcl.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lcldec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lclenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libavcodec.v Hide the now-prefixed decoders, encoders, parsers, bsf, hwaccel objects. 2011-01-30 03:40:58 +01:00
libdirac_libschro.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libdirac_libschro.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libdirac.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libdiracdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libdiracenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libfaac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libgsm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libmp3lame.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libopencore-amr.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libopenjpeg.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libschroedinger.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libschroedinger.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libschroedingerdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libschroedingerenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libspeexdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libtheoraenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libvorbis.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libvpxdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libvpxenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libx264.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libxavs.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libxvid_internal.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libxvid_rc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
libxvidff.c make xvid less picky about unkown aspect 2011-03-27 01:28:06 +01:00
ljpegenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
loco.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lpc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lpc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lzw.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lzw.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
lzwenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mace.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
Makefile Merge remote branch 'qatar/master' 2011-04-02 01:54:27 +02:00
mathops.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mdct_fixed.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
mdct_float.c Merge remote-tracking branch 'newdev/master' 2011-04-01 02:58:15 +02:00
mdct.c Merge remote-tracking branch 'newdev/master' 2011-04-01 02:58:15 +02:00
mdec.c Merge remote-tracking branch 'ffmpeg-mt/master' 2011-03-30 02:58:38 +02:00
mimic.c mimic: implement multithreading. 2011-03-28 21:50:46 -07:00
mjpeg2jpeg_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mjpeg_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mjpeg.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mjpeg.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mjpega_dump_header_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mjpegbdec.c Add support for picture_ptr field in MJpegDecodeContext 2011-03-30 07:18:34 +02:00
mjpegdec.c Add support for picture_ptr field in MJpegDecodeContext 2011-03-30 07:18:34 +02:00
mjpegdec.h Add support for picture_ptr field in MJpegDecodeContext 2011-03-30 07:18:34 +02:00
mjpegenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mjpegenc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mlp_parser.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
mlp_parser.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mlp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mlp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mlpdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mlpdsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mmvideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
motion_est_template.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
motion_est.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
motion-test.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
motionpixels_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
motionpixels_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
motionpixels.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
movsub_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mp3_header_compress_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mp3_header_decompress_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc7.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc7data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc8.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc8data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc8huff.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpcdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4audio.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4audio.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4video_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4video_parser.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4video.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4video.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg4videodec.c Fake-Merge remote-tracking branch 'ffmpeg-mt/master' 2011-03-22 22:36:57 +01:00
mpeg4videoenc.c Fix ticket34 2011-04-06 23:21:44 +02:00
mpeg12.c Do not offer unsupported HWAccel PIX_FMT. 2011-04-05 18:23:15 +02:00
mpeg12.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg12data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg12data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg12decdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpeg12enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudio3.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudio_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudio_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudio_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudio.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudio.h Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
mpegaudiodata.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudiodata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudiodec_float.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudiodec.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
mpegaudiodecheader.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudiodecheader.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudiodectab.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudioenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegaudiotab.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegvideo_common.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegvideo_enc.c Fake-Merge remote-tracking branch 'ffmpeg-mt/master' 2011-03-22 22:36:57 +01:00
mpegvideo_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegvideo_xvmc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
mpegvideo.c Fix Ticket37 2011-04-06 01:09:04 +02:00
mpegvideo.h Fix REBASE_PICTURE with h.264 2011-04-06 01:09:04 +02:00
msgsmdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msgsmdec.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msmpeg4.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msmpeg4.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msmpeg4data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msmpeg4data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msrle.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msrledec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msrledec.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
msvideo1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
nellymoser.c
nellymoser.h
nellymoserdec.c Move sine windows to a separate file 2011-03-20 13:25:19 +00:00
nellymoserenc.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
noise_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
nuv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
opt.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
opt.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
options.c Merge remote branch 'qatar/master' 2011-04-08 02:50:13 +02:00
pamenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
parser.c Merge remote branch 'qatar/master' 2011-04-07 03:32:26 +02:00
parser.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pcm_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pcm_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pcm-mpeg.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pcm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pcx.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pcxenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pgssubdec.c Fix incorrect colors when decoding Blu-ray subtitles 2011-03-25 19:00:55 +01:00
pictordec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
png.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
png.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pngdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pngenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pnm_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pnm.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pnm.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pnmdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
pnmenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
psymodel.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
psymodel.h Merge remote branch 'qatar/master' 2011-04-06 02:59:49 +02:00
pthread.c Merge remote-tracking branch 'ffmpeg-mt/master' 2011-04-08 03:03:03 +02:00
ptx.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
put_bits.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qcelpdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qcelpdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qdm2_tablegen.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qdm2_tablegen.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qdm2.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
qdm2data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qdrw.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qpeg.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qtrle.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
qtrleenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
r210dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ra144.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ra144.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ra144dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ra144enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ra288.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ra288.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rangecoder.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rangecoder.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ratecontrol.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ratecontrol.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
raw.c rawvideo codec: support PIX_FMT_BGR48LE and PIX_FMT_BGR48BE 2011-03-26 13:24:43 +11:00
raw.h Make find_pix_fmt() non static 2011-04-03 16:40:12 +02:00
rawdec.c Make find_pix_fmt() non static 2011-04-03 16:40:12 +02:00
rawenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rdft.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
rdft.h Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
rectangle.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
remove_extradata_bsf.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
resample2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
resample.c Fix ticket21, temporary audio array was too small. 2011-04-09 01:00:44 +02:00
rl2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rl.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rle.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rle.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
roqaudioenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
roqvideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
roqvideo.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
roqvideodec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
roqvideoenc.c Merge remote-tracking branch 'newdev/master' 2011-03-23 02:42:56 +01:00
rpza.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rtjpeg.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rtjpeg.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv10.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv10enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv20enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv30.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv30data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv30dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv34.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
rv34.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv34data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv34vlc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv40.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv40data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv40dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
rv40vlc2.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
s3tc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
s3tc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sbr.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sgi.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sgidec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sgienc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
shorten.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
simple_idct.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
simple_idct.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sinewin_tablegen.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
sinewin_tablegen.h Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
sinewin.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
sinewin.h Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
sipr16k.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sipr16kdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sipr.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sipr.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
siprdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
smacker.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
smc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
snow.c dsputil: allow to skip drawing of top/bottom edges. 2011-03-26 17:45:38 -04:00
snow.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sonic.c Remove Sonic experimental audio codec 2011-03-19 15:24:31 +00:00
sp5x.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
sp5xdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
srtdec.c srtdec: make sure we don't write past the end of buffer 2011-03-25 01:02:53 +01:00
srtenc.c add SubRip encoder 2011-03-28 00:16:44 +02:00
sunrast.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq1_cb.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq1_vlc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq1.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq1dec.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
svq1enc_cb.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq1enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
svq3.c Merge remote branch 'qatar/master' 2011-04-03 02:28:01 +02:00
synth_filter.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
synth_filter.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tableprint.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tableprint.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
targa.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
targa.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
targaenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
thread.h Remove unnecessary parameter from ff_thread_init() and fix behavior 2011-04-05 16:53:26 +02:00
tiertexseqv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tiff.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tiff.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tiffenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tmv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
truemotion1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
truemotion1data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
truemotion2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
truespeech_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
truespeech.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tscc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
tta.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
twinvq_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
twinvq.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
txd.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ulti_cb.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ulti.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
unary.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
utils.c Merge remote branch 'qatar/master' 2011-04-06 02:59:49 +02:00
v210dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
v210enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
v210x.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vaapi_h264.c vaapi: filter out DELAYED_PIC_REF flag to determine field. 2011-03-29 09:55:07 +02:00
vaapi_internal.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vaapi_mpeg2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vaapi_mpeg4.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vaapi_vc1.c vaapi: allow build against older VA-API 0.31. 2011-03-30 16:15:29 +02:00
vaapi.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vaapi.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vb.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vc1_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vc1.c Fix VC-1 playback with pulldown content 2011-04-04 15:35:03 +02:00
vc1.h Merge remote-tracking branch 'newdev/master' 2011-03-23 02:42:56 +01:00
vc1acdata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vc1data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vc1data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vc1dec.c Communicate pulldown flags to clients to fix VC-1 playback with pulldown content 2011-04-04 15:35:03 +02:00
vc1dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vc1dsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vcr1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vdpau_internal.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vdpau.c Allow selecting VDPAU, XvMC via get_format for MPEG-2 2011-04-01 19:13:24 +02:00
vdpau.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
version.h lavc: add a FF_API_REQUEST_CHANNELS deprecation macro 2011-04-07 18:11:24 +02:00
vmdav.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vmnc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vorbis_data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vorbis_dec.c Float output for libavcodec Vorbis decoder 2011-04-03 22:52:58 +02:00
vorbis_enc_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vorbis_enc.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
vorbis.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vorbis.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp3_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp3.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp3data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp3dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp5.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp5data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp6.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp6data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp6dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp8_parser.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp8.c Merge remote-tracking branch 'newdev/master' 2011-03-26 03:06:30 +01:00
vp8.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp8data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp8dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp8dsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56data.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56dsp.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56dsp.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vp56rac.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
vqavideo.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
w32thread.c Remove unnecessary parameter from ff_thread_init() and fix behavior 2011-04-05 16:53:26 +02:00
wavpack.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wma.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
wma.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmadata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmadec.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
wmaenc.c Improve channel count and bitrate error handling in wmav* encode_init() 2011-03-24 15:00:28 +01:00
wmaprodata.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmaprodec.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
wmavoice_data.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmavoice.c Merge remote-tracking branch 'newdev/master' 2011-03-21 03:33:28 +01:00
wmv2.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmv2.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmv2dec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wmv2enc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
wnv1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
ws-snd1.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xan.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xiph.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xiph.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xl.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xsubdec.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xsubenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xvmc_internal.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xvmc.h Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
xxan.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
yop.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
zmbv.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00
zmbvenc.c Replace FFmpeg with Libav in licence headers 2011-03-19 13:33:20 +00:00