]> git.sesse.net Git - ffmpeg/history - libavcodec/ra288.c
Use AV_GCC_VERSION_AT_LEAST() to simplify gcc version checks.
[ffmpeg] / libavcodec / ra288.c
2008-10-30 Vitor SessakUse ff_dot_productf() in ra288.c
2008-09-26 Vitor SessakSimplify: avoid duplication backward_filter()
2008-09-25 Vitor SessakDo instead of divising a float by a constant, multiply...
2008-09-24 Vitor SessakMove constant multiplication out of the loop
2008-09-24 Vitor SessakCosmetics: move convolve() together with the other...
2008-09-24 Vitor SessakSimplify: move division by constant off the loop
2008-09-23 Michael NiedermayerMerge the 2 lpc loops.
2008-09-23 Michael NiedermayerFactorize lpc code slightly.
2008-09-17 Vitor SessakUse SAMPLE_FMT_FLT instead of doing the float->int...
2008-09-13 Vitor SessakCosmetics: line breaks
2008-09-13 Vitor SessakSimplify: use a single history buffer for gain and...
2008-09-11 Vitor SessakCosmetics: align spec references
2008-09-11 Vitor SessakRename function: s/colmult/apply_window/
2008-09-11 Diego Biurrunmisc spelling/wording/grammar fixes
2008-09-10 Vitor SessakConvert table to integer.
2008-09-04 Vitor SessakAvoid duplicating compute_lpc_coefs() function in both...
2008-08-06 Vitor SessakCheck *data_size in decode_frame()
2008-08-06 Vitor SessakCosmetics: alignment
2008-08-06 Vitor SessakFlip (by making buf[i] -> buf[size-i-1]) two buffers...
2008-08-05 Vitor SessakRename prodsum() function to convolve()
2008-07-31 Peter RossModify all codecs to report their supported input and...
2008-07-29 Vitor SessakDo not declare a counter as unsigned when it is not...
2008-07-29 Vitor SessakCosmetics: rename loop counter vars to i,j
2008-07-28 Vitor SessakCosmetics: new line
2008-07-28 Vitor SessakRemove the now useless phase variable from context
2008-07-28 Vitor SessakCosmetics: make comment match var name
2008-07-28 Vitor SessakCosmetics: align comments
2008-07-28 Vitor SessakRename two context vars: s/sb/sp_block/, s/lhist/gain_b...
2008-07-28 Vitor SessakDeclare temporary buffers to be only of the necessary...
2008-07-28 Vitor SessakRemove redundant comments
2008-07-28 Vitor SessakCosmetics: do not align with now removed next instruction
2008-07-28 Vitor SessakCosmetics: remove braces and useless newline
2008-07-28 Vitor SessakChange the way the input is passed to do_hybrid_filter...
2008-07-28 Vitor SessakRemove RA288Context.output buffer. This buffer is just...
2008-07-27 Vitor SessakAdd a few comments pointing to the G.728 specification
2008-07-27 Vitor SessakRemove the history buffer from the context. It can...
2008-07-27 Vitor SessakRename two context buffers: pr{1,2} -> {sp,gain}_lpc...
2008-07-27 Vitor SessakRemove st1 and st2 temporary buffers in backward_filter...
2008-07-27 Vitor SessakChange slightly the meaning of RA288Context.phase....
2008-07-26 Vitor SessakRemove st1 and st2 variables from context, since they...
2008-07-26 Vitor SessakRename st{1,2}{a,b} context variables to more meaningfu...
2008-07-26 Vitor SessakCosmetics: remove useless parenthesis
2008-07-26 Vitor SessakMove colmult() function to the beginning of file to...
2008-07-26 Vitor SessakRemove an useless comment describing colmult()
2008-07-26 Vitor SessakRemove an useless comment describing prodsum()
2008-07-26 Vitor SessakGive the context variables of ra288 a better name:...
2008-07-26 Vitor SessakGive the context structure of ra288 a better name:...
2008-07-24 Vitor SessakCosmetics: grammar nits
2008-07-24 Vitor SessakRename update() function to backward_filter() and add...
2008-07-24 Vitor SessakRename and comment bandwidth broadening tables
2008-07-24 Vitor SessakFollow FFmpeg convention of returning negative values...
2008-07-24 Vitor SessakRename pred() to eval_lpc_coeffs() and add a doxy comment
2008-07-24 Vitor SessakGive windowing tables a more descriptive name
2008-07-24 Vitor SessakAdd comments to do_hybrid_window()
2008-07-24 Vitor SessakGive parameters of do_hybrid_window() more meaningful...
2008-07-24 Vitor SessakRename co() function to the much more descriptive name of
2008-07-24 Vitor SessakSimplify co(): write constant in a more readable way
2008-07-24 Vitor SessakSimplify co(), use memcpy/memmove and colmult() when...
2008-07-19 Vitor SessakCosmetics: alignment
2008-07-19 Vitor SessakSimplify co(): do not abuse pointer aritmetics
2008-07-19 Vitor SessakSimplify co(): remove variables that are only used...
2008-07-17 Vitor SessakSimplify: do not overuse pointer aritmetic
2008-07-17 Vitor SessakDeclare parameters of pred() that could be const as...
2008-07-17 Vitor SessakAnother simplification
2008-07-17 Vitor SessakSimplify
2008-07-17 Vitor SessakSimplify
2008-07-17 Vitor SessakDeclare function parameters as const
2008-07-14 Vitor SessakRevert r14218. FFMAX is a macro, so
2008-07-13 Vitor SessakSimplify
2008-07-13 Vitor SessakAnother av_clipf() usage
2008-07-13 Vitor SessakDo not declare as double a var that only stores a float
2008-07-13 Vitor SessakSimplify: use FFMAX
2008-07-13 Vitor SessakAdd av_clipf() function to common.h and use it in ra288.c
2008-07-06 Vitor SessakSimplify: glob->phase is always == 3
2008-07-06 Vitor SessakRemove phasep context var, it is just phase*5
2008-07-06 Vitor SessakSlighly faster operation
2008-07-06 Vitor SessakCosmetics: remove braces
2008-07-06 Vitor SessakAnother use of scalar_product_float()
2008-07-06 Vitor SessakDo not reimplement memmove()
2008-07-05 Vitor SessakCosmetics: remove braces
2008-07-05 Vitor SessakCreate a function for float dot product instead of...
2008-07-04 Vitor SessakWrite for loops in a more standard way. In my opinion...
2008-07-04 Vitor SessakMove vars declaration to inner loop when possible
2008-07-04 Vitor SessakSimplify
2008-07-03 Vitor SessakRemove unneeded var
2008-07-03 Vitor SessakUse a matrix instead of a vector
2008-06-30 Vitor SessakRemove useless wrapper around ra288_decode_frame()
2008-06-30 Vitor SessakRemove unpack() function, read the bitstream as needed
2008-06-30 Vitor SessakClean up error message
2008-06-30 Vitor SessakRewrite unpack() using the bitstream reader
2008-06-30 Vitor SessakMove function to avoid forward declaration
2008-06-30 Vitor SessakRemove useless initialization
2008-06-30 Vitor SessakReindent the whole file
2008-06-12 Stefano SabatiniMake AVCodec long_names definition conditional dependin...
2008-04-27 Stefano SabatiniAdd long names to AVCodec declarations.
2008-02-01 Michael Niedermayerconst
2006-10-07 Diego BiurrunChange license headers to say 'FFmpeg' instead of ...
2006-01-12 Diego BiurrunUpdate licensing information: The FSF changed postal...
2005-12-22 Diego BiurrunCOSMETICS: tabs --> spaces, some prettyprinting
2005-12-17 Diego BiurrunCOSMETICS: Remove all trailing whitespace.
next