From 9e4bca16f89bc12c58b58f4611d580a30d5f9638 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 31 Jul 2012 20:09:23 +0200 Subject: dca: Move tables used outside of dcadec.c to a separate file. --- libavcodec/dca_parser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/dca_parser.c') diff --git a/libavcodec/dca_parser.c b/libavcodec/dca_parser.c index e7b2ce42cc..553e69c41c 100644 --- a/libavcodec/dca_parser.c +++ b/libavcodec/dca_parser.c @@ -24,7 +24,6 @@ #include "parser.h" #include "dca.h" -#include "dcadata.h" #include "dca_parser.h" #include "get_bits.h" #include "put_bits.h" @@ -162,7 +161,7 @@ static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration, skip_bits(&gb, 20); sr_code = get_bits(&gb, 4); - *sample_rate = dca_sample_rates[sr_code]; + *sample_rate = ff_dca_sample_rates[sr_code]; if (*sample_rate == 0) return AVERROR_INVALIDDATA; -- cgit v1.2.3