comparison flacdec.c @ 8712:eae97a6f2553 libavcodec

cosmetics: change comment type and vertical alignment
author jbr
date Sat, 31 Jan 2009 02:11:37 +0000
parents f284b60e2bc5
children e9d9d946f213
comparison
equal deleted inserted replaced
8711:f284b60e2bc5 8712:eae97a6f2553
61 AVCodecContext *avctx; ///< parent AVCodecContext 61 AVCodecContext *avctx; ///< parent AVCodecContext
62 GetBitContext gb; ///< GetBitContext initialized to start at the current frame 62 GetBitContext gb; ///< GetBitContext initialized to start at the current frame
63 63
64 int blocksize; ///< number of samples in the current frame 64 int blocksize; ///< number of samples in the current frame
65 int curr_bps; ///< bps for current subframe, adjusted for channel correlation and wasted bits 65 int curr_bps; ///< bps for current subframe, adjusted for channel correlation and wasted bits
66 int sample_shift; /* shift required to make output samples 16-bit or 32-bit */ 66 int sample_shift; ///< shift required to make output samples 16-bit or 32-bit
67 int is32; /* flag to indicate if output should be 32-bit instead of 16-bit */ 67 int is32; ///< flag to indicate if output should be 32-bit instead of 16-bit
68 enum decorrelation_type decorrelation; ///< channel decorrelation type in the current frame 68 enum decorrelation_type decorrelation; ///< channel decorrelation type in the current frame
69 69
70 int32_t *decoded[MAX_CHANNELS]; ///< decoded samples 70 int32_t *decoded[MAX_CHANNELS]; ///< decoded samples
71 uint8_t *bitstream; 71 uint8_t *bitstream;
72 unsigned int bitstream_size; 72 unsigned int bitstream_size;