aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ac3enc.c
Commit message (Expand)AuthorAgeFilesLines
* Split applying of MDCT into several separate functions.Justin Ruggles2010-12-141-25/+61
* Split input sample deinterleaving into a separate function.Justin Ruggles2010-12-141-21/+35
* Separate functionally different calculations in ac3_encode_frame().Justin Ruggles2010-12-141-2/+13
* cosmetics: rename 2 variablesJustin Ruggles2010-12-141-7/+7
* Deinterleave whole frame at once instead of per-block.Justin Ruggles2010-12-141-16/+26
* cosmetics: add & alter some commentsJustin Ruggles2010-12-141-2/+3
* Split setting of bandwidth into a separate function.Justin Ruggles2010-12-141-20/+34
* Move setting of bitstream_id and bitstream_mode to ac3_encode_init().Justin Ruggles2010-12-141-2/+3
* Improve ac3_encode_init() error reporting.Justin Ruggles2010-12-141-10/+14
* cosmetics: indent after last commitJustin Ruggles2010-12-141-1/+1
* Don't use nested loops to iterate valid sample rates.Justin Ruggles2010-12-141-8/+8
* Remove some duplicate local copies of avctx fields.Justin Ruggles2010-12-141-6/+4
* Split validation of initial user options into a separate function.Justin Ruggles2010-12-141-11/+23
* Use bytes instead of 16-bit words for frame size.Justin Ruggles2010-12-141-14/+14
* cosmetics: rename variable 'n' to 'pad_bytes'Justin Ruggles2010-12-141-5/+5
* Change output_frame_end() to return void. The frame size is already known.Justin Ruggles2010-12-141-4/+4
* cosmetics: pretty-printingJustin Ruggles2010-12-141-2/+2
* cosmetics: rename some iterator variables to match what they representJustin Ruggles2010-12-141-57/+58
* cosmetics: rename a variable for consistencyJustin Ruggles2010-12-141-2/+2
* cosmetics: rename exp_samples and global_exp to exp_shift.Justin Ruggles2010-12-141-6/+6
* cosmetics: rename 2 functionsJustin Ruggles2010-12-141-10/+10
* define AC3_CRITICAL_BANDS and use it in the AC-3 encoder and decoder.Justin Ruggles2010-12-141-5/+5
* Use sizeof(array value) instead of sizeof(int16_t).Justin Ruggles2010-12-141-2/+2
* cosmetics: use lowercase letters for function namesJustin Ruggles2010-12-141-6/+6
* cosmetics: add new function documentation and clean up existing documentationJustin Ruggles2010-12-141-14/+109
* cosmetics: add more space between functionsJustin Ruggles2010-12-141-0/+35
* cosmetics: rearrange some functions/typedefs/macrosJustin Ruggles2010-12-141-161/+160
* Simplify group size calculation in 2 places.Justin Ruggles2010-12-141-25/+3
* cosmetics: make a switch/case more compactJustin Ruggles2010-12-141-9/+3
* Clean up fft_init() and mdct_init()Justin Ruggles2010-12-141-9/+10
* cosmetics: pretty-printing, alignment, etc...Justin Ruggles2010-12-141-244/+206
* Remove unneeded #includeJustin Ruggles2010-12-141-1/+0
* Simplify fix15().Justin Ruggles2010-12-141-14/+7
* Fix the fixed-point MDCT and FFT tests so that they actually compile and work.Justin Ruggles2010-12-141-34/+30
* Split out initialization of MDCT tables into a separate function.Justin Ruggles2010-12-141-8/+17
* cosmetics: Document AC3EncodeContext fields.Justin Ruggles2010-12-141-24/+28
* Remove unneeded debugging messages.Justin Ruggles2010-12-141-37/+2
* cosmetics: Define AC3_WINDOW_SIZE and use it instead of AC3_BLOCK_SIZE*2.Justin Ruggles2010-12-141-4/+4
* cosmetics: use better (and shared) macro names for some constant valuesJustin Ruggles2010-12-141-69/+69
* Remove duplicate AC3EncodeContext fields, sr_shift and sr_code.Justin Ruggles2010-12-141-12/+8
* cosmetics: rename some fields in AC3EncodeContextJustin Ruggles2010-12-141-37/+37
* cosmetics: change all short to int16_tJustin Ruggles2010-12-141-3/+3
* Change some unsigned types to signed types in AC3EncodeContextJustin Ruggles2010-12-141-11/+11
* cosmetics: rearrange AC3EncodeContext fieldsJustin Ruggles2010-12-141-11/+18
* Use the new libavcore audio channel API.Stefano Sabatini2010-11-211-31/+32
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-121-1/+1
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-241-2/+2
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-101-2/+2
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1