Commit 5dae0dd2 authored by Ramiro Polla's avatar Ramiro Polla

mlpdec: Put some doxy comments to the right of vars instead of interleaved.

Originally committed as revision 14721 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f53acb7b
...@@ -144,10 +144,8 @@ typedef struct SubStream { ...@@ -144,10 +144,8 @@ typedef struct SubStream {
/** filter data */ /** filter data */
typedef struct { typedef struct {
//! number of taps in filter uint8_t order; ///< number of taps in filter
uint8_t order; uint8_t shift; ///< Right shift to apply to output of filter.
//! Right shift to apply to output of filter.
uint8_t shift;
int32_t coeff[MAX_FILTER_ORDER]; int32_t coeff[MAX_FILTER_ORDER];
int32_t state[MAX_FILTER_ORDER]; int32_t state[MAX_FILTER_ORDER];
...@@ -157,14 +155,10 @@ typedef struct { ...@@ -157,14 +155,10 @@ typedef struct {
typedef struct { typedef struct {
FilterParams filter_params[NUM_FILTERS]; FilterParams filter_params[NUM_FILTERS];
//! Offset to apply to residual values. int16_t huff_offset; ///< Offset to apply to residual values.
int16_t huff_offset; int32_t sign_huff_offset; ///< sign/rounding-corrected version of huff_offset
//! sign/rounding-corrected version of huff_offset uint8_t codebook; ///< Which VLC codebook to use to read residuals.
int32_t sign_huff_offset; uint8_t huff_lsbs; ///< Size of residual suffix not encoded using VLC.
//! Which VLC codebook to use to read residuals.
uint8_t codebook;
//! Size of residual suffix not encoded using VLC.
uint8_t huff_lsbs;
} ChannelParams; } ChannelParams;
typedef struct MLPDecodeContext { typedef struct MLPDecodeContext {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment