summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dec.c
Commit message (Collapse)AuthorAge
* cosmetics: use a better function name than uncouple_channels()Justin Ruggles2008-08-05
| | | | Originally committed as revision 14614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: change function name and comments to refer to block decodingJustin Ruggles2008-08-05
| | | | | | instead of block parsing Originally committed as revision 14613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded local variableJustin Ruggles2008-08-05
| | | | Originally committed as revision 14547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read bitstream parameters for E-AC-3 streams before returning an error.Justin Ruggles2008-08-03
| | | | Originally committed as revision 14528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hardcode the table for ungrouping 3 values in 5 bits. It will be reused byJustin Ruggles2008-08-03
| | | | | | the E-AC-3 decoder. Originally committed as revision 14527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the same table for ungrouping exponents and bap=2 mantissasJustin Ruggles2008-08-03
| | | | Originally committed as revision 14525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: make all references to AC-3 capitalized and hyphenatedJustin Ruggles2008-08-03
| | | | Originally committed as revision 14523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
| | | | Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* read 'coupling in use' parameter from bitstream into decoder context first,Justin Ruggles2008-07-19
| | | | | | then copy to the local variable. Originally committed as revision 14311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: use hex value instead of decimal to show relation to 0x7FFFFFJustin Ruggles2008-07-19
| | | | Originally committed as revision 14290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move rematrixing band table to ac3dec_data.cJustin Ruggles2008-06-08
| | | | Originally committed as revision 13716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split up header parsing functionJustin Ruggles2008-06-07
| | | | Originally committed as revision 13705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store exp_strategy for all blocks in decode contextJustin Ruggles2008-06-07
| | | | Originally committed as revision 13704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store cpl_in_use for all blocks in decode contextJustin Ruggles2008-06-07
| | | | Originally committed as revision 13703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move the decode context and some macro constants to a new file, ac3dec.hJustin Ruggles2008-06-07
| | | | Originally committed as revision 13697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move mix level tables from parser to decoder. have parser read bitstream ↵Justin Ruggles2008-06-07
| | | | | | value instead of using an index to a table in the decoder. Originally committed as revision 13696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add more gain levels and adjust mix level tables accordingly.Justin Ruggles2008-06-07
| | | | Originally committed as revision 13695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass bap table to ff_ac3_bit_alloc_calc_bap()Justin Ruggles2008-06-07
| | | | Originally committed as revision 13694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentJustin Ruggles2008-06-07
| | | | Originally committed as revision 13692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip unsupported frame types and substream id'sJustin Ruggles2008-06-07
| | | | Originally committed as revision 13691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* read frame type from header info into decode contextJustin Ruggles2008-06-07
| | | | Originally committed as revision 13690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get substreamid from ac3 parserJustin Ruggles2008-06-07
| | | | Originally committed as revision 13689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get the number of blocks from the ac3 parser and use in the ac3 decoder.Justin Ruggles2008-06-07
| | | | Originally committed as revision 13688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error on frame sync errorJustin Ruggles2008-06-04
| | | | Originally committed as revision 13654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: add a comment, remove a commentJustin Ruggles2008-05-31
| | | | Originally committed as revision 13590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyJustin Ruggles2008-05-31
| | | | Originally committed as revision 13589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set lfe params at frame init instead of in every blockJustin Ruggles2008-05-31
| | | | Originally committed as revision 13588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only calculate number of exponent groups when exponents are not reused.Justin Ruggles2008-05-31
| | | | Originally committed as revision 13587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: remove unneeded bracesJustin Ruggles2008-05-31
| | | | Originally committed as revision 13586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: cosmeticsJustin Ruggles2008-05-31
| | | | Originally committed as revision 13585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new dba values requires running last 2 bit allocation stagesJustin Ruggles2008-05-31
| | | | Originally committed as revision 13584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_transform_coeffs() never returns an error, so make the function and its ↵Justin Ruggles2008-05-31
| | | | | | children return void. Originally committed as revision 13582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use enum value for CRC errorJustin Ruggles2008-05-31
| | | | Originally committed as revision 13580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move header error logging to after CRC checkJustin Ruggles2008-05-31
| | | | Originally committed as revision 13579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* zero the upper frequencies of the correct coefficientsJustin Ruggles2008-05-27
| | | | Originally committed as revision 13452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* safer solution for setting audio parametersJustin Ruggles2008-05-25
| | | | Originally committed as revision 13402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set audio parameters if frame header is ok, even if crc failsJustin Ruggles2008-05-25
| | | | Originally committed as revision 13399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentJustin Ruggles2008-05-25
| | | | Originally committed as revision 13398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add error concealmentJustin Ruggles2008-05-25
| | | | Originally committed as revision 13397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentJustin Ruggles2008-05-25
| | | | Originally committed as revision 13385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix error in commit r13382Justin Ruggles2008-05-25
| | | | Originally committed as revision 13384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add checks for missing information in the first blockJustin Ruggles2008-05-25
| | | | Originally committed as revision 13382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add check for invalid channel mode when coupling is usedJustin Ruggles2008-05-25
| | | | Originally committed as revision 13381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change ff_ac3_parse_header() to take a GetBitContext instead of const char*Bartlomiej Wolowiec2008-04-22
| | | | Originally committed as revision 12922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change name from stream type to frame type in AC3 codeBartlomiej Wolowiec2008-03-28
| | | | Originally committed as revision 12623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only allocate context input buffer if AVCodecContext.error_reslience is ↵Justin Ruggles2008-03-26
| | | | | | greater than 0. Originally committed as revision 12600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation after last commitJustin Ruggles2008-03-25
| | | | Originally committed as revision 12594 to svn://svn.ffmpeg.org/ffmpeg/trunk