diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-01 16:31:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-01 19:58:31 +0200 |
commit | b219142921e9f59307ad9edd3ed445cf3c1a9b5c (patch) | |
tree | f0a1a9e958628cd2560d9797e8dc5d46b1f5eadb /libavcodec/ac3dec.h | |
parent | 696e34a6e15d9d9d655191a953779d06dc3b5897 (diff) | |
download | ffmpeg-b219142921e9f59307ad9edd3ed445cf3c1a9b5c.tar.gz |
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.h | 2 |
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; |