diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-03-27 23:48:08 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-03-27 23:48:08 +0000 |
commit | 8e9ee714fcf764278d84c3b2ca877cffbd730147 (patch) | |
tree | bd9a188f7a51adae3dc6d2d9a59a834ea905964a /libavcodec/mlpdec.c | |
parent | 6fae7cbd7fc28668282372876049560a0a297e46 (diff) | |
download | ffmpeg-8e9ee714fcf764278d84c3b2ca877cffbd730147.tar.gz |
mlpdec: quant_step_size can be any value from 0 to 0xF.
Originally committed as revision 18210 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r-- | libavcodec/mlpdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index a3051372bf..905fb0bdae 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -636,7 +636,6 @@ static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp, ChannelParams *cp = &m->channel_params[ch]; s->quant_step_size[ch] = get_bits(gbp, 4); - /* TODO: validate */ cp->sign_huff_offset = calculate_sign_huff(m, substr, ch); } |