Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-06 20:04:49 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-03-08 04:09:33 +0300
commit718975aa111bc41deac0d432a7749d0aee6ef7a0 (patch)
tree88f4c2fe918effc5b94c6fd6629d183d186d0223 /libavformat/aviobuf.c
parent5e06b02005265d8c862e7c6ee3c6f1d0a5bd8c4d (diff)
avio: deprecate url_fget_max_packet_size
AVIOContext.max_packet_size should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e8bb2e24398ec838d9e49cf115b7e132609a9fb7)
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index aebdd7211a..6592e9acd6 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -942,12 +942,12 @@ char *url_fgets(AVIOContext *s, char *buf, int buf_size)
*q = '\0';
return buf;
}
-#endif
int url_fget_max_packet_size(AVIOContext *s)
{
return s->max_packet_size;
}
+#endif
int av_url_read_fpause(AVIOContext *s, int pause)
{