]> git.sesse.net Git - ffmpeg/history - libavcodec/ac3dec.c
Simplify rms(): merge a few operations in the same statement
[ffmpeg] / libavcodec / ac3dec.c
2008-08-05 Justin Rugglescosmetics: use a better function name than uncouple_cha...
2008-08-05 Justin Rugglescosmetics: change function name and comments to refer...
2008-08-05 Justin Rugglesremove unneeded local variable
2008-08-03 Justin RugglesRead bitstream parameters for E-AC-3 streams before...
2008-08-03 Justin RugglesHardcode the table for ungrouping 3 values in 5 bits...
2008-08-03 Justin Rugglesuse the same table for ungrouping exponents and bap...
2008-08-03 Justin Rugglescosmetics: make all references to AC-3 capitalized...
2008-07-31 Peter RossModify all codecs to report their supported input and...
2008-07-19 Justin Rugglesread 'coupling in use' parameter from bitstream into...
2008-07-19 Justin Rugglescosmetic: use hex value instead of decimal to show...
2008-06-12 Stefano SabatiniMake AVCodec long_names definition conditional dependin...
2008-06-08 Justin Rugglesmove rematrixing band table to ac3dec_data.c
2008-06-07 Justin Rugglessplit up header parsing function
2008-06-07 Justin Rugglesstore exp_strategy for all blocks in decode context
2008-06-07 Justin Rugglesstore cpl_in_use for all blocks in decode context
2008-06-07 Justin Rugglesmove the decode context and some macro constants to...
2008-06-07 Justin Rugglesmove mix level tables from parser to decoder. have...
2008-06-07 Justin Rugglesadd more gain levels and adjust mix level tables accord...
2008-06-07 Justin Rugglespass bap table to ff_ac3_bit_alloc_calc_bap()
2008-06-07 Justin Rugglescosmetics: indent
2008-06-07 Justin Rugglesskip unsupported frame types and substream id's
2008-06-07 Justin Rugglesread frame type from header info into decode context
2008-06-07 Justin Rugglesget substreamid from ac3 parser
2008-06-07 Justin Rugglesget the number of blocks from the ac3 parser and use...
2008-06-04 Justin Rugglesreturn error on frame sync error
2008-05-31 Justin Rugglescosmetics: add a comment, remove a comment
2008-05-31 Justin Rugglessimplify
2008-05-31 Justin Rugglesset lfe params at frame init instead of in every block
2008-05-31 Justin Rugglesonly calculate number of exponent groups when exponents...
2008-05-31 Justin Rugglescosmetics: remove unneeded braces
2008-05-31 Justin Ruggles10l: cosmetics
2008-05-31 Justin Rugglesnew dba values requires running last 2 bit allocation...
2008-05-31 Justin Rugglesget_transform_coeffs() never returns an error, so make...
2008-05-31 Justin Rugglesuse enum value for CRC error
2008-05-31 Justin Rugglesmove header error logging to after CRC check
2008-05-27 Justin Ruggleszero the upper frequencies of the correct coefficients
2008-05-25 Justin Rugglessafer solution for setting audio parameters
2008-05-25 Justin Rugglesset audio parameters if frame header is ok, even if...
2008-05-25 Justin Rugglescosmetics: indent
2008-05-25 Justin Rugglesadd error concealment
2008-05-25 Justin Rugglescosmetics: indent
2008-05-25 Justin Ruggles10l: fix error in commit r13382
2008-05-25 Justin Rugglesadd checks for missing information in the first block
2008-05-25 Justin Rugglesadd check for invalid channel mode when coupling is...
2008-05-09 Diego BiurrunUse full path for #includes from another directory.
2008-04-27 Stefano SabatiniAdd long names to AVCodec declarations.
2008-04-22 Bartlomiej Wolowiecchange ff_ac3_parse_header() to take a GetBitContext...
2008-03-28 Bartlomiej Wolowiecchange name from stream type to frame type in AC3 code
2008-03-26 Justin Rugglesonly allocate context input buffer if AVCodecContext...
2008-03-25 Justin Rugglescosmetics: indentation after last commit
2008-03-25 Justin Rugglesadditional protection from segmentation faults and...
2008-03-24 Bartlomiej Wolowiecusing stream type in eac3 parser
2008-03-21 Zuxy MengApply 'cold' attribute to init/uninit functions in...
2008-03-10 Justin Rugglesmake input buffer const, as it should be. fixes a warning.
2008-03-09 Justin Rugglesdownmix before imdct unless different size transforms...
2008-03-01 Justin Rugglesuse scale factor instead of sum for downmix level adjus...
2008-03-01 Justin Rugglespre-calculate downmix coefficient sums. 2% faster 5...
2008-03-01 Justin RugglesUse 24-bit fixed-point transform coefficients until...
2008-01-13 Robert SwainAdd variable alpha and size of half window for Kaiser...
2008-01-12 Robert SwainMake the Kaiser-Bessel window generator a common function
2008-01-08 Justin Rugglesused defined name for testing error resilience level
2008-01-07 Justin Rugglessplit out init of downmix coeffs into a separate functi...
2008-01-06 Justin Rugglesremove unneeded variable from AC3DecodeContext
2008-01-06 Justin Rugglesmake sure that the last coupling band stops at the...
2008-01-06 Justin Rugglesfix phase flag processing for the case when coupling...
2008-01-05 Justin Rugglesmove E-AC3 header parsing to ff_ac3_parse_header()
2008-01-05 Justin Rugglesremove unneeded variables from AC3HeaderInfo
2008-01-05 Justin Rugglescosmetics: indentation
2008-01-05 Justin Rugglescheck for request_channels at codec init
2008-01-04 Aurelien Jacobsimprove CRC API
2008-01-04 Justin Rugglescosmetics: indentation and add a TODO comment
2008-01-03 Justin Rugglesonly check ac3 crc if AVCodecContext.error_resilience > 0
2008-01-03 Justin Rugglesadd crc check to ac3 decoder
2007-12-30 Justin Rugglessimplify
2007-12-30 Justin Rugglespass an AC3DecodeContext to ac3_downmix() instead of...
2007-12-30 Justin Rugglescosmetics: rename sampling_rate to sample_rate
2007-12-30 Justin Rugglesdo not need to cast a (void *)
2007-12-30 Justin Rugglescosmetics: vertical realignment after last commit
2007-12-30 Justin Rugglescosmetics: rename all AC3DecodeContext variables from...
2007-12-30 Justin Rugglescosmetics: rename GetBitContext gb to gbc
2007-12-30 Justin Rugglesremove unused context variable
2007-12-20 Justin RugglesAdd option for user to scale the amount of dynamic...
2007-12-17 Justin RugglesSkip dialog normalization. It shouldn't be used by...
2007-12-17 Justin RugglesRevert commit made in revision 11228. I'm getting some...
2007-12-16 Justin Rugglesdownmix before the IMDCT if no block switching is used
2007-12-15 Andreas ÖmanMake AC3 decoder honor avctx->request_channels
2007-12-09 Justin Rugglescosmetics: rename ac3 decoder variables
2007-12-09 Justin Rugglescosmetics: rename common ac3 variables
2007-12-09 Justin Rugglescosmetics: rename ac3 bit allocation variables
2007-12-09 Justin Rugglescosmetics: rename ac3 tables
2007-12-02 Diego BiurrunMisc spelling fixes, prefer American over British English.
2007-09-15 Justin Rugglesskip incomplete frames
2007-09-15 Justin Rugglesbetter AC3 header error reporting
2007-09-15 Justin Rugglesfix random dithering of zero-bit mantissas
2007-09-15 Justin Rugglescosmetics: rename variables. tbl->tab for consistency...
2007-09-15 Justin Rugglesfix decoding of DolbyNet AC3
2007-08-09 Justin Rugglescosmetics: vertical alignment
2007-08-09 Justin Rugglescomments modification: add, clean up, Doxygenize, and...
2007-08-05 Justin Rugglescosmetics: blank lines, remove some comments
2007-08-05 Justin Rugglesadd pointer to the parent context for use with av_log()
next