summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* 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
* Make sure that eac3_decoder only gets enabled when CONFIG_EAC3_DECODER is set.Diego Biurrun2009-07-23
| | | | Originally committed as revision 19500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless #include <unistd.h> from many filesMåns Rullgård2009-07-22
| | | | Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reorder some tables/lines to make future diffs smaller.Diego Biurrun2009-07-22
| | | | Originally committed as revision 19498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include just the required stdint.h instead of libavutil/common.h.Diego Biurrun2009-07-22
| | | | Originally committed as revision 19497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: small typo fixesDiego Biurrun2009-07-22
| | | | Originally committed as revision 19496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent/prettyprint after last commitDiego Biurrun2009-07-22
| | | | Originally committed as revision 19495 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
* Do not redundantly check for both CONFIG_THEORA_DECODER and CONFIG_VP3_DECODER.Diego Biurrun2009-07-22
| | | | | | The Theora decoder depends on the VP3 decoder. Originally committed as revision 19492 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
* Add missing stdint.h #include to fix 'make checkheaders'.Diego Biurrun2009-07-22
| | | | Originally committed as revision 19484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert unintended portion of last commit. (Setting the default coder toAlex Converse2009-07-22
| | | | | | twoloop.) Originally committed as revision 19481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Be sure to increment our position in the coefficient array when skipping a zeroAlex Converse2009-07-22
| | | | | | band in the twoloop scalefactor search. Originally committed as revision 19480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make E-AC-3 decoder depend on the AC-3 decoder.Diego Biurrun2009-07-21
| | | | | | It is impossible to build E-AC-3 without AC-3. Originally committed as revision 19477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: handle VFP register arguments in ff_vector_fmul_window_neon()Måns Rullgård2009-07-20
| | | | Originally committed as revision 19475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: check for VFP register argumentsMåns Rullgård2009-07-20
| | | | Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove an unused field from the BandCodingPath struct.Alex Converse2009-07-20
| | | | Originally committed as revision 19473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Actually use all the codebooks we are iterating over in the two-loop ↵Alex Converse2009-07-20
| | | | | | scalefactor search. Originally committed as revision 19472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an integer overflow in the AAC encoder.Alex Converse2009-07-20
| | | | Originally committed as revision 19470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VP6A/VP6F decoders depend on the VP6 decoder.Diego Biurrun2009-07-20
| | | | | | They share so much code that enabling one without the other is pointless. Originally committed as revision 19468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove two more lines related to the WMV3 decoder.Diego Biurrun2009-07-19
| | | | | | They are now enabled by the VC-1 decoder. Originally committed as revision 19467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV3 decoders depend on their VC-1 counterparts.Diego Biurrun2009-07-19
| | | | | | They share so much code that enabling one without the other is pointless. Originally committed as revision 19466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace pow(x, 0.75) with sqrtf(x * sqrtf(x)) for a 33% speedup.Alex Converse2009-07-17
| | | | Originally committed as revision 19459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dead code removal in the AAC encoder.Alex Converse2009-07-17
| | | | Originally committed as revision 19457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Icc 11.1 still does not align the stack pointer, disable some x264 functions.Carl Eugen Hoyos2009-07-17
| | | | Originally committed as revision 19454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add iirfilter to the TESTPROGS variable (and target)Alex Converse2009-07-16
| | | | Originally committed as revision 19448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* When calculating AAC quantized band cost, don't leave garbage in the bit countAlex Converse2009-07-16
| | | | | | for the 0 codebook. Originally committed as revision 19444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IIR filter test program.Alex Converse2009-07-16
| | | | Originally committed as revision 19443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move some code blocks to reduce the number of #ifdefs.Diego Biurrun2009-07-16
| | | | Originally committed as revision 19442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set subtitle type in DVB subtitle decoder.Janne Grunau2009-07-14
| | | | | | Patch by Janne Grunau <j?nne-f?mpeg@jannau?net>. Originally committed as revision 19432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use cutoff frequency to adjust bandwidth in the generic psymodel preprocess.Alex Converse2009-07-14
| | | | Originally committed as revision 19429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix "warning: assignment discards qualifiers from pointer target type"David Conrad2009-07-13
| | | | Originally committed as revision 19424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak in libtheora encoderArt Clarke2009-07-13
| | | | | | Patch by Art Clarke [aclark , xuggle . com] Originally committed as revision 19423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VAAPI/VDPAU variant of decoder foo depend on decoder foo.Diego Biurrun2009-07-12
| | | | | | | | The VAAPI/VDPAU variants of foo require almost all of the code of foo. Thus it makes little sense to enable just the accelerated variant. This allows refactoring some object dependencies in the Makefiles. Originally committed as revision 19403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after last commitAlex Converse2009-07-10
| | | | Originally committed as revision 19400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore subsequent channel configurations after the first in an AAC file. TheAlex Converse2009-07-10
| | | | | | | current code doesn't handle them properly, and they are a dubious construction at best. Originally committed as revision 19399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark iir filter init and free functions av_cold.Alex Converse2009-07-10
| | | | Originally committed as revision 19398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix "iirfilter.c:55: warning: unused variable ‘size’"Alex Converse2009-07-10
| | | | Originally committed as revision 19397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Eliminate use of complex.h from iirfilter.cAlex Converse2009-07-10
| | | | Originally committed as revision 19396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change fminf/fmaxf to FFMIN/FFMAX to fix the build on broken operating systems.Alex Converse2009-07-09
| | | | Originally committed as revision 19391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix declarations of complex numbersMåns Rullgård2009-07-09
| | | | | | | Complex numbers must be declared using a base type of float, double, or long double. Originally committed as revision 19390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitAlex Converse2009-07-08
| | | | Originally committed as revision 19382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent AAC frame size overflows.Alex Converse2009-07-08
| | | | Originally committed as revision 19381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Refactor windowing and early psy from bitstream writing parts of the AAC ↵Alex Converse2009-07-08
| | | | | | encoder. Originally committed as revision 19380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Turn on AAC rate control.Alex Converse2009-07-08
| | | | Originally committed as revision 19379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove unnecessary {} around if/for blocks;Diego Biurrun2009-07-08
| | | | | | move statements after if/for to the next line. Originally committed as revision 19378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: prettyprinting, K&R style, break overly long linesDiego Biurrun2009-07-08
| | | | Originally committed as revision 19377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Pretty print the AAC encoder.Alex Converse2009-07-08
| | | | Originally committed as revision 19376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the AAC encoder from SoC svn. It is still considered experimental.Alex Converse2009-07-08
| | | | Originally committed as revision 19375 to svn://svn.ffmpeg.org/ffmpeg/trunk