Mercurial > libavcodec.hg
diff dca.c @ 8078:c23f2088d7c0 libavcodec
Fix compilation, remove stray ;
| author | banan |
|---|---|
| date | Tue, 28 Oct 2008 15:20:52 +0000 |
| parents | 574a0dcc4488 |
| children | 8d08a75eac3d |
line wrap: on
line diff
--- a/dca.c Tue Oct 28 14:50:46 2008 +0000 +++ b/dca.c Tue Oct 28 15:20:52 2008 +0000 @@ -248,7 +248,7 @@ 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;
