summaryrefslogtreecommitdiff
path: root/libavcodec/dcadec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-07-31 20:09:23 +0200
committerDiego Biurrun <diego@biurrun.de>2012-08-01 00:17:17 +0200
commit9e4bca16f89bc12c58b58f4611d580a30d5f9638 (patch)
tree79a83fbc3226c5739fb2931f1dce0a566c36fa4f /libavcodec/dcadec.c
parent13a79cf84e073d0ca8489047660352eee216d059 (diff)
dca: Move tables used outside of dcadec.c to a separate file.
Diffstat (limited to 'libavcodec/dcadec.c')
-rw-r--r--libavcodec/dcadec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c
index b37dc49d3f..f488da6d3f 100644
--- a/libavcodec/dcadec.c
+++ b/libavcodec/dcadec.c
@@ -561,7 +561,7 @@ static int dca_parse_frame_header(DCAContext *s)
if (s->frame_size < 95)
return AVERROR_INVALIDDATA;
s->amode = get_bits(&s->gb, 6);
- s->sample_rate = dca_sample_rates[get_bits(&s->gb, 4)];
+ s->sample_rate = ff_dca_sample_rates[get_bits(&s->gb, 4)];
if (!s->sample_rate)
return AVERROR_INVALIDDATA;
s->bit_rate_index = get_bits(&s->gb, 5);