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

avio: deprecate url_fileno

It's an evil hack that assumes an AVIOContext is always based on top of
an URLContext.
It's also not used anywhere.
Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent 447fe336
...@@ -623,9 +623,10 @@ int url_resetbuf(AVIOContext *s, int flags); ...@@ -623,9 +623,10 @@ int url_resetbuf(AVIOContext *s, int flags);
int avio_open(AVIOContext **s, const char *url, int flags); int avio_open(AVIOContext **s, const char *url, int flags);
int avio_close(AVIOContext *s); int avio_close(AVIOContext *s);
URLContext *url_fileno(AVIOContext *s);
#if FF_API_OLD_AVIO #if FF_API_OLD_AVIO
attribute_deprecated URLContext *url_fileno(AVIOContext *s);
/** /**
* @deprecated use AVIOContext.max_packet_size directly. * @deprecated use AVIOContext.max_packet_size directly.
*/ */
......
...@@ -923,10 +923,12 @@ int avio_close(AVIOContext *s) ...@@ -923,10 +923,12 @@ int avio_close(AVIOContext *s)
return url_close(h); return url_close(h);
} }
#if FF_API_OLD_AVIO
URLContext *url_fileno(AVIOContext *s) URLContext *url_fileno(AVIOContext *s)
{ {
return s->opaque; return s->opaque;
} }
#endif
int avio_printf(AVIOContext *s, const char *fmt, ...) int avio_printf(AVIOContext *s, const char *fmt, ...)
{ {
......
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