aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/avio.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-08-07 17:12:40 -0300
committerMichael Niedermayer <michaelni@gmx.at>2014-08-08 00:48:22 +0200
commit5c3c67126feb046e25359096225507bf6dfe7b27 (patch)
tree369a7f063a7812bc17d3d0e5a01e8434ac39893b /libavformat/avio.h
parentf1e626a3570c8367e096e655660a2f7be5673a86 (diff)
downloadandroid_external_ffmpeg-5c3c67126feb046e25359096225507bf6dfe7b27.tar.gz
android_external_ffmpeg-5c3c67126feb046e25359096225507bf6dfe7b27.tar.bz2
android_external_ffmpeg-5c3c67126feb046e25359096225507bf6dfe7b27.zip
lavf/avio: rename url_feof() to avio_feof()
It's a public function and should use the avio_ namespace Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index e607df5fb4..1aa3602402 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -276,7 +276,14 @@ int64_t avio_size(AVIOContext *s);
* feof() equivalent for AVIOContext.
* @return non zero if and only if end of file
*/
+int avio_feof(AVIOContext *s);
+#if FF_API_URL_FEOF
+/**
+ * @deprecated use avio_feof()
+ */
+attribute_deprecated
int url_feof(AVIOContext *s);
+#endif
/** @warning currently size is limited */
int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);