diff options
author | Nedeljko Babic <nbabic@mips.com> | 2012-11-09 12:45:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-10 19:55:54 +0100 |
commit | 304a1ed1e86429eb4e20a48d887546b1072ed4da (patch) | |
tree | 26396f285e31a7cd508ec3404c4651e501518ee6 /libavcodec/mips/compute_antialias_float.h | |
parent | 2d71f31df23910f18b17f17fa568b13fd5dcaf1a (diff) | |
download | ffmpeg-304a1ed1e86429eb4e20a48d887546b1072ed4da.tar.gz |
mips: Add dependencies on HAVE_INLINE_ASM
Add dependencies on HAVE_INLINE_ASM for files and parts of code
where it is necessary.
Signed-off-by: Nedeljko Babic <nbabic@mips.com>
Reviewed-by: Vitor Sessak <vitor1001@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mips/compute_antialias_float.h')
-rw-r--r-- | libavcodec/mips/compute_antialias_float.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mips/compute_antialias_float.h b/libavcodec/mips/compute_antialias_float.h index 3a3f5d6dde..289150ddb9 100644 --- a/libavcodec/mips/compute_antialias_float.h +++ b/libavcodec/mips/compute_antialias_float.h @@ -55,6 +55,7 @@ #ifndef AVCODEC_MIPS_COMPUTE_ANTIALIAS_FLOAT_H #define AVCODEC_MIPS_COMPUTE_ANTIALIAS_FLOAT_H +#if HAVE_INLINE_ASM static void compute_antialias_mips_float(MPADecodeContext *s, GranuleDef *g) { @@ -178,5 +179,6 @@ static void compute_antialias_mips_float(MPADecodeContext *s, ); } #define compute_antialias compute_antialias_mips_float +#endif /* HAVE_INLINE_ASM */ #endif /* AVCODEC_MIPS_COMPUTE_ANTIALIAS_FLOAT_H */ |