diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-31 20:09:23 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-01 00:17:17 +0200 |
commit | 9e4bca16f89bc12c58b58f4611d580a30d5f9638 (patch) | |
tree | 79a83fbc3226c5739fb2931f1dce0a566c36fa4f /libavcodec/dca.h | |
parent | 13a79cf84e073d0ca8489047660352eee216d059 (diff) | |
download | ffmpeg-9e4bca16f89bc12c58b58f4611d580a30d5f9638.tar.gz |
dca: Move tables used outside of dcadec.c to a separate file.
Diffstat (limited to 'libavcodec/dca.h')
-rw-r--r-- | libavcodec/dca.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dca.h b/libavcodec/dca.h index 8ea6049e0d..9235fa4f0b 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -25,6 +25,8 @@ #ifndef AVCODEC_DCA_H #define AVCODEC_DCA_H +#include <stdint.h> + /** 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 */ |