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
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
2009-02-24Do not reimplement ff_celp_lp_synthesis_filterf().Vitor Sessak
2008-10-31Use ff_dot_productf() in ra288.cVitor Sessak
2008-09-26Simplify: avoid duplication backward_filter()Vitor Sessak
2008-09-26Do instead of divising a float by a constant, multiply by its inverseVitor Sessak
2008-09-25Move constant multiplication out of the loopVitor Sessak
2008-09-25Cosmetics: move convolve() together with the other DSP functionsVitor Sessak
2008-09-25Simplify: move division by constant off the loopVitor Sessak
2008-09-24Merge the 2 lpc loops.Michael Niedermayer
2008-09-24Factorize lpc code slightly.Michael Niedermayer
2008-09-17Use SAMPLE_FMT_FLT instead of doing the float->int conversion in theVitor Sessak
2008-09-13Cosmetics: line breaksVitor Sessak
2008-09-13Simplify: use a single history buffer for gain and a single one forVitor Sessak
2008-09-11Cosmetics: align spec referencesVitor Sessak
2008-09-11Rename function: s/colmult/apply_window/Vitor Sessak
2008-09-11misc spelling/wording/grammar fixesDiego Biurrun
2008-09-10Convert table to integer.Vitor Sessak
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