ffmpeg | branch: master | Michael Niedermayer <michae...@gmx.at> | Thu May 7 13:46:48 2015 +0200| [cc77bb09e430428122a8d23159ef49c2ab9a2629] | committer: Michael Niedermayer
avcodec/x86/vp9dsp_init: Fix mix of declaration and statement Reviewed-by: "Ronald S. Bultje" <rsbul...@gmail.com> Signed-off-by: Michael Niedermayer <michae...@gmx.at> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cc77bb09e430428122a8d23159ef49c2ab9a2629 --- libavcodec/x86/vp9dsp_init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/x86/vp9dsp_init.c b/libavcodec/x86/vp9dsp_init.c index f2ac6e8..979bd93 100644 --- a/libavcodec/x86/vp9dsp_init.c +++ b/libavcodec/x86/vp9dsp_init.c @@ -309,10 +309,11 @@ ipred_func(32, tm, avx2); av_cold void ff_vp9dsp_init_x86(VP9DSPContext *dsp, int bpp) { +#if HAVE_YASM + int cpu_flags; if (bpp != 8) return; -#if HAVE_YASM - int cpu_flags = av_get_cpu_flags(); + cpu_flags = av_get_cpu_flags(); #define init_fpel(idx1, idx2, sz, type, opt) \ dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \ _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog