summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-14 20:39:03 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-16 22:59:39 -0400
commiteda4cf92d795ae7e233e83f5ad37209d475b7805 (patch)
treeeb438d9bf187f00f5eee79a4e81173d8f5532484 /libavformat/aviobuf.c
parentd9d86e00b2891a2651fd41f0d2d220a67f7968c3 (diff)
avio: always compile avio_printf, rather than on CONFIG_MUXERS
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 7fbe4ce76c..3a398210f6 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -924,7 +924,6 @@ URLContext *url_fileno(AVIOContext *s)
return s->opaque;
}
-#if CONFIG_MUXERS
int avio_printf(AVIOContext *s, const char *fmt, ...)
{
va_list ap;
@@ -937,7 +936,6 @@ int avio_printf(AVIOContext *s, const char *fmt, ...)
avio_write(s, buf, strlen(buf));
return ret;
}
-#endif //CONFIG_MUXERS
#if FF_API_OLD_AVIO
char *url_fgets(AVIOContext *s, char *buf, int buf_size)