diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2009-04-22 08:39:46 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2009-04-22 08:39:46 +0000 |
commit | 0e1ccdeb1183377fc64ad0c325c5c0c1bc9aa47b (patch) | |
tree | 57817766b7cdf74b791fd43cec4d7dc5ec7b7f01 /libavformat/raw.c | |
parent | 21fce71fd185dbf6ad825912bfd9200677f8a90c (diff) | |
download | ffmpeg-0e1ccdeb1183377fc64ad0c325c5c0c1bc9aa47b.tar.gz |
It should be #if, not #ifdef
Originally committed as revision 18659 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/raw.c')
-rw-r--r-- | libavformat/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index 40ac4440d6..f086581b2a 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -973,7 +973,7 @@ AVInputFormat mlp_demuxer = { }; #endif -#ifdef CONFIG_MLP_MUXER +#if CONFIG_MLP_MUXER AVOutputFormat mlp_muxer = { "mlp", NULL_IF_CONFIG_SMALL("raw MLP"), |