summaryrefslogtreecommitdiff
path: root/libavcodec/ac3.c
Commit message (Expand)AuthorAgeFilesLines
* Change code so it uses 2 adds instead of one FFABS.Reimar Döffinger2010-01-141-2/+3
* Simplify AC-3 critical band end calculation (correctly this time).Justin Ruggles2009-11-031-1/+1
* Revert r20050, which caused decoding errors with at least one valid AC-3 file.Justin Ruggles2009-11-031-1/+1
* Remove unneeded table lookup.Justin Ruggles2009-09-271-1/+1
* Cosmetics: Rename some variables to be more descriptive of their use.Justin Ruggles2009-09-271-9/+9
* Move some variable declarations to inside of loops.Justin Ruggles2009-09-271-4/+4
* Remove unneeded variable.Justin Ruggles2009-09-271-3/+2
* Cosmetics: Rename some variables to be more descriptive of their use.Justin Ruggles2009-09-271-9/+7
* Remove some unneeded variables.Justin Ruggles2009-09-271-6/+5
* Cosmetics: Rename some variablesJustin Ruggles2009-09-271-37/+33
* simplify 2 lines into 1 using FFMINJustin Ruggles2009-09-271-2/+1
* Cosmetics: Do some basic pretty-printing.Justin Ruggles2009-09-271-7/+8
* Simplify by combining increment with array access.Justin Ruggles2009-09-271-2/+1
* cosmetics: Rename some variables to be more descriptive of their use. Do someJustin Ruggles2009-09-271-11/+11
* Move 2 variable declarations to inside of loop.Justin Ruggles2009-09-271-3/+3
* simplify by combining increment with array accessJustin Ruggles2009-09-271-2/+1
* Remove unneeded variableJustin Ruggles2009-09-271-3/+2
* Hardcode AC-3 critical band tables when CONFIG_HARDCODED_TABLES is set.Justin Ruggles2009-09-271-0/+45
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-131-1/+1
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-191-1/+1
* cosmetics: alignment after last commitJustin Ruggles2008-12-081-4/+4
* ac3: detect dba errors and prevent writing past end of arrayJustin Ruggles2008-12-081-3/+8
* cosmetics: make all references to AC-3 capitalized and hyphenatedJustin Ruggles2008-08-031-3/+3
* pass bap table to ff_ac3_bit_alloc_calc_bap()Justin Ruggles2008-06-071-3/+5
* prevent crash when dba params are invalidJustin Ruggles2008-06-031-2/+2
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-211-1/+1
* cosmetics: rename ac3 bit allocation variablesJustin Ruggles2007-12-091-56/+56
* cosmetics: rename ac3 tablesJustin Ruggles2007-12-091-5/+5
* move some common values to ac3.h and utilize themJustin Ruggles2007-07-151-1/+1
* move ac3 tables from a .h to a .cAurelien Jacobs2007-04-251-6/+8
* Move AC3 header parsing code together with the rest of the AC3 parsing code.Diego Biurrun2007-04-151-50/+0
* fix handling of special case for lowest snroffset. regressions are unaffected.Justin Ruggles2007-03-201-0/+6
* split ac3_parametric_bit_allocation into 3 separate functionsJustin Ruggles2007-03-181-15/+43
* hardcode ff_ac3_frame_sizes tableJustin Ruggles2007-03-181-8/+0
* move AC-3 header parsing to ac3.cJustin Ruggles2007-03-111-0/+51
* remove redundancy in AC-3 parser by using common tables from ac3tab.hJustin Ruggles2007-03-111-0/+13
* Create ac3.c which will be used for AC-3 common code.Justin Ruggles2007-03-091-0/+197