summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
Commit message (Collapse)AuthorAge
* Makefile: Fix dependencies of componentsMartin Storsjö2010-12-22
| | | | | | | | | This fixes compilation with --disable-everything --enable-<component>, for all encoders, decoders, muxers, demuxers, parsers, protocols, bsfs, indevs, outdevs and filters at the moment. (All those that work without any external dependencies at least.) Originally committed as revision 26076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix more matroska/webm muxer dependenciesMartin Storsjö2010-12-21
| | | | | | | This fixes building with --disable-everything --enable-muxer=matroska and/or --enable-muxer=webm Originally committed as revision 26067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AMR-WB decoder, written as part of Google Summer of Code 2010 by MarceloRonald S. Bultje2010-12-18
| | | | | | | Galvão Póvoa <marspeoplester gmail com>, mentored by Robert Swain <robert dot swain gmail com>. Originally committed as revision 26051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a FLAC parser.Michael Chinen2010-12-07
| | | | | | | | | Seek test reference updated because FLAC seeking now works properly. Fixes roundup issue 1150. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Order matters, fix test files linking.Stefano Sabatini2010-11-19
| | | | Originally committed as revision 25766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ASS encoder and decoderAurelien Jacobs2010-11-13
| | | | Originally committed as revision 25746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MJPEG/AVI1 to JPEG/JFIF bitstream filter.Nicolas George2010-11-11
| | | | Originally committed as revision 25721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add single stream LATM/LOAS decoderJanne Grunau2010-11-02
| | | | | | | The decoder is just a wrapper around the AAC decoder. based on patch by Paul Kendall { paul <ät> kcbbs gen nz } Originally committed as revision 25642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix GSM decoding: regular GSM and MSGSM do not use the sameReimar Döffinger2010-10-02
| | | | | | | | bitstream endianness, so they cannot reuse the same code without a lot of function call overhead. Thus use templating to compile two different binaries. Originally committed as revision 25312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a G.722 encoderMartin Storsjö2010-09-23
| | | | Originally committed as revision 25164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add R10k decoder.Zhou Zongyi2010-09-13
| | | | | | | Original patch by Zhou Zongyi, zhouzy A os pku edu cn, resubmitted by James Darnley, james.darnley gmail, changes by me. Originally committed as revision 25115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add G.722 ADPCM audio decoderMartin Storsjö2010-09-09
| | | | Originally committed as revision 25086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move mm_support() from libavcodec to libavutil, make it a publicStefano Sabatini2010-09-08
| | | | | | function and rename it to av_get_cpu_flags(). Originally committed as revision 25076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the dependencies of the RTP muxerMartin Storsjö2010-09-03
| | | | | | | This fixes building with --disable-everything --enable-muxer=rtp, closing issue 2159. Originally committed as revision 25036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enabling codec and muxer by registering it in allcodec.c and allformat.c and ↵Tobias Bindhammer2010-08-23
| | | | | | adding files to the build-system Originally committed as revision 24878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split h264dsp and h264pred in configure.Jason Garrett-Glaser2010-08-07
| | | | | | | | | Many H.264 derivatives, like RV40 and VP8, use the H.264 prediction functions but not the weight/loopfilter functions. This should reduce the size of builds with one of these derivatives but without H.264 decoding itself. Originally committed as revision 24741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a CONFIG_ variable for generic Huffman routines.Diego Biurrun2010-08-06
| | | | Originally committed as revision 24715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP5/6/8: eliminate CABAC dependencyJason Garrett-Glaser2010-08-04
| | | | | | | Create a custom table for VP5/6/8's renorm to avoid depending on H.264's. Saves one instruction in the arithmetic decoder as well. Originally committed as revision 24701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix VP8 decoder dependenciesMartin Storsjö2010-08-04
| | | | | | | | | | This reverts rev 24674 - the VP8 decoder actually depends on cabac.o. vp8.c includes vp56.h, which includes cabac.h, which has inline functions that reference tables from cabac.c. This fixes compilation with --disable-everything --enable-decoder=vp8. Originally committed as revision 24692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The VP8 decoder does not depend on cabac.o.Diego Biurrun2010-08-02
| | | | Originally committed as revision 24674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The VP8 decoder does not depend on vp56.o and vp56data.o.Diego Biurrun2010-08-02
| | | | Originally committed as revision 24673 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant h264pred.o from VP8 objects list.Diego Biurrun2010-08-02
| | | | | | It is already selected through the H264DSP dependency of VP8. Originally committed as revision 24672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add Chinese AVS encoding via external library libxavsStefan Gehrer2010-07-27
| | | | Originally committed as revision 24533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()Stefano Sabatini2010-07-26
| | | | | | | | | | | in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_inverse stay with libavutil, and optional copy it to libavcodec.Diego Pettenò2010-07-21
| | | | | | | | | | | | | | | | | | | The ff_inverse table is used by FASTDIV macro, defined in libavutil, but up to now the table was defined only in libavcodec. After this change, the main copy of ff_inverse is part of libavutil (just like FASTDIV), but if CONFIG_SMALL is unset, then a different copy is made available to libavcodec, to avoid the performance penalty of using an external look up table. Dynamic linking works, because the libraries are linked with -Bsymbolic, so the local copy of the symbol has priority over the external; static linking works because the table is on a standalone object file in both libraries, so the linker is able to discard one of the two. Tested on Linux/x86-64 and Mac OS X/x86-64. Originally committed as revision 24383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ASCII/ANSI art decoderPeter Ross2010-07-18
| | | | Originally committed as revision 24299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the ADTS header decoder off of the ADTS parser.Alex Converse2010-07-12
| | | | | | | The AAC decoder and ADTS-to-ASC BSF both require the header decoder but not full parsing capabilities. Originally committed as revision 24217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add native GSM 06.10 audio decoder.Reimar Döffinger2010-07-10
| | | | Originally committed as revision 24158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow using libxvid RC without enabling encoding wrapperMåns Rullgård2010-07-09
| | | | Originally committed as revision 24137 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build with hardcoded tablesMåns Rullgård2010-07-04
| | | | | | | | The recently added dummy rule for missing headers took precedence over the tablegen rules. Listing the generated headers explicitly overrides this. A cleaner solution would be preferable. Originally committed as revision 24046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tablegen: the executable depends on tablegen headers as wellDiego Pettenò2010-07-02
| | | | | | | Make sure that the *_tablegen.h header is listed in the dependencies, but filter it out in the compile line. Originally committed as revision 23963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix dependencies of vp5 and vp6 decoders after r23915Aurelien Jacobs2010-07-01
| | | | | | they now also depends on cabac.o for ff_h264_norm_shift Originally committed as revision 23937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renormalize VP5/6/7/8 range coder without loopStefan Gehrer2010-06-30
| | | | Originally committed as revision 23915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix libvorbis encoding with more than 2 channelsJames Darnley2010-06-27
| | | | | | | | Fixes issue 1325. Patch by James Darnley, james dot darnley at gmail Originally committed as revision 23818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix alphabetization of the CONFIG_HARDCODED_TABLES Makefile section.Alex Converse2010-06-23
| | | | Originally committed as revision 23741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aactab: Tablegenify ff_aac_pow2sf_tab.Alex Converse2010-06-23
| | | | Originally committed as revision 23740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove OS/2 threads supportMåns Rullgård2010-06-23
| | | | | | | OS/2 SMP support is rare, and a pthreads library exists. No need to keep this code. Originally committed as revision 23731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove beosthreads supportMåns Rullgård2010-06-22
| | | | | | | Relevant BeOS variants support pthreads, so there is no need to maintain the beos-native threads interface. Originally committed as revision 23729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move Parametric Stereo related ps* files to aacps*.Alex Converse2010-06-22
| | | | Originally committed as revision 23720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Native VP8 decoder.David Conrad2010-06-22
| | | | | | Patch by David Conrad <lessen42 gmail com> and myself. Originally committed as revision 23719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove libfaad wrapperMåns Rullgård2010-06-20
| | | | Originally committed as revision 23653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add HE-AAC v2 support to the AAC decoder.Alex Converse2010-06-19
| | | | Originally committed as revision 23647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MPEG-2 DXVA2 implementationLaurent Aimar2010-06-18
| | | | | | | | It allows VLD MPEG-2 decoding using DXVA2 (GPU assisted decoding API under VISTA and Windows 7). It is implemented by using AVHWAccel API. Originally committed as revision 23644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RealAudio 14.4k encoder.Francesco Lavra2010-06-11
| | | | | | Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split ra144.c in common code (to be shared with the future encoder) andFrancesco Lavra2010-06-11
| | | | | | | | decoder. Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pictor/PC Paint decoderPeter Ross2010-06-08
| | | | Originally committed as revision 23532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, there is no aac.c any more, so no need for a dependency.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec also depends on cbrt_tables.h for hardcoded-tables.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename aac.c to aacdec.c.Alex Converse2010-06-05
| | | | Originally committed as revision 23489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move eval.c and eval.h from libavcodec to libavutil, and make the evalStefano Sabatini2010-06-05
| | | | | | API public. Originally committed as revision 23485 to svn://svn.ffmpeg.org/ffmpeg/trunk