| Commit message (Expand) | Author | Age | Files | Lines |
* | fft: remove inline wrappers for function pointers | Mans Rullgard | 2011-03-19 | 1 | -2/+4 |
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
* | vorbis dec: Remove obsolete comment | Alexander Strasser | 2011-02-10 | 1 | -1/+0 |
* | vorbis dec: cosmetics: Indent consistently | Alexander Strasser | 2011-02-10 | 1 | -14/+14 |
* | vorbis dec: cosmetics: Indent CPP cond properly | Alexander Strasser | 2011-02-10 | 1 | -2/+2 |
* | vorbis dec: Delete useless scopes, and reindent after scope deletion | Alexander Strasser | 2011-02-10 | 1 | -15/+10 |
* | Separate format conversion DSP functions from DSPContext. | Justin Ruggles | 2011-02-02 | 1 | -1/+5 |
* | Remove unneeded add bias from 3 functions. | Justin Ruggles | 2011-01-31 | 1 | -3/+3 |
* | Remove the add bias hack for the C version of DSPContext.float_to_int16_*(). | Justin Ruggles | 2011-01-28 | 1 | -29/+9 |
* | Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf. | Diego Elio Pettenò | 2011-01-26 | 1 | -1/+1 |
* | Change DSPContext.vector_fmul() from dst=dst*src to dest=src0*src1. | Justin Ruggles | 2011-01-22 | 1 | -1/+1 |
* | Second hunk from secrity fix from google. | Frank Barchard | 2011-01-15 | 1 | -1/+1 |
* | Check rangebits to avoid a possible crash. | Frank Barchard | 2011-01-15 | 1 | -1/+9 |
* | Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enum | Stefano Sabatini | 2010-11-12 | 1 | -1/+1 |
* | 10l: dx shouldn't exist. | Alex Converse | 2010-11-12 | 1 | -1/+1 |
* | 10l: vorbisdec: declare dy | Alex Converse | 2010-11-12 | 1 | -1/+1 |
* | vorbisdec: Fix floor1 decoding | Gregory Maxwell | 2010-11-12 | 1 | -3/+3 |
* | Fix crashes in vorbis decoding found by zzuf | Jason Garrett-Glaser | 2010-10-27 | 1 | -11/+21 |
* | vorbisdec: Use int instead of uint16_fast_t for index variables | David Conrad | 2010-08-30 | 1 | -1/+1 |
* | vorbis_dec: Change partition_class[] to uint8_t. | Alex Converse | 2010-08-06 | 1 | -1/+1 |
* | vorbisdec: Return AVERROR(ENOMEM) on malloc() failure. | Alex Converse | 2010-08-03 | 1 | -0/+2 |
* | vorbisdec: Prevent a potential integer overflow. | Alex Converse | 2010-08-03 | 1 | -2/+2 |
* | vorbisdec: change a uint_fast32_t to 'unsigned', fix llvm-gcc build | Måns Rullgård | 2010-08-02 | 1 | -2/+2 |
* | Fix use of unintialized variable introduced in r20411. | Reimar Döffinger | 2010-07-02 | 1 | -1/+2 |
* | vorbisdec: remove variable-length arrays | Måns Rullgård | 2010-07-01 | 1 | -11/+23 |
* | vorbisdec: Take channels into account when checking against residue overflow | David Conrad | 2010-06-27 | 1 | -1/+1 |
* | vorbisdec: Fix header parsing with no floor1 partitions | David Conrad | 2010-06-27 | 1 | -1/+1 |
* | vorbisdec: Remove write-only variable | David Conrad | 2010-06-27 | 1 | -3/+0 |
* | Remove explicit filename from Doxygen @file commands. | Diego Biurrun | 2010-04-20 | 1 | -1/+1 |
* | Define AVMediaType enum, and use it instead of enum CodecType, which | Stefano Sabatini | 2010-03-30 | 1 | -1/+1 |
* | Move FFT parts from dsputil.h to fft.h | Måns Rullgård | 2010-03-06 | 1 | -0/+1 |
* | Add support for vorbis 6.1 and 7.1 channel configurations as per the new spec | Robert Swain | 2010-01-29 | 1 | -2/+2 |
* | More sane error message when extradata has not been set. | Michael Niedermayer | 2009-12-18 | 1 | -1/+1 |
* | vorbis_dec: factor out duplicated code for index reading, bounds checking and | Reimar Döffinger | 2009-10-28 | 1 | -58/+26 |
* | Reindent after channel layout commit from yesterday | Robert Swain | 2009-10-03 | 1 | -2/+2 |
* | Add vorbis channel layout support according to those defined in the Vorbis I | Robert Swain | 2009-10-02 | 1 | -0/+13 |
* | whitespace cosmetics, prettyprinting, K&R coding style | Diego Biurrun | 2009-09-29 | 1 | -568/+563 |
* | some more linebreak and brace placement cosmetics | Diego Biurrun | 2009-09-28 | 1 | -3/+3 |
* | brace placement and linebreak cosmetics | Diego Biurrun | 2009-09-28 | 1 | -89/+99 |
* | Fix format string to match the types printed. | Reimar Döffinger | 2009-09-23 | 1 | -1/+1 |
* | Check submap indexes. | Google Chrome | 2009-09-23 | 1 | -2/+13 |
* | Make error return sign consistent. | Michael Niedermayer | 2009-09-23 | 1 | -30/+30 |
* | Check begin/end/partition_size. | Google Chrome | 2009-09-23 | 1 | -0/+9 |
* | Check res_setup->books. | Google Chrome | 2009-09-23 | 1 | -1/+6 |
* | Check masterbook index and subclass book index. | Google Chrome | 2009-09-23 | 1 | -2/+12 |
* | Add checks for per-packet mode indexes and per-header mode mapping indexes. | Google Chrome | 2009-09-23 | 1 | -1/+9 |
* | Check classbook value. | Google Chrome | 2009-09-23 | 1 | -0/+4 |
* | Fix book_idx check. | Google Chrome | 2009-09-23 | 1 | -3/+2 |
* | Sanity checks for magnitude and angle. | Google Chrome | 2009-09-23 | 1 | -1/+8 |
* | = -> == typo. | Google Chrome | 2009-09-23 | 1 | -1/+1 |