comparison mlpdec.c @ 11704:b57e32bcaa86 libavcodec

mlpdec: Comment channel_params field in struct SubStream. Patch by Nick Brereton <nick at nbrereton dot net>
author ramiro
date Tue, 11 May 2010 01:46:13 +0000
parents c2461b6b94c9
children fdafbcef52f5
comparison
equal deleted inserted replaced
11703:c2461b6b94c9 11704:b57e32bcaa86
60 //! The number of channels input into the rematrix stage. 60 //! The number of channels input into the rematrix stage.
61 uint8_t max_matrix_channel; 61 uint8_t max_matrix_channel;
62 //! For each channel output by the matrix, the output channel to map it to 62 //! For each channel output by the matrix, the output channel to map it to
63 uint8_t ch_assign[MAX_CHANNELS]; 63 uint8_t ch_assign[MAX_CHANNELS];
64 64
65 //! Channel coding parameters for channels in the substream
65 ChannelParams channel_params[MAX_CHANNELS]; 66 ChannelParams channel_params[MAX_CHANNELS];
66 67
67 //! The left shift applied to random noise in 0x31ea substreams. 68 //! The left shift applied to random noise in 0x31ea substreams.
68 uint8_t noise_shift; 69 uint8_t noise_shift;
69 //! The current seed value for the pseudorandom noise generator(s). 70 //! The current seed value for the pseudorandom noise generator(s).