summaryrefslogtreecommitdiff
path: root/libavcodec/pngdec.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2011-04-27 14:24:19 -0700
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2011-04-27 14:24:36 -0700
commit045cc36fe788752bca340efb736e7d76aa7f54e9 (patch)
tree78399aeaf3cd0e2168649d97f35fbb4344855c13 /libavcodec/pngdec.c
parent46394d39e3551443f560f4050c74e380edcf20f9 (diff)
100l, change #ifdef to #if
Diffstat (limited to 'libavcodec/pngdec.c')
-rw-r--r--libavcodec/pngdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 311109b4c3..e2fec93f8f 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -624,7 +624,7 @@ static av_cold int png_dec_init(AVCodecContext *avctx)
avcodec_get_frame_defaults(&s->picture1);
avcodec_get_frame_defaults(&s->picture2);
-#ifdef HAVE_MMX
+#if HAVE_MMX
ff_png_init_mmx(s);
#endif