| Commit message (Expand) | Author | Age | Files | Lines |
* | cosmetics: remove outdated comment that is no longer true | Justin Ruggles | 2011-06-28 | 1 | -2/+0 |
* | ac3enc: move ff_ac3_encode_frame() to ac3enc_template.c | Justin Ruggles | 2011-06-27 | 1 | -73/+9 |
* | ac3enc: Remove bit allocation fallbacks. | Justin Ruggles | 2011-06-27 | 1 | -70/+1 |
* | ac3enc: remove unneeded local variable in asym_quant() | Justin Ruggles | 2011-06-22 | 1 | -6/+6 |
* | ac3enc: remove a branch in asym_quant() by doing 2 shifts | Justin Ruggles | 2011-06-22 | 1 | -8/+2 |
* | ac3enc: avoid masking output in asym_quant() by using signed values for | Justin Ruggles | 2011-06-22 | 1 | -11/+11 |
* | ac3enc: fix allocation of floating point samples. | Justin Ruggles | 2011-06-13 | 1 | -9/+7 |
* | ac3enc: remove empty ac3_float function that is never called | Justin Ruggles | 2011-06-13 | 1 | -1/+0 |
* | ac3enc: split templated float vs. fixed functions into a separate file. | Justin Ruggles | 2011-06-13 | 1 | -401/+37 |
* | ac3enc: dynamically allocate AC3EncodeContext fields windowed_samples and mdct | Justin Ruggles | 2011-06-13 | 1 | -5/+10 |
* | ac3enc: use function pointer to choose between AC-3 and E-AC-3 header output | Justin Ruggles | 2011-06-13 | 1 | -4/+7 |
* | ac3enc: Fix linking of AC-3 encoder without the E-AC-3 encoder. | Diego Biurrun | 2011-06-08 | 1 | -2/+2 |
* | Move E-AC-3 encoder functions to a separate eac3enc.c file. | Justin Ruggles | 2011-06-07 | 1 | -279/+5 |
* | ac3enc: remove convenience macro, #define DEBUG | Justin Ruggles | 2011-06-07 | 1 | -1/+0 |
* | ac3enc: remove unused #define | Justin Ruggles | 2011-06-07 | 1 | -3/+0 |
* | ac3enc: extract all exponents for the frame at once | Justin Ruggles | 2011-06-04 | 1 | -8/+4 |
* | ac3enc: fix LOCAL_ALIGNED usage in count_mantissa_bits() | Mans Rullgard | 2011-05-28 | 1 | -1/+1 |
* | ac3enc: modify mantissa bit counting to keep bap counts for all values of bap | Justin Ruggles | 2011-05-28 | 1 | -43/+49 |
* | ac3enc: split mantissa bit counting into a separate function. | Justin Ruggles | 2011-05-28 | 1 | -18/+31 |
* | ac3enc: store per-block/channel bap pointers by reference block in a 2D array | Justin Ruggles | 2011-05-28 | 1 | -27/+25 |
* | ac3enc: use LOCAL_ALIGNED macro | Mans Rullgard | 2011-05-28 | 1 | -2/+5 |
* | cosmetics: indentation and alignment after previous commit | Justin Ruggles | 2011-05-27 | 1 | -87/+87 |
* | ac3enc: add support for E-AC-3 encoding. | Justin Ruggles | 2011-05-27 | 1 | -22/+278 |
* | ac3enc: Move AC-3 AVOptions array to a separate file to make it easier to | Justin Ruggles | 2011-05-27 | 1 | -52/+9 |
* | ac3enc: initialize all coefficients to zero. | Justin Ruggles | 2011-05-25 | 1 | -6/+6 |
* | ac3enc: add channel coupling support | Justin Ruggles | 2011-05-24 | 1 | -163/+729 |
* | ac3enc: put the counting of stereo rematrixing bits in the same place to | Justin Ruggles | 2011-05-12 | 1 | -7/+4 |
* | ac3enc: clean up count_frame_bits() and count_frame_bits_fixed() | Justin Ruggles | 2011-05-12 | 1 | -20/+46 |
* | AVOptions: make default_val a union, as proposed in AVOption2. | Anton Khirnov | 2011-05-10 | 1 | -35/+35 |
* | Replace strncpy() with av_strlcpy(). | Alex Converse | 2011-05-03 | 1 | -21/+22 |
* | ac3enc: do not store a bandwidth code for each channel. | Justin Ruggles | 2011-05-01 | 1 | -7/+6 |
* | ac3enc: remove bandwidth reduction as fallback for bit allocation failure. | Justin Ruggles | 2011-05-01 | 1 | -30/+0 |
* | ac3enc: merge compute_exp_strategy_ch() into compute_exp_strategy() | Justin Ruggles | 2011-05-01 | 1 | -42/+33 |
* | ac3enc: return error if frame+exponent bits are too large instead of using | Justin Ruggles | 2011-05-01 | 1 | -1/+2 |
* | ac3enc: differentiate between current block and reference block in bit_alloc() | Justin Ruggles | 2011-05-01 | 1 | -7/+11 |
* | ac3enc: simplify exponent_init() by calculating exponent_group_tab[] based | Justin Ruggles | 2011-05-01 | 1 | -5/+7 |
* | ac3enc: simplify stereo rematrixing decision options | Justin Ruggles | 2011-05-01 | 1 | -35/+13 |
* | ac3enc: remove check for mismatching channels and channel_layout | Justin Ruggles | 2011-04-27 | 1 | -2/+0 |
* | Add AVX FFT implementation. | Vitor Sessak | 2011-04-26 | 1 | -1/+1 |
* | ac3enc: move extract_exponents inner loop to ac3dsp | Mans Rullgard | 2011-04-04 | 1 | -18/+3 |
* | ac3enc: select bandwidth based on bit rate, sample rate, and number of | Justin Ruggles | 2011-04-03 | 1 | -3/+31 |
* | ac3enc: use generic fixed-point mdct | Mans Rullgard | 2011-04-03 | 1 | -9/+17 |
* | ac3enc: simplify sym_quant() | Mans Rullgard | 2011-03-31 | 1 | -1/+1 |
* | ac3enc: move compute_mantissa_size() to ac3dsp | Mans Rullgard | 2011-03-30 | 1 | -26/+1 |
* | ac3enc: move mant*_cnt and qmant*_ptr out of AC3EncodeContext | Mans Rullgard | 2011-03-30 | 1 | -8/+7 |
* | ac3: move ff_ac3_bit_alloc_calc_bap to ac3dsp | Mans Rullgard | 2011-03-29 | 1 | -1/+1 |
* | ac3enc: avoid memcpy() of exponents and baps in EXP_REUSE case by using | Justin Ruggles | 2011-03-28 | 1 | -17/+17 |
* | ac3enc: Add codec-specific options for writing AC-3 metadata. | Justin Ruggles | 2011-03-27 | 1 | -8/+433 |
* | Get audio_service_type for AC-3 based on bitstream mode in the AC-3 parser | Justin Ruggles | 2011-03-25 | 1 | -1/+15 |
* | Add apply_window_int16() to DSPContext with x86-optimized versions and use it | Justin Ruggles | 2011-03-22 | 1 | -1/+1 |