From: Ronald S. Bultje Date: Tue, 10 May 2011 12:39:38 +0000 (-0400) Subject: h264dsp_mmx: place bracket outside #if/#endif block. X-Git-Tag: n0.8~317^2~182 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/86b29553f86471719adfb4ba86eec0a82f1eb347?ds=sidebyside h264dsp_mmx: place bracket outside #if/#endif block. Should fix compile on systems missing yasm/nasm. --- diff --git a/libavcodec/x86/h264dsp_mmx.c b/libavcodec/x86/h264dsp_mmx.c index b4936a6..3a783a3 100644 --- a/libavcodec/x86/h264dsp_mmx.c +++ b/libavcodec/x86/h264dsp_mmx.c @@ -379,6 +379,6 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth) } } } - } #endif + } }