Commit eda4cf92 authored by Anton Khirnov's avatar Anton Khirnov Committed by Ronald S. Bultje

avio: always compile avio_printf, rather than on CONFIG_MUXERS

Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent d9d86e00
...@@ -924,7 +924,6 @@ URLContext *url_fileno(AVIOContext *s) ...@@ -924,7 +924,6 @@ URLContext *url_fileno(AVIOContext *s)
return s->opaque; return s->opaque;
} }
#if CONFIG_MUXERS
int avio_printf(AVIOContext *s, const char *fmt, ...) int avio_printf(AVIOContext *s, const char *fmt, ...)
{ {
va_list ap; va_list ap;
...@@ -937,7 +936,6 @@ int avio_printf(AVIOContext *s, const char *fmt, ...) ...@@ -937,7 +936,6 @@ int avio_printf(AVIOContext *s, const char *fmt, ...)
avio_write(s, buf, strlen(buf)); avio_write(s, buf, strlen(buf));
return ret; return ret;
} }
#endif //CONFIG_MUXERS
#if FF_API_OLD_AVIO #if FF_API_OLD_AVIO
char *url_fgets(AVIOContext *s, char *buf, int buf_size) char *url_fgets(AVIOContext *s, char *buf, int buf_size)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment