diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-14 20:39:03 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-16 22:59:39 -0400 |
commit | eda4cf92d795ae7e233e83f5ad37209d475b7805 (patch) | |
tree | eb438d9bf187f00f5eee79a4e81173d8f5532484 | |
parent | d9d86e00b2891a2651fd41f0d2d220a67f7968c3 (diff) | |
download | ffmpeg-eda4cf92d795ae7e233e83f5ad37209d475b7805.tar.gz |
avio: always compile avio_printf, rather than on CONFIG_MUXERS
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-rw-r--r-- | libavformat/aviobuf.c | 2 |
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) |