| Commit message (Expand) | Author | Age | Files | Lines |
* | split up header parsing function | Justin Ruggles | 2008-06-07 | 1 | -32/+43 |
* | store exp_strategy for all blocks in decode context | Justin Ruggles | 2008-06-07 | 1 | -10/+10 |
* | store cpl_in_use for all blocks in decode context | Justin Ruggles | 2008-06-07 | 1 | -13/+17 |
* | move the decode context and some macro constants to a new file, ac3dec.h | Justin Ruggles | 2008-06-07 | 1 | -86/+1 |
* | move mix level tables from parser to decoder. have parser read bitstream valu... | Justin Ruggles | 2008-06-07 | 1 | -2/+14 |
* | add more gain levels and adjust mix level tables accordingly. | Justin Ruggles | 2008-06-07 | 1 | -10/+16 |
* | pass bap table to ff_ac3_bit_alloc_calc_bap() | Justin Ruggles | 2008-06-07 | 1 | -1/+1 |
* | cosmetics: indent | Justin Ruggles | 2008-06-07 | 1 | -1/+1 |
* | skip unsupported frame types and substream id's | Justin Ruggles | 2008-06-07 | 1 | -0/+7 |
* | read frame type from header info into decode context | Justin Ruggles | 2008-06-07 | 1 | -0/+2 |
* | get substreamid from ac3 parser | Justin Ruggles | 2008-06-07 | 1 | -0/+2 |
* | get the number of blocks from the ac3 parser and use in the ac3 decoder. | Justin Ruggles | 2008-06-07 | 1 | -2/+4 |
* | return error on frame sync error | Justin Ruggles | 2008-06-04 | 1 | -1/+1 |
* | cosmetics: add a comment, remove a comment | Justin Ruggles | 2008-05-31 | 1 | -1/+2 |
* | simplify | Justin Ruggles | 2008-05-31 | 1 | -4/+1 |
* | set lfe params at frame init instead of in every block | Justin Ruggles | 2008-05-31 | 1 | -3/+7 |
* | only calculate number of exponent groups when exponents are not reused. | Justin Ruggles | 2008-05-31 | 1 | -9/+11 |
* | cosmetics: remove unneeded braces | Justin Ruggles | 2008-05-31 | 1 | -2/+1 |
* | 10l: cosmetics | Justin Ruggles | 2008-05-31 | 1 | -1/+0 |
* | new dba values requires running last 2 bit allocation stages | Justin Ruggles | 2008-05-31 | 1 | -0/+3 |
* | get_transform_coeffs() never returns an error, so make the function and its c... | Justin Ruggles | 2008-05-31 | 1 | -16/+5 |
* | use enum value for CRC error | Justin Ruggles | 2008-05-31 | 1 | -2/+2 |
* | move header error logging to after CRC check | Justin Ruggles | 2008-05-31 | 1 | -17/+20 |
* | zero the upper frequencies of the correct coefficients | Justin Ruggles | 2008-05-27 | 1 | -1/+1 |
* | safer solution for setting audio parameters | Justin Ruggles | 2008-05-25 | 1 | -8/+9 |
* | set audio parameters if frame header is ok, even if crc fails | Justin Ruggles | 2008-05-25 | 1 | -3/+3 |
* | cosmetics: indent | Justin Ruggles | 2008-05-25 | 1 | -16/+16 |
* | add error concealment | Justin Ruggles | 2008-05-25 | 1 | -8/+7 |
* | cosmetics: indent | Justin Ruggles | 2008-05-25 | 1 | -7/+7 |
* | 10l: fix error in commit r13382 | Justin Ruggles | 2008-05-25 | 1 | -1/+3 |
* | add checks for missing information in the first block | Justin Ruggles | 2008-05-25 | 1 | -0/+18 |
* | add check for invalid channel mode when coupling is used | Justin Ruggles | 2008-05-25 | 1 | -0/+5 |
* | Use full path for #includes from another directory. | Diego Biurrun | 2008-05-09 | 1 | -2/+2 |
* | Add long names to AVCodec declarations. | Stefano Sabatini | 2008-04-27 | 1 | -0/+1 |
* | change ff_ac3_parse_header() to take a GetBitContext instead of const char* | Bartlomiej Wolowiec | 2008-04-22 | 1 | -32/+3 |
* | change name from stream type to frame type in AC3 code | Bartlomiej Wolowiec | 2008-03-28 | 1 | -2/+2 |
* | only allocate context input buffer if AVCodecContext.error_reslience is great... | Justin Ruggles | 2008-03-26 | 1 | -2/+11 |
* | cosmetics: indentation after last commit | Justin Ruggles | 2008-03-25 | 1 | -1/+1 |
* | additional protection from segmentation faults and memory access errors by | Justin Ruggles | 2008-03-25 | 1 | -0/+11 |
* | using stream type in eac3 parser | Bartlomiej Wolowiec | 2008-03-24 | 1 | -0/+3 |
* | Apply 'cold' attribute to init/uninit functions in libavcodec | Zuxy Meng | 2008-03-21 | 1 | -3/+3 |
* | make input buffer const, as it should be. fixes a warning. | Justin Ruggles | 2008-03-10 | 1 | -1/+2 |
* | downmix before imdct unless different size transforms are used. about 20% | Justin Ruggles | 2008-03-09 | 1 | -21/+76 |
* | use scale factor instead of sum for downmix level adjustment. avoids division | Justin Ruggles | 2008-03-01 | 1 | -6/+9 |
* | pre-calculate downmix coefficient sums. 2% faster 5.1-to-stereo downmixing. | Justin Ruggles | 2008-03-01 | 1 | -6/+11 |
* | Use 24-bit fixed-point transform coefficients until just before MDCT. This | Justin Ruggles | 2008-03-01 | 1 | -45/+37 |
* | Add variable alpha and size of half window for Kaiser-Bessel Derived window | Robert Swain | 2008-01-13 | 1 | -1/+1 |
* | Make the Kaiser-Bessel window generator a common function | Robert Swain | 2008-01-12 | 1 | -25/+1 |
* | used defined name for testing error resilience level | Justin Ruggles | 2008-01-08 | 1 | -1/+1 |
* | split out init of downmix coeffs into a separate function that can be called | Justin Ruggles | 2008-01-07 | 1 | -10/+30 |