mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fix compilation, remove stray ;
Originally committed as revision 15735 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9ed73b4870
commit
d5b3a86393
@ -248,7 +248,7 @@ static int dca_parse_frame_header(DCAContext * s)
|
|||||||
s->sample_rate = dca_sample_rates[get_bits(&s->gb, 4)];
|
s->sample_rate = dca_sample_rates[get_bits(&s->gb, 4)];
|
||||||
if (!s->sample_rate)
|
if (!s->sample_rate)
|
||||||
return -1;
|
return -1;
|
||||||
s->bit_rate_index; = get_bits(&s->gb, 5);
|
s->bit_rate_index = get_bits(&s->gb, 5);
|
||||||
s->bit_rate = dca_bit_rates[s->bit_rate_index];
|
s->bit_rate = dca_bit_rates[s->bit_rate_index];
|
||||||
if (!s->bit_rate)
|
if (!s->bit_rate)
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user