diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-01-31 02:11:37 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-01-31 02:11:37 +0000 |
commit | 7f3a6a05530ece0c70cb8115a8912149b62eb6ca (patch) | |
tree | 88cedbc057d89e7f477baab97fa772e562e1a117 /libavcodec/flacdec.c | |
parent | 64cb37656210b83b629fad62516f74d22296fef4 (diff) | |
download | ffmpeg-7f3a6a05530ece0c70cb8115a8912149b62eb6ca.tar.gz |
cosmetics: change comment type and vertical alignment
Originally committed as revision 16882 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r-- | libavcodec/flacdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index fb9f4bc32a..9397d9af7b 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -63,8 +63,8 @@ typedef struct FLACContext { int blocksize; ///< number of samples in the current frame int curr_bps; ///< bps for current subframe, adjusted for channel correlation and wasted bits - int sample_shift; /* shift required to make output samples 16-bit or 32-bit */ - int is32; /* flag to indicate if output should be 32-bit instead of 16-bit */ + int sample_shift; ///< shift required to make output samples 16-bit or 32-bit + int is32; ///< flag to indicate if output should be 32-bit instead of 16-bit enum decorrelation_type decorrelation; ///< channel decorrelation type in the current frame int32_t *decoded[MAX_CHANNELS]; ///< decoded samples |