Mon, 13 Apr 2009 16:20:26 +0000 |
stefano |
Rename bitstream.h to get_bits.h.
libavcodec
|
Tue, 07 Apr 2009 15:59:50 +0000 |
rbultje |
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
libavcodec
|
Tue, 24 Feb 2009 18:11:42 +0000 |
vitor |
Do not reimplement ff_celp_lp_synthesis_filterf().
libavcodec
|
Thu, 30 Oct 2008 22:24:40 +0000 |
vitor |
Use ff_dot_productf() in ra288.c
libavcodec
|
Fri, 26 Sep 2008 18:42:06 +0000 |
vitor |
Simplify: avoid duplication backward_filter()
libavcodec
|
Thu, 25 Sep 2008 20:03:57 +0000 |
vitor |
Do instead of divising a float by a constant, multiply by its inverse
libavcodec
|
Wed, 24 Sep 2008 20:31:24 +0000 |
vitor |
Move constant multiplication out of the loop
libavcodec
|
Wed, 24 Sep 2008 20:05:22 +0000 |
vitor |
Cosmetics: move convolve() together with the other DSP functions
libavcodec
|
Wed, 24 Sep 2008 20:03:58 +0000 |
vitor |
Simplify: move division by constant off the loop
libavcodec
|
Tue, 23 Sep 2008 23:16:48 +0000 |
michael |
Merge the 2 lpc loops.
libavcodec
|
Tue, 23 Sep 2008 22:49:22 +0000 |
michael |
Factorize lpc code slightly.
libavcodec
|
Wed, 17 Sep 2008 19:26:37 +0000 |
vitor |
Use SAMPLE_FMT_FLT instead of doing the float->int conversion in the
libavcodec
|
Sat, 13 Sep 2008 16:56:58 +0000 |
vitor |
Cosmetics: line breaks
libavcodec
|
Sat, 13 Sep 2008 16:49:05 +0000 |
vitor |
Simplify: use a single history buffer for gain and a single one for
libavcodec
|
Thu, 11 Sep 2008 19:10:26 +0000 |
vitor |
Cosmetics: align spec references
libavcodec
|
Thu, 11 Sep 2008 19:06:54 +0000 |
vitor |
Rename function: s/colmult/apply_window/
libavcodec
|
Thu, 11 Sep 2008 08:13:23 +0000 |
diego |
misc spelling/wording/grammar fixes
libavcodec
|
Wed, 10 Sep 2008 19:00:02 +0000 |
vitor |
Convert table to integer.
libavcodec
|
Thu, 04 Sep 2008 11:03:14 +0000 |
vitor |
Avoid duplicating compute_lpc_coefs() function in both the RA288 and AAC decoders.
libavcodec
|
Wed, 06 Aug 2008 03:00:15 +0000 |
vitor |
Check *data_size in decode_frame()
libavcodec
|
Wed, 06 Aug 2008 02:49:22 +0000 |
vitor |
Cosmetics: alignment
libavcodec
|
Wed, 06 Aug 2008 02:44:59 +0000 |
vitor |
Flip (by making buf[i] -> buf[size-i-1]) two buffers: {sp,gain}_block. This
libavcodec
|
Tue, 05 Aug 2008 04:52:33 +0000 |
vitor |
Rename prodsum() function to convolve()
libavcodec
|
Thu, 31 Jul 2008 10:47:31 +0000 |
pross |
Modify all codecs to report their supported input and output sample format(s).
libavcodec
|
Tue, 29 Jul 2008 18:22:31 +0000 |
vitor |
Do not declare a counter as unsigned when it is not needed
libavcodec
|
Tue, 29 Jul 2008 18:20:49 +0000 |
vitor |
Cosmetics: rename loop counter vars to i,j
libavcodec
|
Mon, 28 Jul 2008 10:49:44 +0000 |
vitor |
Cosmetics: new line
libavcodec
|
Mon, 28 Jul 2008 10:49:14 +0000 |
vitor |
Remove the now useless phase variable from context
libavcodec
|
Mon, 28 Jul 2008 05:18:39 +0000 |
vitor |
Cosmetics: make comment match var name
libavcodec
|
Mon, 28 Jul 2008 05:16:51 +0000 |
vitor |
Cosmetics: align comments
libavcodec
|
Mon, 28 Jul 2008 04:53:05 +0000 |
vitor |
Rename two context vars: s/sb/sp_block/, s/lhist/gain_block/
libavcodec
|
Mon, 28 Jul 2008 04:37:58 +0000 |
vitor |
Declare temporary buffers to be only of the necessary size
libavcodec
|
Mon, 28 Jul 2008 04:25:51 +0000 |
vitor |
Remove redundant comments
libavcodec
|
Mon, 28 Jul 2008 04:24:08 +0000 |
vitor |
Cosmetics: do not align with now removed next instruction
libavcodec
|
Mon, 28 Jul 2008 04:07:18 +0000 |
vitor |
Cosmetics: remove braces and useless newline
libavcodec
|
Mon, 28 Jul 2008 02:55:47 +0000 |
vitor |
Change the way the input is passed to do_hybrid_filter(). Before, in[0] was
libavcodec
|
Mon, 28 Jul 2008 02:53:07 +0000 |
vitor |
Remove RA288Context.output buffer. This buffer is just RA288Context.sb
libavcodec
|
Sun, 27 Jul 2008 22:22:51 +0000 |
vitor |
Add a few comments pointing to the G.728 specification
libavcodec
|
Sun, 27 Jul 2008 22:21:41 +0000 |
vitor |
Remove the history buffer from the context. It can easily be evaluated
libavcodec
|
Sun, 27 Jul 2008 20:58:29 +0000 |
vitor |
Rename two context buffers: pr{1,2} -> {sp,gain}_lpc. Also add a few doxy
libavcodec
|
Sun, 27 Jul 2008 20:55:27 +0000 |
vitor |
Remove st1 and st2 temporary buffers in backward_filter() and use instead
libavcodec
|
Sun, 27 Jul 2008 20:35:32 +0000 |
vitor |
Change slightly the meaning of RA288Context.phase. This
libavcodec
|
Sat, 26 Jul 2008 15:14:50 +0000 |
vitor |
Remove st1 and st2 variables from context, since they could be just local vars
libavcodec
|
Sat, 26 Jul 2008 15:10:17 +0000 |
vitor |
Rename st{1,2}{a,b} context variables to more meaningful names: {sp,gain}_{rec,hist}
libavcodec
|
Sat, 26 Jul 2008 14:38:29 +0000 |
vitor |
Cosmetics: remove useless parenthesis
libavcodec
|
Sat, 26 Jul 2008 14:35:50 +0000 |
vitor |
Move colmult() function to the beginning of file to group DSP-related functions.
libavcodec
|
Sat, 26 Jul 2008 14:33:53 +0000 |
vitor |
Remove an useless comment describing colmult()
libavcodec
|
Sat, 26 Jul 2008 14:33:25 +0000 |
vitor |
Remove an useless comment describing prodsum()
libavcodec
|
Sat, 26 Jul 2008 14:31:47 +0000 |
vitor |
Give the context variables of ra288 a better name: s/glob/ractx/
libavcodec
|
Sat, 26 Jul 2008 14:29:39 +0000 |
vitor |
Give the context structure of ra288 a better name: s/Real288_internal/RA288Context/
libavcodec
|
Thu, 24 Jul 2008 11:55:01 +0000 |
vitor |
Cosmetics: grammar nits
libavcodec
|
Thu, 24 Jul 2008 04:29:23 +0000 |
vitor |
Rename update() function to backward_filter() and add a doxy comment
libavcodec
|
Thu, 24 Jul 2008 04:15:50 +0000 |
vitor |
Rename and comment bandwidth broadening tables
libavcodec
|
Thu, 24 Jul 2008 04:07:50 +0000 |
vitor |
Follow FFmpeg convention of returning negative values on error in eval_lpc_coeffs()
libavcodec
|
Thu, 24 Jul 2008 04:05:41 +0000 |
vitor |
Rename pred() to eval_lpc_coeffs() and add a doxy comment
libavcodec
|
Thu, 24 Jul 2008 03:50:06 +0000 |
vitor |
Give windowing tables a more descriptive name
libavcodec
|
Thu, 24 Jul 2008 03:28:42 +0000 |
vitor |
Add comments to do_hybrid_window()
libavcodec
|
Thu, 24 Jul 2008 03:28:01 +0000 |
vitor |
Give parameters of do_hybrid_window() more meaningful names
libavcodec
|
Thu, 24 Jul 2008 03:23:51 +0000 |
vitor |
Rename co() function to the much more descriptive name of
libavcodec
|
Thu, 24 Jul 2008 03:22:19 +0000 |
vitor |
Simplify co(): write constant in a more readable way
libavcodec
|
Thu, 24 Jul 2008 03:19:52 +0000 |
vitor |
Simplify co(), use memcpy/memmove and colmult() when useful.
libavcodec
|
Sat, 19 Jul 2008 15:43:34 +0000 |
vitor |
Cosmetics: alignment
libavcodec
|
Sat, 19 Jul 2008 15:41:15 +0000 |
vitor |
Simplify co(): do not abuse pointer aritmetics
libavcodec
|
Sat, 19 Jul 2008 15:32:29 +0000 |
vitor |
Simplify co(): remove variables that are only used once
libavcodec
|
Thu, 17 Jul 2008 23:48:53 +0000 |
vitor |
Simplify: do not overuse pointer aritmetic
libavcodec
|
Thu, 17 Jul 2008 23:02:52 +0000 |
vitor |
Declare parameters of pred() that could be const as such
libavcodec
|
Thu, 17 Jul 2008 23:01:31 +0000 |
vitor |
Another simplification
libavcodec
|
Thu, 17 Jul 2008 22:59:53 +0000 |
vitor |
Simplify
libavcodec
|
Thu, 17 Jul 2008 22:42:21 +0000 |
vitor |
Simplify
libavcodec
|
Thu, 17 Jul 2008 22:39:29 +0000 |
vitor |
Declare function parameters as const
libavcodec
|
Mon, 14 Jul 2008 14:41:01 +0000 |
vitor |
Revert r14218. FFMAX is a macro, so
libavcodec
|
Sun, 13 Jul 2008 20:41:09 +0000 |
vitor |
Simplify
libavcodec
|
Sun, 13 Jul 2008 20:39:55 +0000 |
vitor |
Another av_clipf() usage
libavcodec
|
Sun, 13 Jul 2008 20:38:42 +0000 |
vitor |
Do not declare as double a var that only stores a float
libavcodec
|
Sun, 13 Jul 2008 20:36:32 +0000 |
vitor |
Simplify: use FFMAX
libavcodec
|
Sun, 13 Jul 2008 19:59:44 +0000 |
vitor |
Add av_clipf() function to common.h and use it in ra288.c
libavcodec
|
Sun, 06 Jul 2008 14:23:30 +0000 |
vitor |
Simplify: glob->phase is always == 3
libavcodec
|
Sun, 06 Jul 2008 12:03:21 +0000 |
vitor |
Remove phasep context var, it is just phase*5
libavcodec
|
Sun, 06 Jul 2008 12:01:59 +0000 |
vitor |
Slighly faster operation
libavcodec
|
Sun, 06 Jul 2008 10:35:01 +0000 |
vitor |
Cosmetics: remove braces
libavcodec
|
Sun, 06 Jul 2008 10:32:29 +0000 |
vitor |
Another use of scalar_product_float()
libavcodec
|
Sun, 06 Jul 2008 10:30:21 +0000 |
vitor |
Do not reimplement memmove()
libavcodec
|
Sat, 05 Jul 2008 18:43:24 +0000 |
vitor |
Cosmetics: remove braces
libavcodec
|
Sat, 05 Jul 2008 18:42:08 +0000 |
vitor |
Create a function for float dot product instead of duplicating all over the file
libavcodec
|
Fri, 04 Jul 2008 19:55:58 +0000 |
vitor |
Write for loops in a more standard way. In my opinion, they are much more readable now.
libavcodec
|
Fri, 04 Jul 2008 15:37:52 +0000 |
vitor |
Move vars declaration to inner loop when possible
libavcodec
|
Fri, 04 Jul 2008 15:32:04 +0000 |
vitor |
Simplify
libavcodec
|
Thu, 03 Jul 2008 19:25:12 +0000 |
vitor |
Remove unneeded var
libavcodec
|
Thu, 03 Jul 2008 19:23:42 +0000 |
vitor |
Use a matrix instead of a vector
libavcodec
|
Mon, 30 Jun 2008 19:30:27 +0000 |
vitor |
Remove useless wrapper around ra288_decode_frame()
libavcodec
|
Mon, 30 Jun 2008 19:09:00 +0000 |
vitor |
Remove unpack() function, read the bitstream as needed
libavcodec
|
Mon, 30 Jun 2008 18:39:11 +0000 |
vitor |
Clean up error message
libavcodec
|
Mon, 30 Jun 2008 18:36:45 +0000 |
vitor |
Rewrite unpack() using the bitstream reader
libavcodec
|
Mon, 30 Jun 2008 16:57:27 +0000 |
vitor |
Move function to avoid forward declaration
libavcodec
|
Mon, 30 Jun 2008 16:54:49 +0000 |
vitor |
Remove useless initialization
libavcodec
|
Mon, 30 Jun 2008 16:53:33 +0000 |
vitor |
Reindent the whole file
libavcodec
|
Thu, 12 Jun 2008 21:50:13 +0000 |
stefano |
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
libavcodec
|
Sun, 27 Apr 2008 22:39:51 +0000 |
diego |
Add long names to AVCodec declarations.
libavcodec
|
Fri, 01 Feb 2008 15:43:53 +0000 |
michael |
const
libavcodec
|
Sat, 07 Oct 2006 15:30:46 +0000 |
diego |
Change license headers to say 'FFmpeg' instead of 'this program/this library'
libavcodec
|
Thu, 12 Jan 2006 22:43:26 +0000 |
diego |
Update licensing information: The FSF changed postal address.
libavcodec
|
Thu, 22 Dec 2005 01:10:11 +0000 |
diego |
COSMETICS: tabs --> spaces, some prettyprinting
libavcodec
|
Sat, 17 Dec 2005 18:14:38 +0000 |
diego |
COSMETICS: Remove all trailing whitespace.
libavcodec
|
Fri, 09 Dec 2005 16:08:18 +0000 |
rtognimp |
Cook compatibe decoder, patch by Benjamin Larsson
libavcodec
|
Wed, 06 Oct 2004 08:50:46 +0000 |
kabi |
* fixing a few of gcc 'clean-code' warnings
libavcodec
|
Tue, 18 May 2004 17:09:46 +0000 |
michael |
some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
libavcodec
|
Mon, 03 Nov 2003 13:26:22 +0000 |
michael |
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
libavcodec
|
Sun, 24 Aug 2003 22:08:22 +0000 |
bellard |
removed unused variables
libavcodec
|
Sun, 29 Jun 2003 19:11:55 +0000 |
al3x |
moved the tables into header files (and applied the 'static' patch). Nick: why do you like mergeing tables and code into one file, so making it unusable big?
libavcodec
|
Wed, 18 Jun 2003 06:37:23 +0000 |
nickols_k |
optimization: merge phases 0 and 1
libavcodec
|
Tue, 17 Jun 2003 07:48:50 +0000 |
nickols_k |
to be more precise
libavcodec
|
Tue, 17 Jun 2003 07:22:31 +0000 |
nickols_k |
finally works now
libavcodec
|
Mon, 16 Jun 2003 08:28:43 +0000 |
nickols_k |
some useful warning
libavcodec
|
Fri, 13 Jun 2003 09:36:13 +0000 |
kabi |
* removed redundant includes (they were even wrongly used)
libavcodec
|
Fri, 13 Jun 2003 08:31:40 +0000 |
nickols_k |
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
libavcodec
|