From 86b29553f86471719adfb4ba86eec0a82f1eb347 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 10 May 2011 08:39:38 -0400 Subject: [PATCH] h264dsp_mmx: place bracket outside #if/#endif block. Should fix compile on systems missing yasm/nasm. --- libavcodec/x86/h264dsp_mmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/h264dsp_mmx.c b/libavcodec/x86/h264dsp_mmx.c index b4936a618e..3a783a39ab 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 + } }