summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
Commit message (Collapse)AuthorAge
* Add MPEG-4 Audio Lossless Coding (ALS) decoder.Thilo Borgmann2009-11-11
| | | | | | Patch by Thilo Borgmann, thilo D borgmann A googlemail Originally committed as revision 20517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add generic rules for building helpers with HOSTCCMåns Rullgård2009-10-29
| | | | Originally committed as revision 20412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Makefile cosmeticsMåns Rullgård2009-10-28
| | | | Originally committed as revision 20406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate mpegaudio tables only when CONFIG_HARDCODED_TABLES is setMåns Rullgård2009-10-28
| | | | | | | Having mpegaudiodec.o unconditionally depend on mpegaudio_tables.h forces the latter to be generated even when it will not be used. Originally committed as revision 20405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dependency: generated table is needed to create the mpegaudiodec.o file, ↵Reimar Döffinger2009-10-28
| | | | | | not the .c one. Originally committed as revision 20403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for hardcoding the mpegaudiodec tables.Reimar Döffinger2009-10-28
| | | | | | Reduces .bss size by about 194 kB. Originally committed as revision 20400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split synth filter out of dca.c.Michael Niedermayer2009-10-28
| | | | Originally committed as revision 20396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split PAM encoder off into its own file.Diego Biurrun2009-10-28
| | | | Originally committed as revision 20395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the decoders from pnmen.c off into their own file.Diego Biurrun2009-10-28
| | | | Originally committed as revision 20394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The encoders in pnmenc.c now depend on the init/end functions in pnm.c.Diego Biurrun2009-10-28
| | | | Originally committed as revision 20393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compile LPC code when CONFIG_LPC is set.Diego Biurrun2009-10-23
| | | | | | | The codec dependencies on LPC are already described in configure, so there is no need to duplicate this in the Makefile. Originally committed as revision 20358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sin_tables.c is a generated file, so add it to CLEANFILESReimar Döffinger2009-10-20
| | | | Originally committed as revision 20332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing dependency of the S/PDIF muxer on the AAC parser.Diego Biurrun2009-10-19
| | | | | | Fixes build with --disable-parsers. Originally committed as revision 20328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CONFIG_LPC to the build system for lpc dsputil functions. fixes buildJustin Ruggles2009-10-18
| | | | | | problems when lpc.c is not compiled. Originally committed as revision 20285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo that mistakenly slipped into previous commit:Onur Küçük2009-10-18
| | | | | | | CONFIG_MPEG_XVMC_DECODER was changed to CONFIG_MPEGVIDEO_XVMC_DECODER. patch by Onur Küçük, onur delipenguen net Originally committed as revision 20278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break overly long lines.Diego Biurrun2009-10-18
| | | | Originally committed as revision 20276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move autocorrelation function from flacenc.c to lpc.c. Also rename theJustin Ruggles2009-10-17
| | | | | | | | corresponding dsputil functions and remove their dependency on the FLAC encoder. Fixes Issue1486. Originally committed as revision 20266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split parts of dvdata.h into dvdata.c, this ensures that things likeReimar Döffinger2009-10-16
| | | | | | | | work_chunks_* and dv_idct_factor_* variables appear only once in the binary instead of 3 times. Saves 3264 bytes in .rodata and 312416 bytes in .bss on x86_64. Originally committed as revision 20246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for hardcoded ff_sin_* tables.Reimar Döffinger2009-10-15
| | | | Originally committed as revision 20244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use hardcoded instead of runtime-calculated ff_cos_* tables ifReimar Döffinger2009-10-14
| | | | | | | --enable-hardcoded-tables was used. Due to the size, the code for the tables is generated at compile time. Originally committed as revision 20232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decoder for "forward uncompressed".Reimar Döffinger2009-10-13
| | | | | | Fixes issue 1467. Originally committed as revision 20226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: ARMv6 optimised add_pixels_clamped()Måns Rullgård2009-10-06
| | | | Originally committed as revision 20184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: clean up file/function naming conventionsMåns Rullgård2009-10-04
| | | | Originally committed as revision 20164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: clean up dsputil initialisationMåns Rullgård2009-10-04
| | | | | | | - Move v5 and v6 initialisation to separate files. - Move NEON IDCT selection to ff_dsputil_init_neon() Originally committed as revision 20163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hook up the MD studio demuxer and Atrac1 decoder.Benjamin Larsson2009-09-22
| | | | Originally committed as revision 19969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move per-arch fft init bits into the corresponding subdirsMåns Rullgård2009-09-15
| | | | Originally committed as revision 19864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised FFT and MDCTMåns Rullgård2009-09-10
| | | | | | | | Vorbis and AC3 ~3x faster. Parts by Naotoshi Nojiri, naonoj gmail Originally committed as revision 19806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out common routines needed in the atrac1 decoder from atrac3.c to atrac.c.Benjamin Larsson2009-09-08
| | | | Originally committed as revision 19796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing wmapro decoder partsSascha Sommer2009-09-02
| | | | Originally committed as revision 19752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decoder for LPCM as used in Bluray discs.Christian Schmidt2009-08-26
| | | | | | Patch by Christian Schmidt, schmidt digadd de Originally committed as revision 19722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Bluray Subtitle SupportStephen Backway2009-08-25
| | | | | | Patch by Stephen Backway, stev391 A exemail D com D au Originally committed as revision 19699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip headers requiring external libs not present in checkheadersMåns Rullgård2009-08-23
| | | | Originally committed as revision 19685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TwinVQ decoderVitor Sessak2009-08-23
| | | | Originally committed as revision 19682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV2 encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-06
| | | | Originally committed as revision 19601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MPEG-4 encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-06
| | | | Originally committed as revision 19600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV1 encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-06
| | | | Originally committed as revision 19599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make FLV encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-05
| | | | Originally committed as revision 19597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make H.263+ (H263P) encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-05
| | | | Originally committed as revision 19595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the dependencies of the MSMPEG4v1/MSMPEG4v2/MSMPEG4v3 encoders on theDiego Biurrun2009-08-05
| | | | | | H.263 encoder in configure. Originally committed as revision 19594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the dependency of RV10/RV20 encoder on the H.263 encoder in configure.Diego Biurrun2009-08-05
| | | | Originally committed as revision 19592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split RV10 encoder off into its own file.Diego Biurrun2009-08-03
| | | | Originally committed as revision 19579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split RV20 encoder into its own file.Diego Biurrun2009-08-03
| | | | Originally committed as revision 19578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Expose QCELP's floating-point LSP-to-LPC functionColin McQuillan2009-08-03
| | | | | | | | | | qcelp_lsp exported a single function, ff_acelp_lspd2lpc, which was not specific to qcelp. It can be kept with its fixed-point version ff_acelp_lsp2lpc in lpc.c. Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make XVMC mpegvideo decoder depend on mpegvideo decoder.Diego Biurrun2009-08-02
| | | | | | It makes no sense to enable the former without the latter. Originally committed as revision 19565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary mpeg12data.o entries from OBJS- variables.Diego Biurrun2009-07-26
| | | | Originally committed as revision 19511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated mpeg12data.o entries.Diego Biurrun2009-07-26
| | | | Originally committed as revision 19510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix various compilation dependenciesAurelien Jacobs2009-07-24
| | | | Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* refactoring: properly separate AC-3 and E-AC-3 codeDiego Biurrun2009-07-23
| | | | Originally committed as revision 19501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only compile in NEON optimizations for H.264 when the H.264 decoder is enabled.Diego Biurrun2009-07-22
| | | | Originally committed as revision 19494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Theora decoder depend on the VP3 decoder.Diego Biurrun2009-07-22
| | | | | | Practically all the code is shared. Originally committed as revision 19491 to svn://svn.ffmpeg.org/ffmpeg/trunk