| Commit message (Expand) | Author | Age | Files | Lines |
* | skip incomplete frames | Justin Ruggles | 2007-09-15 | 1 | -0/+6 |
* | better AC3 header error reporting | Justin Ruggles | 2007-09-15 | 1 | -5/+21 |
* | fix random dithering of zero-bit mantissas | Justin Ruggles | 2007-09-15 | 1 | -1/+1 |
* | cosmetics: rename variables. tbl->tab for consistency with other AC3 tables | Justin Ruggles | 2007-09-15 | 1 | -17/+17 |
* | fix decoding of DolbyNet AC3 | Justin Ruggles | 2007-09-15 | 1 | -2/+2 |
* | cosmetics: vertical alignment | Justin Ruggles | 2007-08-09 | 1 | -18/+18 |
* | comments modification: add, clean up, Doxygenize, and reword | Justin Ruggles | 2007-08-09 | 1 | -113/+146 |
* | cosmetics: blank lines, remove some comments | Justin Ruggles | 2007-08-05 | 1 | -8/+1 |
* | add pointer to the parent context for use with av_log() | Justin Ruggles | 2007-08-05 | 1 | -5/+7 |
* | use array for dynamic range scaling factors | Justin Ruggles | 2007-08-05 | 1 | -15/+10 |
* | add dialogue normalization | Justin Ruggles | 2007-08-05 | 1 | -4/+16 |
* | add support for downmixing to stereo or mono | Justin Ruggles | 2007-08-04 | 1 | -13/+110 |
* | use dsputil for float to signed 16-bit sample conversion | Justin Ruggles | 2007-08-04 | 1 | -17/+19 |
* | cosmetics: indentation | Justin Ruggles | 2007-08-04 | 1 | -7/+7 |
* | consolidate decoding of lfe and coupling channels with decoding of full-bandw... | Justin Ruggles | 2007-08-04 | 1 | -204/+138 |
* | there are only 4 rematrixing bands | Justin Ruggles | 2007-08-04 | 1 | -1/+1 |
* | cosmetics: use more appropriate names for iterator variables. | Justin Ruggles | 2007-08-04 | 1 | -66/+66 |
* | move some variables to a more local scope. | Justin Ruggles | 2007-08-04 | 1 | -4/+3 |
* | make exponent decoding consistent (prepare for merging coupling and lfe code ... | Justin Ruggles | 2007-08-04 | 1 | -11/+14 |
* | cosmetics: use braces when it makes the code easier to read. | Justin Ruggles | 2007-08-04 | 1 | -17/+31 |
* | change AC3DecodeContext variable to local variable | Justin Ruggles | 2007-08-04 | 1 | -4/+3 |
* | use array instead of bitmask | Justin Ruggles | 2007-08-04 | 1 | -4/+3 |
* | use table for converting dynamic range codes to scale factors | Justin Ruggles | 2007-08-04 | 1 | -5/+13 |
* | use floating-point mantissa dequantization tables | Justin Ruggles | 2007-08-04 | 1 | -121/+80 |
* | cosmetics: indentation | Justin Ruggles | 2007-08-04 | 1 | -1/+1 |
* | dither zero-bit mantissas by default. remove dithering only if it's explicitl... | Justin Ruggles | 2007-08-04 | 1 | -10/+44 |
* | simplify coefficient decoding | Justin Ruggles | 2007-08-04 | 1 | -16/+15 |
* | merge decoding of coupling channel coefficients and regular channel coefficients | Justin Ruggles | 2007-08-04 | 1 | -74/+13 |
* | split out coupling coefficient reconstruction into a separate function | Justin Ruggles | 2007-08-03 | 1 | -36/+38 |
* | align array used in mdct. fixes segfault. | Justin Ruggles | 2007-08-01 | 1 | -1/+1 |
* | simplify stereo rematrixing | Justin Ruggles | 2007-07-29 | 1 | -41/+29 |
* | change 2 fields from context to local variables | Justin Ruggles | 2007-07-29 | 1 | -12/+12 |
* | BLOCK_SIZE is not used properly, just use numbers instead to avoid confusion | Justin Ruggles | 2007-07-28 | 1 | -10/+8 |
* | remove broken downmixing. will add new implementation later. | Justin Ruggles | 2007-07-28 | 1 | -543/+47 |
* | simplify snr offset and bit allocation | Justin Ruggles | 2007-07-24 | 1 | -52/+31 |
* | only use sized data types when necessary | Justin Ruggles | 2007-07-24 | 1 | -28/+28 |
* | set bit allocation parameters directly instead of copying | Justin Ruggles | 2007-07-24 | 1 | -23/+7 |
* | use enum value instead of numerical value for acmod | Justin Ruggles | 2007-07-23 | 1 | -3/+3 |
* | use consistent data type for exponents. needs to be int8_t to pass to bit all... | Justin Ruggles | 2007-07-23 | 1 | -5/+5 |
* | change some bit masks to arrays | Justin Ruggles | 2007-07-23 | 1 | -31/+29 |
* | cosmetics: indentation | Justin Ruggles | 2007-07-21 | 1 | -2/+2 |
* | Use shared AC-3 header parsing. Move some initializations to block parsing fu... | Justin Ruggles | 2007-07-21 | 1 | -90/+62 |
* | don't need to synchronize in the decoder. the parser does that already. | Justin Ruggles | 2007-07-21 | 1 | -28/+1 |
* | get rid of an ugly macro | Justin Ruggles | 2007-07-21 | 1 | -17/+14 |
* | don't need to define ALT_BITSTREAM_READER | Justin Ruggles | 2007-07-19 | 1 | -2/+0 |
* | update license header. add copyright for myself. correct and complete the sta... | Justin Ruggles | 2007-07-19 | 1 | -2/+4 |
* | revise comment for exponent decoding function | Justin Ruggles | 2007-07-19 | 1 | -7/+7 |
* | new implementation of exponent decoding | Justin Ruggles | 2007-07-19 | 1 | -89/+34 |
* | cosmetics: indentation | Justin Ruggles | 2007-07-19 | 1 | -18/+18 |
* | remove portions of bit allocation which are no longer needed since they are s... | Justin Ruggles | 2007-07-19 | 1 | -44/+1 |