mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-08 05:07:07 +00:00
avcodec/x86/cavsdsp: silence -Wunused-variable on --disable-mmx
This silences -Wunused-variable when compiled with --disable-mmx, e.g http://fate.ffmpeg.org/log.cgi?time=20150919094617&log=compile&slot=x86_64-archlinux-gcc-disable-mmx. The alternative of header guards will make it far too ugly. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f94af8d32a
commit
07cd8d5676
@ -563,7 +563,7 @@ static av_cold void cavsdsp_init_3dnow(CAVSDSPContext *c,
|
||||
|
||||
av_cold void ff_cavsdsp_init_x86(CAVSDSPContext *c, AVCodecContext *avctx)
|
||||
{
|
||||
int cpu_flags = av_get_cpu_flags();
|
||||
av_unused int cpu_flags = av_get_cpu_flags();
|
||||
|
||||
cavsdsp_init_mmx(c, avctx);
|
||||
#if HAVE_AMD3DNOW_INLINE
|
||||
|
Loading…
x
Reference in New Issue
Block a user