log mlpdec.c @ 12488:351a81a23343 libavcodec

age author description
Wed, 30 Jun 2010 15:38:06 +0000 mru Fix grammar errors in documentation libavcodec
Tue, 11 May 2010 01:46:13 +0000 ramiro mlpdec: Comment channel_params field in struct SubStream. libavcodec
Tue, 11 May 2010 01:44:52 +0000 ramiro mlpdec: Allocate channel decoding parameters for each substream. Some file libavcodec
Tue, 20 Apr 2010 14:45:34 +0000 diego Remove explicit filename from Doxygen @file commands. libavcodec
Tue, 30 Mar 2010 23:30:55 +0000 stefano Define AVMediaType enum, and use it instead of enum CodecType, which libavcodec
Wed, 27 Jan 2010 20:02:18 +0000 reimar Reduce log level of "Extracting .. channel downmix" to AV_LOG_DEBUG, the libavcodec
Sun, 24 Jan 2010 18:07:29 +0000 reimar Fix crash in MLP decoder due to integer overflow. libavcodec
Tue, 29 Dec 2009 17:20:19 +0000 diego Remove pointless CONFIG_MLP_DECODER preprocessor check. libavcodec
Fri, 16 Oct 2009 16:12:04 +0000 ramiro mlp: Indent. libavcodec
Fri, 16 Oct 2009 16:10:00 +0000 ramiro mlp: Only initialize VLC tables once. This caused a crash when multiple libavcodec
Fri, 15 May 2009 15:34:22 +0000 ramiro mlp: Simplify adressing of state and coeffs arrays for both filters by making libavcodec
Wed, 06 May 2009 16:01:28 +0000 ramiro mlpdec: Fix possible writing out of array bounds introduced by being libavcodec
Wed, 06 May 2009 15:46:10 +0000 ramiro mlpdec: Split sync word error and MLP sync word check. libavcodec
Wed, 06 May 2009 15:37:25 +0000 ramiro mlpdec: Fix indentation that got mangled from copy&paste. libavcodec
Thu, 30 Apr 2009 12:30:05 +0000 ramiro mlpdec: Move MLP's filter_channel() to dsputils. libavcodec
Sun, 26 Apr 2009 20:37:40 +0000 ramiro mlpdec: Simplify filtering code by using only one counter variable. libavcodec
Tue, 21 Apr 2009 22:53:46 +0000 ramiro mlpdec: Don't overallocate buffers. libavcodec
Tue, 21 Apr 2009 22:32:50 +0000 ramiro mlpdec: Validate num_primitive_matrices. libavcodec
Tue, 21 Apr 2009 22:12:30 +0000 ramiro mlpdec: Validate max_channel and max_matrix_channel. libavcodec
Tue, 21 Apr 2009 21:57:23 +0000 ramiro mlpdec: Restart header sync must be 0x31ea for MLP. libavcodec
Sat, 18 Apr 2009 20:23:13 +0000 ramiro mlpdec: Read context variable to local variable to make code cleaner. libavcodec
Sat, 18 Apr 2009 19:52:52 +0000 ramiro mlpdec: {}- and whitespace-related cosmetics. libavcodec
Sat, 18 Apr 2009 19:46:41 +0000 ramiro mlpdec: Use some context arrays with local variables in rematrix_channels(). libavcodec
Sat, 18 Apr 2009 19:39:07 +0000 ramiro truehd: Simplify rematrix_channels() as per Michael's original review. libavcodec
Sat, 18 Apr 2009 18:54:30 +0000 ramiro mlpdec: Make read_matrix_params() take unsigned int substr for consistency. libavcodec
Sat, 18 Apr 2009 18:51:43 +0000 ramiro mlpdec: Check for {matrix,filter}_changed as soon as they are incremented. libavcodec
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
Mon, 06 Apr 2009 00:58:03 +0000 ramiro mlpdec: Filters and matrices may change only once per substream per access unit. libavcodec
Sun, 05 Apr 2009 20:54:19 +0000 ramiro mlpdec: There must be no extraword for MLP. libavcodec
Sun, 05 Apr 2009 20:46:53 +0000 ramiro mlpdec: Validate non-restart bit from the substream header. libavcodec
Sun, 05 Apr 2009 20:11:40 +0000 ramiro mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not max_channel. libavcodec
Mon, 30 Mar 2009 03:46:52 +0000 ramiro mlpdec: Simplify check for substream_parity_present. libavcodec
Mon, 30 Mar 2009 03:44:20 +0000 ramiro mlpdec: Simplify no restart header seen error. libavcodec
Mon, 30 Mar 2009 03:42:40 +0000 ramiro mlpdec: Simplify substream length mismatch error. libavcodec
Mon, 30 Mar 2009 03:37:19 +0000 ramiro mlpdec: Prettify substream parity check. libavcodec
Mon, 30 Mar 2009 03:34:15 +0000 ramiro mlpdec: Cleaner and better termination word check. libavcodec
Mon, 30 Mar 2009 03:20:01 +0000 ramiro mlpdec: More validation for read_channel_params() libavcodec
Mon, 30 Mar 2009 03:12:39 +0000 ramiro mlpdec: whitespace cosmetics. libavcodec
Mon, 30 Mar 2009 03:08:55 +0000 ramiro mlpdec: Simplify &foo[0] to foo and use index (which has just been initialized libavcodec
Mon, 30 Mar 2009 03:05:38 +0000 ramiro mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir. libavcodec
Mon, 30 Mar 2009 02:59:45 +0000 ramiro mlpdec: Unroll copying filter state data and filtering for the two filters. libavcodec
Mon, 30 Mar 2009 02:54:19 +0000 ramiro mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively. libavcodec
Sat, 28 Mar 2009 00:53:52 +0000 ramiro mlpdec: Remove few random dprintf()s. libavcodec
Fri, 27 Mar 2009 23:55:38 +0000 ramiro mlpdec: Check for blocksize in proper range. libavcodec
Fri, 27 Mar 2009 23:48:08 +0000 ramiro mlpdec: quant_step_size can be any value from 0 to 0xF. libavcodec
Fri, 27 Mar 2009 23:47:18 +0000 ramiro mlpdec: output_shift can be any value from -8 to 7. libavcodec
Fri, 27 Mar 2009 23:45:52 +0000 ramiro mlpdec: output_shift is signed libavcodec
Fri, 27 Mar 2009 23:42:22 +0000 ramiro mlpdec: Split read_channel_params() into its own function. libavcodec
Fri, 27 Mar 2009 23:32:32 +0000 ramiro mlpdec: Split read_matrix_params() into its own function. libavcodec
Fri, 20 Mar 2009 13:07:09 +0000 ramiro mlp, truehd: support non 1:1 channel mapping. libavcodec
Fri, 20 Mar 2009 13:04:14 +0000 ramiro Support "next parameter flags present" flag. libavcodec
Fri, 20 Mar 2009 13:02:15 +0000 ramiro truehd: support up to 3 substreams. libavcodec
Thu, 19 Mar 2009 21:23:39 +0000 ramiro Split TrueHD decoder from MLP libavcodec
Mon, 02 Mar 2009 05:18:33 +0000 diego Change a bunch of codec long_names to be more consistent and descriptive. libavcodec
Sun, 01 Feb 2009 02:00:19 +0000 diego Use full internal pathname in doxygen @file directives. libavcodec
Fri, 30 Jan 2009 18:38:25 +0000 diego Add missing void keyword to parameterless function declarations. libavcodec
Thu, 25 Dec 2008 15:49:50 +0000 diego Change mplayerhq.hu references to ffmpeg.org where appropriate. libavcodec
Sun, 07 Dec 2008 00:58:41 +0000 ramiro mlp: cosmetics: remove {}s over one-lined if. libavcodec
Sun, 07 Dec 2008 00:57:26 +0000 ramiro mlp: support bit-depths greater than 16 by default. libavcodec