summaryrefslogtreecommitdiff
path: root/libavcodec/dcadec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-01 11:12:08 +0200
committerDiego Biurrun <diego@biurrun.de>2012-08-01 11:43:31 +0200
commit19cf7163c1576e7b03ea33d7bf633e14d7516db8 (patch)
treeda0153ac734a99ea7999a383335ea20095b58f20 /libavcodec/dcadec.c
parentfaa788227f07a8b46059fec70cc5b08118ec1a85 (diff)
dca: Switch dca_sample_rates to avpriv_ prefix; it is used across libs
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 f488da6d3f..d4fd23e215 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 = ff_dca_sample_rates[get_bits(&s->gb, 4)];
+ s->sample_rate = avpriv_dca_sample_rates[get_bits(&s->gb, 4)];
if (!s->sample_rate)
return AVERROR_INVALIDDATA;
s->bit_rate_index = get_bits(&s->gb, 5);