]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/history - libavcodec/ra288.c
v210 avi fourcc, v210_720p.avi
[frescor/ffmpeg.git] / libavcodec / ra288.c
2009-04-13 stefanoRename bitstream.h to get_bits.h.
2009-04-07 rbultjeImplement avcodec_decode_video2(), _audio3() and _subti...
2009-02-24 vitorDo not reimplement ff_celp_lp_synthesis_filterf().
2008-10-30 vitorUse ff_dot_productf() in ra288.c
2008-09-26 vitorSimplify: avoid duplication backward_filter()
2008-09-25 vitorDo instead of divising a float by a constant, multiply...
2008-09-24 vitorMove constant multiplication out of the loop
2008-09-24 vitorCosmetics: move convolve() together with the other...
2008-09-24 vitorSimplify: move division by constant off the loop
2008-09-23 michaelMerge the 2 lpc loops.
2008-09-23 michaelFactorize lpc code slightly.
2008-09-17 vitorUse SAMPLE_FMT_FLT instead of doing the float->int...
2008-09-13 vitorCosmetics: line breaks
2008-09-13 vitorSimplify: use a single history buffer for gain and...
2008-09-11 vitorCosmetics: align spec references
2008-09-11 vitorRename function: s/colmult/apply_window/
2008-09-11 diegomisc spelling/wording/grammar fixes
2008-09-10 vitorConvert table to integer.
2008-09-04 vitorAvoid duplicating compute_lpc_coefs() function in both...
2008-08-06 vitorCheck *data_size in decode_frame()
2008-08-06 vitorCosmetics: alignment
2008-08-06 vitorFlip (by making buf[i] -> buf[size-i-1]) two buffers...
2008-08-05 vitorRename prodsum() function to convolve()
2008-07-31 prossModify all codecs to report their supported input and...
2008-07-29 vitorDo not declare a counter as unsigned when it is not...
2008-07-29 vitorCosmetics: rename loop counter vars to i,j
2008-07-28 vitorCosmetics: new line
2008-07-28 vitorRemove the now useless phase variable from context
2008-07-28 vitorCosmetics: make comment match var name
2008-07-28 vitorCosmetics: align comments
2008-07-28 vitorRename two context vars: s/sb/sp_block/, s/lhist/gain_b...
2008-07-28 vitorDeclare temporary buffers to be only of the necessary...
2008-07-28 vitorRemove redundant comments
2008-07-28 vitorCosmetics: do not align with now removed next instruction
2008-07-28 vitorCosmetics: remove braces and useless newline
2008-07-28 vitorChange the way the input is passed to do_hybrid_filter...
2008-07-28 vitorRemove RA288Context.output buffer. This buffer is just...
2008-07-27 vitorAdd a few comments pointing to the G.728 specification
2008-07-27 vitorRemove the history buffer from the context. It can...
2008-07-27 vitorRename two context buffers: pr{1,2} -> {sp,gain}_lpc...
2008-07-27 vitorRemove st1 and st2 temporary buffers in backward_filter...
2008-07-27 vitorChange slightly the meaning of RA288Context.phase....
2008-07-26 vitorRemove st1 and st2 variables from context, since they...
2008-07-26 vitorRename st{1,2}{a,b} context variables to more meaningfu...
2008-07-26 vitorCosmetics: remove useless parenthesis
2008-07-26 vitorMove colmult() function to the begining of file to...
2008-07-26 vitorRemove an useless comment describing colmult()
2008-07-26 vitorRemove an useless comment describing prodsum()
2008-07-26 vitorGive the context variables of ra288 a better name:...
2008-07-26 vitorGive the context structure of ra288 a better name:...
2008-07-24 vitorCosmetics: grammar nits
2008-07-24 vitorRename update() function to backward_filter() and add...
2008-07-24 vitorMore tables renaming/commenting
2008-07-24 vitorFollow FFmpeg convention of returning negative values...
2008-07-24 vitorRename pred() to eval_lpc_coeffs() and add a doxy comment
2008-07-24 vitorGive tables a more descriptive name
2008-07-24 vitorAdd comments to do_hybrid_window()
2008-07-24 vitorGive parameters of do_hybrid_window() more meaningful...
2008-07-24 vitorRename co() function to the much more descriptive name of
2008-07-24 vitorSimplify co(): write constant in a more readable way
2008-07-24 vitorSimplify co(), use memcpy/memmove and colmult() when...
2008-07-19 vitorCosmetics: alignement
2008-07-19 vitorSimplify co(): do not abuse pointer aritmetics
2008-07-19 vitorSimplify co(): remove variables that are only used...
2008-07-17 vitorSimplify: do not overuse pointer aritmetic
2008-07-17 vitorConst
2008-07-17 vitorAnother simplification
2008-07-17 vitorSimplify
2008-07-17 vitorSimplify
2008-07-17 vitorDeclare function parameters as const
2008-07-14 vitorRevert r14218. FFMAX is a macro, so
2008-07-13 vitorSimplify
2008-07-13 vitorAnother av_clipf() usage
2008-07-13 vitorDo not declare as double a var that only stores a float
2008-07-13 vitorSimplify: use FFMAX
2008-07-13 vitorAdd av_clipf() function to common.h and use it in ra288.c
2008-07-06 vitorSimplify: glob->phase is always == 3
2008-07-06 vitorSimplify
2008-07-06 vitorSlighly faster operation
2008-07-06 vitorCosmetics: remove braces
2008-07-06 vitorAnother use of scalar_product_float()
2008-07-06 vitorDo not reimplement memmove()
2008-07-05 vitorCosmetics: remove braces
2008-07-05 vitorCreate a function for float dot product instead of...
2008-07-04 vitorWrite for loops in a more standard way. In my opinion...
2008-07-04 vitorMove vars declaration to inner loop when possible
2008-07-04 vitorSimplify
2008-07-03 vitorRemove unneeded var
2008-07-03 vitorUse a matrix instead of a vector
2008-06-30 vitorRemove useless wrapper around ra288_decode_frame()
2008-06-30 vitorRemove unpack() function, read the bitstream as needed
2008-06-30 vitorClean up error message
2008-06-30 vitorRewrite unpack() using the bitstream reader
2008-06-30 vitorMove function to avoid forward declaration
2008-06-30 vitorRemove useless initialization
2008-06-30 vitorReindent the whole file
2008-06-12 stefanoMake AVCodec long_names definition conditional dependin...
2008-04-27 diegoAdd long names to AVCodec declarations.
2008-02-01 michaelconst
2006-10-07 diegoChange license headers to say 'FFmpeg' instead of ...
next