summaryrefslogtreecommitdiff
path: root/libavcodec/mlpdec.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-08-13 01:41:06 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-08-13 01:41:06 +0000
commit5dae0dd22c594714c0e0b0fbbd6171045f739e43 (patch)
treef557907233f72a59c54db09e28ad1601a7915303 /libavcodec/mlpdec.c
parentf53acb7b17b4fec98240424f57b37189601032ac (diff)
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
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r--libavcodec/mlpdec.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c
index e5e0e94d54..37111be835 100644
--- a/libavcodec/mlpdec.c
+++ b/libavcodec/mlpdec.c
@@ -144,10 +144,8 @@ typedef struct SubStream {
/** filter data */
typedef struct {
- //! number of taps in filter
- uint8_t order;
- //! Right shift to apply to output of filter.
- uint8_t shift;
+ uint8_t order; ///< number of taps in filter
+ uint8_t shift; ///< Right shift to apply to output of filter.
int32_t coeff[MAX_FILTER_ORDER];
int32_t state[MAX_FILTER_ORDER];
@@ -157,14 +155,10 @@ typedef struct {
typedef struct {
FilterParams filter_params[NUM_FILTERS];
- //! Offset to apply to residual values.
- int16_t huff_offset;
- //! sign/rounding-corrected version of huff_offset
- int32_t sign_huff_offset;
- //! Which VLC codebook to use to read residuals.
- uint8_t codebook;
- //! Size of residual suffix not encoded using VLC.
- uint8_t huff_lsbs;
+ int16_t huff_offset; ///< Offset to apply to residual values.
+ int32_t sign_huff_offset; ///< sign/rounding-corrected version of huff_offset
+ uint8_t codebook; ///< Which VLC codebook to use to read residuals.
+ uint8_t huff_lsbs; ///< Size of residual suffix not encoded using VLC.
} ChannelParams;
typedef struct MLPDecodeContext {