Commit d5b3a863 authored by Benjamin Larsson's avatar Benjamin Larsson

Fix compilation, remove stray ;

Originally committed as revision 15735 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ed73b48
......@@ -248,7 +248,7 @@ static int dca_parse_frame_header(DCAContext * s)
s->sample_rate = dca_sample_rates[get_bits(&s->gb, 4)];
if (!s->sample_rate)
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];
if (!s->bit_rate)
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment