diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2005-09-10 19:30:40 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2005-09-10 19:30:40 +0000 |
commit | cd7af76d9ecb1ef3e18c5b224970a2a94e9baf06 (patch) | |
tree | ce32c04005fcf10e37525fcbf481078d3815edee | |
parent | 9f211bc6d7816f9e647d0a5cff02117e1342a73c (diff) | |
download | ffmpeg-cd7af76d9ecb1ef3e18c5b224970a2a94e9baf06.tar.gz |
Fix compile without CONFIG_GPL, misplaced #endif caused a missing }.
Originally committed as revision 4575 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 55a90f82ed..5d9d4995c4 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -2564,8 +2564,8 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) c->idct_add= ff_idct_xvid_mmx_add; c->idct = ff_idct_xvid_mmx; } - } #endif + } } #ifdef CONFIG_ENCODERS |