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.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavcodec/dca.h') diff --git a/libavcodec/dca.h b/libavcodec/dca.h index 8ea6049..9235fa4 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -25,6 +25,8 @@ #ifndef AVCODEC_DCA_H #define AVCODEC_DCA_H +#include + /** DCA syncwords, also used for bitstream type detection */ #define DCA_MARKER_RAW_BE 0x7FFE8001 #define DCA_MARKER_RAW_LE 0xFE7F0180 @@ -34,4 +36,6 @@ /** DCA-HD specific block starts with this marker. */ #define DCA_HD_MARKER 0x64582025 +extern const uint32_t ff_dca_sample_rates[16]; + #endif /* AVCODEC_DCA_H */ -- cgit v1.1 From 19cf7163c1576e7b03ea33d7bf633e14d7516db8 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 1 Aug 2012 11:12:08 +0200 Subject: dca: Switch dca_sample_rates to avpriv_ prefix; it is used across libs --- libavcodec/dca.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dca.h') diff --git a/libavcodec/dca.h b/libavcodec/dca.h index 9235fa4..1515270 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -36,6 +36,6 @@ /** DCA-HD specific block starts with this marker. */ #define DCA_HD_MARKER 0x64582025 -extern const uint32_t ff_dca_sample_rates[16]; +extern const uint32_t avpriv_dca_sample_rates[16]; #endif /* AVCODEC_DCA_H */ -- cgit v1.1