| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Cosmetics: alignment | Vitor Sessak | 2008-08-06 | 1 | -2/+2 |
* | Flip (by making buf[i] -> buf[size-i-1]) two buffers: {sp,gain}_block. This | Vitor Sessak | 2008-08-06 | 1 | -21/+18 |
* | Rename prodsum() function to convolve() | Vitor Sessak | 2008-08-05 | 1 | -3/+3 |
* | Modify all codecs to report their supported input and output sample format(s). | Peter Ross | 2008-07-31 | 1 | -1/+7 |
* | Do not declare a counter as unsigned when it is not needed | Vitor Sessak | 2008-07-29 | 1 | -1/+1 |
* | Cosmetics: rename loop counter vars to i,j | Vitor Sessak | 2008-07-29 | 1 | -33/+33 |
* | Cosmetics: new line | Vitor Sessak | 2008-07-28 | 1 | -0/+1 |
* | Remove the now useless phase variable from context | Vitor Sessak | 2008-07-28 | 1 | -3/+1 |
* | Cosmetics: make comment match var name | Vitor Sessak | 2008-07-28 | 1 | -1/+1 |
* | Cosmetics: align comments | Vitor Sessak | 2008-07-28 | 1 | -3/+3 |
* | Rename two context vars: s/sb/sp_block/, s/lhist/gain_block/ | Vitor Sessak | 2008-07-28 | 1 | -11/+13 |
* | Declare temporary buffers to be only of the necessary size | Vitor Sessak | 2008-07-28 | 1 | -3/+3 |
* | Remove redundant comments | Vitor Sessak | 2008-07-28 | 1 | -2/+0 |
* | Cosmetics: do not align with now removed next instruction | Vitor Sessak | 2008-07-28 | 1 | -1/+1 |
* | Cosmetics: remove braces and useless newline | Vitor Sessak | 2008-07-28 | 1 | -4/+2 |
* | Change the way the input is passed to do_hybrid_filter(). Before, in[0] was | Vitor Sessak | 2008-07-28 | 1 | -12/+10 |
* | Remove RA288Context.output buffer. This buffer is just RA288Context.sb | Vitor Sessak | 2008-07-28 | 1 | -4/+7 |
* | Add a few comments pointing to the G.728 specification | Vitor Sessak | 2008-07-27 | 1 | -1/+3 |
* | Remove the history buffer from the context. It can easily be evaluated | Vitor Sessak | 2008-07-27 | 1 | -3/+7 |
* | Rename two context buffers: pr{1,2} -> {sp,gain}_lpc. Also add a few doxy | Vitor Sessak | 2008-07-27 | 1 | -15/+16 |
* | Remove st1 and st2 temporary buffers in backward_filter() and use instead | Vitor Sessak | 2008-07-27 | 1 | -6/+4 |
* | Change slightly the meaning of RA288Context.phase. This | Vitor Sessak | 2008-07-27 | 1 | -12/+6 |
* | Remove st1 and st2 variables from context, since they could be just local vars | Vitor Sessak | 2008-07-26 | 1 | -6/+6 |
* | Rename st{1,2}{a,b} context variables to more meaningful names: {sp,gain}_{re... | Vitor Sessak | 2008-07-26 | 1 | -4/+14 |
* | Cosmetics: remove useless parenthesis | Vitor Sessak | 2008-07-26 | 1 | -1/+1 |
* | Move colmult() function to the beginning of file to group DSP-related functions. | Vitor Sessak | 2008-07-26 | 1 | -6/+6 |
* | Remove an useless comment describing colmult() | Vitor Sessak | 2008-07-26 | 1 | -1/+0 |
* | Remove an useless comment describing prodsum() | Vitor Sessak | 2008-07-26 | 1 | -1/+0 |
* | Give the context variables of ra288 a better name: s/glob/ractx/ | Vitor Sessak | 2008-07-26 | 1 | -26/+26 |
* | Give the context structure of ra288 a better name: s/Real288_internal/RA288Co... | Vitor Sessak | 2008-07-26 | 1 | -5/+5 |
* | Cosmetics: grammar nits | Vitor Sessak | 2008-07-24 | 1 | -2/+2 |
* | Rename update() function to backward_filter() and add a doxy comment | Vitor Sessak | 2008-07-24 | 1 | -2/+5 |
* | Rename and comment bandwidth broadening tables | Vitor Sessak | 2008-07-24 | 1 | -2/+2 |
* | Follow FFmpeg convention of returning negative values on error in eval_lpc_co... | Vitor Sessak | 2008-07-24 | 1 | -7/+7 |
* | Rename pred() to eval_lpc_coeffs() and add a doxy comment | Vitor Sessak | 2008-07-24 | 1 | -3/+9 |
* | Give windowing tables a more descriptive name | Vitor Sessak | 2008-07-24 | 1 | -2/+2 |
* | Add comments to do_hybrid_window() | Vitor Sessak | 2008-07-24 | 1 | -1/+15 |
* | Give parameters of do_hybrid_window() more meaningful names | Vitor Sessak | 2008-07-24 | 1 | -12/+15 |
* | Rename co() function to the much more descriptive name of | Vitor Sessak | 2008-07-24 | 1 | -4/+6 |
* | Simplify co(): write constant in a more readable way | Vitor Sessak | 2008-07-24 | 1 | -1/+1 |
* | Simplify co(), use memcpy/memmove and colmult() when useful. | Vitor Sessak | 2008-07-24 | 1 | -8/+4 |
* | Cosmetics: alignment | Vitor Sessak | 2008-07-19 | 1 | -3/+3 |
* | Simplify co(): do not abuse pointer aritmetics | Vitor Sessak | 2008-07-19 | 1 | -3/+4 |
* | Simplify co(): remove variables that are only used once | Vitor Sessak | 2008-07-19 | 1 | -5/+3 |
* | Simplify: do not overuse pointer aritmetic | Vitor Sessak | 2008-07-17 | 1 | -8/+5 |
* | Declare parameters of pred() that could be const as such | Vitor Sessak | 2008-07-17 | 1 | -1/+1 |
* | Another simplification | Vitor Sessak | 2008-07-17 | 1 | -3/+1 |
* | Simplify | Vitor Sessak | 2008-07-17 | 1 | -2/+4 |
* | Simplify | Vitor Sessak | 2008-07-17 | 1 | -4/+3 |
* | Declare function parameters as const | Vitor Sessak | 2008-07-17 | 1 | -5/+6 |