aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ac3enc.c
Commit message (Expand)AuthorAgeFilesLines
* Move fixed-point parts of the AC-3 encoder to separate files.Justin Ruggles2011-01-031-420/+16
* Skip the bit allocation search if previous and current SNR offsets are theJustin Ruggles2010-12-311-0/+7
* 10l: Fix mistake in r26044. Check increment bounds using actual incrementJustin Ruggles2010-12-311-1/+1
* Change planar_samples from int16_t to SampleType.Justin Ruggles2010-12-311-1/+1
* Add typedefs and a macro that will allow sharing of functions between theJustin Ruggles2010-12-301-10/+15
* Move the list of supported channel layouts to a separate table.Justin Ruggles2010-12-301-20/+27
* Add a window field to AC3MDCTContext and use it as an input to apply_window()Justin Ruggles2010-12-301-1/+4
* cosmetics: alignment, line wrap, and spacingJustin Ruggles2010-12-301-29/+19
* Remove avctx from AC3MDCTContext and just pass it to mdct_init() instead.Justin Ruggles2010-12-301-12/+10
* Make exponent_group_tab[] static.Justin Ruggles2010-12-301-1/+1
* Change the default dB-per-bit code from 2 to 3.Justin Ruggles2010-12-291-1/+1
* cosmetics: line wrap and vertical alignmentJustin Ruggles2010-12-231-2/+1
* Make sure that the 2nd CRC value does not match the AC-3 sync word.Justin Ruggles2010-12-231-4/+10
* Store CRC context locally to reduce number of calls to av_crc_get_table().Justin Ruggles2010-12-231-2/+3
* Remove unneeded local variable, frame_size, in output_frame_end().Justin Ruggles2010-12-231-5/+4
* cosmetics: fix comment after change in clipping rangeJustin Ruggles2010-12-221-1/+1
* Change FIX15() back to clipping to -32767..32767.Justin Ruggles2010-12-211-1/+1
* Add emms_c() after exp_diff calculations.Justin Ruggles2010-12-211-0/+1
* Pre-calculate crc_inv at codec init.Justin Ruggles2010-12-211-3/+11
* Add some simple fallbacks for normal bit allocation failure.Justin Ruggles2010-12-171-1/+89
* Check user-specified cutoff frequency in validate_options().Justin Ruggles2010-12-171-5/+14
* 10l: fix encoding for LFE channelJustin Ruggles2010-12-171-0/+2
* Add support for fixed-point MDCT sizes other than 512.Justin Ruggles2010-12-171-36/+64
* cosmetics: reindent after last commitJustin Ruggles2010-12-171-5/+5
* Simplify bit allocation search by using a loop for the SNR offset increment.Justin Ruggles2010-12-171-17/+4
* Do not calculate psd and masking curve if exponents are being reused.Justin Ruggles2010-12-171-5/+4
* cosmetics: reindent after last commitJustin Ruggles2010-12-161-4/+4
* Copy bap from previous block when exponent strategy is EXP_REUSE.Justin Ruggles2010-12-161-0/+8
* Count grouped mantissas for each block all at once at the end of bitJustin Ruggles2010-12-161-41/+34
* Count bits for fixed parameters at start of encoding rather than in everyJustin Ruggles2010-12-161-34/+66
* Use a LUT for number of exponent groups. This avoids recalculating it forJustin Ruggles2010-12-161-14/+34
* Speed up group minimum and group output calculations for EXP_D25 and EXP_D45Justin Ruggles2010-12-161-19/+37
* Convert a for() loop into a while() loop for the downward part of the exponentJustin Ruggles2010-12-161-1/+2
* Redesign encode_exponents_blk_ch() so that duplicate exponent sets are noJustin Ruggles2010-12-161-30/+23
* Use optimized function DSPContext.sad[0]() instead of calc_exp_diff().Justin Ruggles2010-12-161-16/+7
* cosmetics: pretty-printing after last commitJustin Ruggles2010-12-161-4/+2
* Add a goto for init failure instead of duplicate calls to ac3_encode_close().Justin Ruggles2010-12-161-4/+5
* Use pre-allocated temp buffers in mdct512().Justin Ruggles2010-12-161-6/+40
* Write results of post-rotation complex multiply directly to output.Justin Ruggles2010-12-161-4/+2
* Use memcpy() instead of a for loop in mdct512().Justin Ruggles2010-12-161-2/+1
* Allocate all large per-channel arrays using av_malloc().Justin Ruggles2010-12-161-14/+80
* Make windowed_samples 16-byte aligned.Justin Ruggles2010-12-161-1/+2
* Allocate planar_samples using av_mallocz().Justin Ruggles2010-12-161-3/+13
* Allocate bap and bap1 buffers using av_malloc().Justin Ruggles2010-12-151-16/+76
* Remove last_samples[] and copy directly from planar_samples[].Justin Ruggles2010-12-151-6/+1
* Remove unneeded line. key_frame is already set to 1 in avcodec_alloc_frame().Justin Ruggles2010-12-151-1/+0
* cosmetics: comment clean-up and misc cosmeticsJustin Ruggles2010-12-151-41/+41
* Separate most of the per-block arrays into a separate per-block struct.Justin Ruggles2010-12-151-58/+80
* Split bit allocation search into a separate function.Justin Ruggles2010-12-151-14/+21
* 10l: fix typo in compute_exp_strategy()Justin Ruggles2010-12-141-1/+1