summaryrefslogtreecommitdiff
path: root/libavformat/mmf.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2009-01-13 23:44:16 +0000
committerAurelien Jacobs <aurel@gnuage.org>2009-01-13 23:44:16 +0000
commitb250f9c66d3ddd84652d158fb979a5f21e3f2c71 (patch)
treeef84366029d6f8af6ed82e90c5f188bb7dfc844d /libavformat/mmf.c
parent959da985b03570cfe7d239c0ba6d550ecb04c460 (diff)
Change semantic of CONFIG_*, HAVE_* and ARCH_*.
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r--libavformat/mmf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c
index 5e6d4ebccb..7c2f4bf223 100644
--- a/libavformat/mmf.c
+++ b/libavformat/mmf.c
@@ -36,7 +36,7 @@ static int mmf_rate(int code)
return mmf_rates[code];
}
-#ifdef CONFIG_MMF_MUXER
+#if CONFIG_MMF_MUXER
static int mmf_rate_code(int rate)
{
int i;
@@ -290,7 +290,7 @@ static int mmf_read_packet(AVFormatContext *s,
return ret;
}
-#ifdef CONFIG_MMF_DEMUXER
+#if CONFIG_MMF_DEMUXER
AVInputFormat mmf_demuxer = {
"mmf",
NULL_IF_CONFIG_SMALL("mmf format"),
@@ -302,7 +302,7 @@ AVInputFormat mmf_demuxer = {
pcm_read_seek,
};
#endif
-#ifdef CONFIG_MMF_MUXER
+#if CONFIG_MMF_MUXER
AVOutputFormat mmf_muxer = {
"mmf",
NULL_IF_CONFIG_SMALL("mmf format"),