diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-03-09 11:13:45 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-03-09 11:13:45 +0000 |
commit | afd96c345fcbca594932416cd6139be0fcb7480f (patch) | |
tree | 0f2ca89c76aea0d37e5398d4c8d2353bf3e6ecc9 /libavcodec/aacsbr.c | |
parent | 171b7b911249b94c09e32bdc02f35677111d704c (diff) | |
download | ffmpeg-afd96c345fcbca594932416cd6139be0fcb7480f.tar.gz |
aacsbr: Remove a slightly incorrect comment.
The two conditions are equivalent.
Originally committed as revision 22386 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aacsbr.c')
-rw-r--r-- | libavcodec/aacsbr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacsbr.c b/libavcodec/aacsbr.c index 390d72493a..76fcae86d6 100644 --- a/libavcodec/aacsbr.c +++ b/libavcodec/aacsbr.c @@ -735,7 +735,7 @@ static int read_sbr_grid(AACContext *ac, SpectralBandReplication *sbr, ch_data->bs_num_noise = (ch_data->bs_num_env[1] > 1) + 1; ch_data->t_q[0] = ch_data->t_env[0]; - if (ch_data->bs_num_noise > 1) { // typo in spec bases this on bs_num_env... + if (ch_data->bs_num_noise > 1) { unsigned int idx; if (ch_data->bs_frame_class == FIXFIX) { idx = ch_data->bs_num_env[1] >> 1; |