mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
simplify
Originally committed as revision 6067 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
312954f056
commit
a753e55bb5
@ -2159,10 +2159,7 @@ static int mp_decode_layer3(MPADecodeContext *s)
|
||||
/* read side info */
|
||||
if (s->lsf) {
|
||||
main_data_begin = get_bits(&s->gb, 8);
|
||||
if (s->nb_channels == 2)
|
||||
private_bits = get_bits(&s->gb, 2);
|
||||
else
|
||||
private_bits = get_bits(&s->gb, 1);
|
||||
private_bits = get_bits(&s->gb, s->nb_channels);
|
||||
nb_granules = 1;
|
||||
} else {
|
||||
main_data_begin = get_bits(&s->gb, 9);
|
||||
|
Loading…
Reference in New Issue
Block a user