Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -8/+7 |
| | | | | It's more readable and less prone to breakage. | ||||
* | doxygen: do not include license boilerplate in Doxygen documentation | Diego Biurrun | 2011-07-15 | 1 | -5/+7 |
| | |||||
* | Replace usages of av_get_bits_per_sample_fmt() with av_get_bytes_per_sample(). | Justin Ruggles | 2011-06-20 | 1 | -1/+1 |
| | | | | av_get_bits_per_sample_fmt() is deprecated. | ||||
* | vorbisdec: Restore mistakenly removed debug output. | Diego Biurrun | 2011-06-07 | 1 | -0/+4 |
| | |||||
* | vorbis: Remove non-compiling debug statement. | Diego Biurrun | 2011-06-03 | 1 | -3/+0 |
| | |||||
* | vorbis: Remove pointless DEBUG #ifdef around debug output macros. | Diego Biurrun | 2011-06-03 | 1 | -6/+0 |
| | |||||
* | Replace #ifdef + av_log() combinations by av_dlog(). | Diego Biurrun | 2011-06-03 | 1 | -8/+5 |
| | |||||
* | Replace custom debug output functions by av_dlog(). | Diego Biurrun | 2011-06-03 | 1 | -93/+101 |
| | |||||
* | Add floating-point sample format support to the ac3, eac3, dca, aac, and vorbis | Justin Ruggles | 2011-05-18 | 1 | -5/+18 |
| | | | | | | decoders. Based on patches by clsid2 in ffdshow-tryout. | ||||
* | Replace int_fast integer types with their sized standard posix counterparts. | Diego Biurrun | 2011-05-12 | 1 | -75/+78 |
| | | | | | The _fast integer types provide no realworld benefits, but may introduce portability issues and are just plain ugly. | ||||
* | vorbis: Replace sized int_fast integer types with plain int/unsigned. | Diego Biurrun | 2011-04-29 | 1 | -119/+108 |
| | | | | | | int/unsigned is the natural memory access type for CPUs, using sized types for temporary variables, counters and similar just increases code size and can possibly cause a slowdown. | ||||
* | vorbisdec: Replace some sizeof(type) by sizeof(*variable). | Diego Biurrun | 2011-04-29 | 1 | -17/+24 |
| | |||||
* | vorbisdec: Rename silly "class_" variable to plain "class". | Diego Biurrun | 2011-04-27 | 1 | -7/+7 |
| | |||||
* | vorbisdec: Employ proper printf format specifiers for uint_fast32_t. | Diego Biurrun | 2011-04-25 | 1 | -1/+1 |
| | | | | | libavcodec/vorbisdec.c:543: warning: format ‘%d’ expects type ‘int’, but argument 4 has type ‘uint_fast32_t’ libavcodec/vorbisdec.c:543: warning: format ‘%d’ expects type ‘int’, but argument 5 has type ‘uint_fast32_t’ | ||||
* | vorbis: Rename decoder/encoder files to follow general file naming scheme. | Diego Biurrun | 2011-04-23 | 1 | -0/+1668 |