projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ed73b4
)
Fix compilation, remove stray ;
author
Benjamin Larsson
<banan@ludd.ltu.se>
Tue, 28 Oct 2008 15:20:52 +0000
(15:20 +0000)
committer
Benjamin Larsson
<banan@ludd.ltu.se>
Tue, 28 Oct 2008 15:20:52 +0000
(15:20 +0000)
Originally committed as revision 15735 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/dca.c
patch
|
blob
|
history
diff --git
a/libavcodec/dca.c
b/libavcodec/dca.c
index
f550483
..
e878527
100644
(file)
--- a/
libavcodec/dca.c
+++ b/
libavcodec/dca.c
@@
-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;