index
:
ffmpeg-streaming
master
Raptor Engineering's fork of FFmpeg with streaming enhancements https://git.ffmpeg.org/ffmpeg.git
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libavcodec
/
mlpdec.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Define AVMediaType enum, and use it instead of enum CodecType, which
Stefano Sabatini
2010-03-30
1
-2
/
+2
*
Reduce log level of "Extracting .. channel downmix" to AV_LOG_DEBUG, the
Reimar Döffinger
2010-01-27
1
-1
/
+1
*
Fix crash in MLP decoder due to integer overflow.
Reimar Döffinger
2010-01-24
1
-1
/
+1
*
Remove pointless CONFIG_MLP_DECODER preprocessor check.
Diego Biurrun
2009-12-29
1
-2
/
+0
*
mlp: Indent.
Ramiro Polla
2009-10-16
1
-9
/
+9
*
mlp: Only initialize VLC tables once. This caused a crash when multiple
Ramiro Polla
2009-10-16
1
-0
/
+2
*
mlp: Simplify adressing of state and coeffs arrays for both filters by making
Ramiro Polla
2009-05-15
1
-7
/
+8
*
mlpdec: Fix possible writing out of array bounds introduced by being
Ramiro Polla
2009-05-06
1
-0
/
+9
*
mlpdec: Split sync word error and MLP sync word check.
Ramiro Polla
2009-05-06
1
-3
/
+8
*
mlpdec: Fix indentation that got mangled from copy&paste.
Ramiro Polla
2009-05-06
1
-4
/
+4
*
mlpdec: Move MLP's filter_channel() to dsputils.
Ramiro Polla
2009-04-30
1
-24
/
+10
*
mlpdec: Simplify filtering code by using only one counter variable.
Ramiro Polla
2009-04-26
1
-13
/
+12
*
mlpdec: Don't overallocate buffers.
Ramiro Polla
2009-04-21
1
-2
/
+2
*
mlpdec: Validate num_primitive_matrices.
Ramiro Polla
2009-04-21
1
-0
/
+10
*
mlpdec: Validate max_channel and max_matrix_channel.
Ramiro Polla
2009-04-21
1
-0
/
+16
*
mlpdec: Restart header sync must be 0x31ea for MLP.
Ramiro Polla
2009-04-21
1
-2
/
+3
*
mlpdec: Read context variable to local variable to make code cleaner.
Ramiro Polla
2009-04-18
1
-2
/
+2
*
mlpdec: {}- and whitespace-related cosmetics.
Ramiro Polla
2009-04-18
1
-28
/
+21
*
mlpdec: Use some context arrays with local variables in rematrix_channels().
Ramiro Polla
2009-04-18
1
-3
/
+5
*
truehd: Simplify rematrix_channels() as per Michael's original review.
Ramiro Polla
2009-04-18
1
-2
/
+4
*
mlpdec: Make read_matrix_params() take unsigned int substr for consistency.
Ramiro Polla
2009-04-18
1
-2
/
+3
*
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
Ramiro Polla
2009-04-18
1
-15
/
+9
*
Rename bitstream.h to get_bits.h.
Stefano Sabatini
2009-04-13
1
-1
/
+1
*
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
Thilo Borgmann
2009-04-07
1
-1
/
+3
*
mlpdec: Filters and matrices may change only once per substream per access unit.
Ramiro Polla
2009-04-06
1
-0
/
+22
*
mlpdec: There must be no extraword for MLP.
Ramiro Polla
2009-04-05
1
-0
/
+4
*
mlpdec: Validate non-restart bit from the substream header.
Ramiro Polla
2009-04-05
1
-2
/
+12
*
mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not ma...
Ramiro Polla
2009-04-05
1
-1
/
+1
*
mlpdec: Simplify check for substream_parity_present.
Ramiro Polla
2009-03-30
1
-2
/
+4
*
mlpdec: Simplify no restart header seen error.
Ramiro Polla
2009-03-30
1
-6
/
+5
*
mlpdec: Simplify substream length mismatch error.
Ramiro Polla
2009-03-30
1
-5
/
+9
*
mlpdec: Prettify substream parity check.
Ramiro Polla
2009-03-30
1
-8
/
+6
*
mlpdec: Cleaner and better termination word check.
Ramiro Polla
2009-03-30
1
-11
/
+12
*
mlpdec: More validation for read_channel_params()
Ramiro Polla
2009-03-30
1
-2
/
+10
*
mlpdec: whitespace cosmetics.
Ramiro Polla
2009-03-30
1
-12
/
+6
*
mlpdec: Simplify &foo[0] to foo and use index (which has just been initialized
Ramiro Polla
2009-03-30
1
-4
/
+4
*
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
Ramiro Polla
2009-03-30
1
-16
/
+17
*
mlpdec: Unroll copying filter state data and filtering for the two filters.
Ramiro Polla
2009-03-30
1
-13
/
+15
*
mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively.
Ramiro Polla
2009-03-30
1
-5
/
+6
*
mlpdec: Remove few random dprintf()s.
Ramiro Polla
2009-03-28
1
-8
/
+0
*
mlpdec: Check for blocksize in proper range.
Ramiro Polla
2009-03-27
1
-2
/
+2
*
mlpdec: quant_step_size can be any value from 0 to 0xF.
Ramiro Polla
2009-03-27
1
-1
/
+0
*
mlpdec: output_shift can be any value from -8 to 7.
Ramiro Polla
2009-03-27
1
-1
/
+0
*
mlpdec: output_shift is signed
Ramiro Polla
2009-03-27
1
-1
/
+1
*
mlpdec: Split read_channel_params() into its own function.
Ramiro Polla
2009-03-27
1
-37
/
+49
*
mlpdec: Split read_matrix_params() into its own function.
Ramiro Polla
2009-03-27
1
-38
/
+50
*
mlp, truehd: support non 1:1 channel mapping.
Ramiro Polla
2009-03-20
1
-9
/
+16
*
Support "next parameter flags present" flag.
Ramiro Polla
2009-03-20
1
-0
/
+2
*
truehd: support up to 3 substreams.
Ramiro Polla
2009-03-20
1
-0
/
+4
*
Split TrueHD decoder from MLP
Ramiro Polla
2009-03-19
1
-1
/
+16
[next]