Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-01 18:31:09 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-01 21:58:31 +0400
commitb219142921e9f59307ad9edd3ed445cf3c1a9b5c (patch)
treef0a1a9e958628cd2560d9797e8dc5d46b1f5eadb /libavcodec/ac3dec.h
parent696e34a6e15d9d9d655191a953779d06dc3b5897 (diff)
avcodec/ac3: rename identifier used to select the fixed point variant
the CONFIG_ prefix is used by configure, using it for other things is potentially confusing to the reader Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Nedeljko Babic <nbabic@mips.com>
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r--libavcodec/ac3dec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h
index 255b9df25e..5196d90901 100644
--- a/libavcodec/ac3dec.h
+++ b/libavcodec/ac3dec.h
@@ -208,7 +208,7 @@ typedef struct AC3DecodeContext {
///@name Optimization
DSPContext dsp; ///< for optimization
-#if CONFIG_AC3_FIXED
+#if USE_FIXED
AVFixedDSPContext *fdsp;
#else
AVFloatDSPContext fdsp;