Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2008-09-04Avoid duplicating compute_lpc_coefs() function in both the RA288 and AAC deco...Vitor Sessak
2008-08-06Check *data_size in decode_frame()Vitor Sessak
2008-08-06Cosmetics: alignmentVitor Sessak
2008-08-06Flip (by making buf[i] -> buf[size-i-1]) two buffers: {sp,gain}_block. ThisVitor Sessak
2008-08-05Rename prodsum() function to convolve()Vitor Sessak
2008-07-31Modify all codecs to report their supported input and output sample format(s).Peter Ross
2008-07-29Do not declare a counter as unsigned when it is not neededVitor Sessak
2008-07-29Cosmetics: rename loop counter vars to i,jVitor Sessak
2008-07-28Cosmetics: new lineVitor Sessak
2008-07-28Remove the now useless phase variable from contextVitor Sessak
2008-07-28Cosmetics: make comment match var nameVitor Sessak
2008-07-28Cosmetics: align commentsVitor Sessak
2008-07-28Rename two context vars: s/sb/sp_block/, s/lhist/gain_block/Vitor Sessak
2008-07-28Declare temporary buffers to be only of the necessary sizeVitor Sessak
2008-07-28Remove redundant commentsVitor Sessak
2008-07-28Cosmetics: do not align with now removed next instructionVitor Sessak
2008-07-28Cosmetics: remove braces and useless newlineVitor Sessak
2008-07-28Change the way the input is passed to do_hybrid_filter(). Before, in[0] wasVitor Sessak
2008-07-28Remove RA288Context.output buffer. This buffer is just RA288Context.sbVitor Sessak
2008-07-28Add a few comments pointing to the G.728 specificationVitor Sessak
2008-07-28Remove the history buffer from the context. It can easily be evaluatedVitor Sessak
2008-07-28Rename two context buffers: pr{1,2} -> {sp,gain}_lpc. Also add a few doxyVitor Sessak
2008-07-28Remove st1 and st2 temporary buffers in backward_filter() and use insteadVitor Sessak
2008-07-28Change slightly the meaning of RA288Context.phase. ThisVitor Sessak
2008-07-26Remove st1 and st2 variables from context, since they could be just local varsVitor Sessak
2008-07-26Rename st{1,2}{a,b} context variables to more meaningful names: {sp,gain}_{re...Vitor Sessak
2008-07-26Cosmetics: remove useless parenthesisVitor Sessak
2008-07-26Move colmult() function to the beginning of file to group DSP-related functions.Vitor Sessak
2008-07-26Remove an useless comment describing colmult()Vitor Sessak
2008-07-26Remove an useless comment describing prodsum()Vitor Sessak
2008-07-26Give the context variables of ra288 a better name: s/glob/ractx/Vitor Sessak
2008-07-26Give the context structure of ra288 a better name: s/Real288_internal/RA288Co...Vitor Sessak
2008-07-24Cosmetics: grammar nitsVitor Sessak
2008-07-24Rename update() function to backward_filter() and add a doxy commentVitor Sessak
2008-07-24Rename and comment bandwidth broadening tablesVitor Sessak
2008-07-24Follow FFmpeg convention of returning negative values on error in eval_lpc_co...Vitor Sessak
2008-07-24Rename pred() to eval_lpc_coeffs() and add a doxy commentVitor Sessak
2008-07-24Give windowing tables a more descriptive nameVitor Sessak
2008-07-24Add comments to do_hybrid_window()Vitor Sessak
2008-07-24Give parameters of do_hybrid_window() more meaningful namesVitor Sessak
2008-07-24Rename co() function to the much more descriptive name ofVitor Sessak
2008-07-24Simplify co(): write constant in a more readable wayVitor Sessak
2008-07-24Simplify co(), use memcpy/memmove and colmult() when useful.Vitor Sessak
2008-07-19Cosmetics: alignmentVitor Sessak
2008-07-19Simplify co(): do not abuse pointer aritmeticsVitor Sessak
2008-07-19Simplify co(): remove variables that are only used onceVitor Sessak
2008-07-18Simplify: do not overuse pointer aritmeticVitor Sessak
2008-07-18Declare parameters of pred() that could be const as suchVitor Sessak
2008-07-18Another simplificationVitor Sessak
2008-07-18SimplifyVitor Sessak