diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-10 08:39:38 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-10 08:39:38 -0400 |
commit | 86b29553f86471719adfb4ba86eec0a82f1eb347 (patch) | |
tree | 28067fb156046fcd5b21f4aecd07d71a116cf95b /libavcodec | |
parent | ecc297308ff3cb8b20359df44108ac299b22bdf1 (diff) | |
download | ffmpeg-86b29553f86471719adfb4ba86eec0a82f1eb347.tar.gz |
h264dsp_mmx: place bracket outside #if/#endif block.
Should fix compile on systems missing yasm/nasm.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/h264dsp_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 + } } |