Diego Biurrun
10ac361827
Do not duplicate AAN DCT tables in dct-test.c.
...
Originally committed as revision 15948 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
2d70cc38c5
Add missing '-test' in name of imgresample test.
...
Originally committed as revision 15947 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
2a023c36ea
Only build the imgresample test if the old scaler was enabled.
...
Originally committed as revision 15941 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
e8ed9b7a73
Automatically check the dependencies for the AAN DCT tables.
...
This also makes the AAN DCT tables individually selectable.
Originally committed as revision 15940 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
8b22017f38
Move aanscales tables to their own file; fixes compilation without encoders.
...
based on a patch by David Geldreich, david.geldreich free fr
Originally committed as revision 15939 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
d270cb4ae4
ARM: move dct_unquantize_h263_*_armv5te asm to separate file
...
Originally committed as revision 15917 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
d1eb20e878
Get rid of last ifdef HAVE_MMX. Instead, all MMX-specific objects are gathered
...
into a separate variable which is added to OBJS if MMX is enabled.
Originally committed as revision 15898 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
f0e602351e
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
...
Originally committed as revision 15896 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
0d2d0f97a5
Move FFT-specific MMX optimizations out of the 'ifdef HAVE_MMX' block.
...
The MMX dependency is already handled by configure.
Originally committed as revision 15895 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
d785a67066
cosmetics: indentation
...
Originally committed as revision 15894 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
39fdda2bf1
Use standard OBJS-$(HAVE_MMX) trick for MMX objects instead
...
of surrounding them by an ifdef.
Originally committed as revision 15893 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
45e730c5e5
cosmetics: Add a few more explanatory comments to the object sections.
...
Originally committed as revision 15876 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
a261890432
cosmetics: Sort processor-specific object lines into alphabetical order.
...
Originally committed as revision 15875 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
40b509b36b
Add a Makefile variable for the old scaler that gets enabled when the new
...
scaler is disabled to get rid of a Makefile ifdef.
Originally committed as revision 15867 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
767d3e7bf7
Revert previous commit: the libavcodec/i386/fft_*.o objects depend on
...
libavcodec/i386/fft_mmx.o, which depends on yasm.
Originally committed as revision 15866 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
ba01d867f5
Only the yasm-dependent objects should be enabled by a yasm conditional.
...
Originally committed as revision 15865 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
c6786edb3c
cosmetics: Group ppc-specific objects together.
...
Originally committed as revision 15863 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
607ffa34ba
cosmetics: Group ARM objects sections together.
...
Originally committed as revision 15856 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
e9e74e0ad5
cosmetics: Reorder processor-specific entries alphabetically.
...
Originally committed as revision 15855 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Peter Ross
28245435d9
Electronic Arts TGQ/TQI/MAD IDCT algorithm
...
Originally committed as revision 15790 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Peter Ross
42b30357be
Electronic Arts TGQ video decoder
...
Originally committed as revision 15789 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Vitor Sessak
08c433972e
Use ff_dot_productf() in ra288.c
...
Originally committed as revision 15757 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
83ad74e708
ARM: move VFP DSP functions to dsputils_vfp.S
...
Originally committed as revision 15727 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
ede725104b
cosmetic: align backslashes in makefiles
...
Originally committed as revision 15717 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
864ac5d648
Merge OBJS-$(FOO) lists with same FOO
...
Originally committed as revision 15716 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
c87348a922
Use OBJS variable for all object files
...
There is no longer any need to differentiate the object files
by source type.
Originally committed as revision 15708 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
4f03499329
Add CONFIG_GOLOMB and auto-select when needed
...
Originally committed as revision 15706 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
47a158cb8b
Auto-enable CONFIG_MDCT when needed
...
Originally committed as revision 15705 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
6e587953b9
cosmetics: Change the order of mlp parser objects to be consistent.
...
Originally committed as revision 15697 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
a79d1aed48
Move declaration of mlp decoder dependency on mlp parser to the Makefile
...
where all other such dependencies are declared.
Originally committed as revision 15696 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
b6bb00b07d
Build MMX/SSE FFT only if CONFIG_FFT is set
...
Originally committed as revision 15692 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
1848f7d9f9
Auto-enable CONFIG_FFT for codecs that need it
...
Originally committed as revision 15686 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kenan Gillet
4599d22c0c
Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.
...
patch by Kenan Gillet, kenan.gillet gmail com
Originally committed as revision 15680 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
David Conrad
ae14f311f8
Speex decoding via libspeex
...
Originally committed as revision 15676 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Baptiste Coudurier
da396bf84e
dnxhd parser
...
Originally committed as revision 15673 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
d8d12c1594
Remove obsolete liba52 wrapper code.
...
Originally committed as revision 15571 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
fca506dfb6
Add RLE4 and RLE8 decoding support for BMP
...
Originally committed as revision 15390 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
44aa9771c9
Factorize out code used for MS RLE format decoding in different decoders.
...
Originally committed as revision 15356 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
406ab5cc97
add a separate line in Makefile for E-AC-3 decoder and only compile it when
...
GPL is enabled. fixes building without GPL or with liba52.
Originally committed as revision 15151 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Bartlomiej Wolowiec
755ba88640
Remaining parts of Nellymoser encoder
...
Originally committed as revision 15138 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
1f6a594de4
turn on E-AC-3 decoding support and update the Changelog
...
Originally committed as revision 15103 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
c5b930e674
1000l to me. committed to wrong repo. revert last commit.
...
Originally committed as revision 14953 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
e23e4de3ae
cosmetics: rename some functions from *get_* to *decode_*
...
Originally committed as revision 14952 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Robert Swain
7d8f3de4a8
Last hunk of the AAC decoder code to be OKed and build system and documentation
...
alterations as appropriate
Originally committed as revision 14873 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
0da49fca79
Untangle mpeg12.c and mdec.c so that mdec.c can be compiled separately.
...
Originally committed as revision 14851 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Jai Menon
e13894e80e
alacenc: last few hunks approved by michael
...
Originally committed as revision 14845 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ramiro Polla
c50da3ad6c
flacenc, lpc: Move LPC code from flacenc.c to new lpc.[ch] files.
...
Originally committed as revision 14790 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Loren Merritt
ebceaa1cd5
gcc chokes on the 7 registers needed for float_to_int16_interleave6 (even inside HAVE_7REGS), so write it in yasm
...
Originally committed as revision 14749 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ramiro Polla
ce15710f55
mlp: Split common code from parser and decoder to be used by encoder.
...
Originally committed as revision 14733 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Loren Merritt
49c0dd754c
indent
...
Originally committed as revision 14699 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago