]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/avio.h
avfitler/vf_perspective: support slice threading
[ffmpeg] / libavformat / avio.h
index e607df5fb476f20a9fa482752eefd6d2dc2c239e..2210c015a00cd7515b1f45f381cfb6c873e8aed7 100644 (file)
@@ -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);
@@ -500,6 +507,9 @@ int     avio_pause(AVIOContext *h, int pause);
 int64_t avio_seek_time(AVIOContext *h, int stream_index,
                        int64_t timestamp, int flags);
 
+/* Avoid a warning. The header can not be included because it breaks c++. */
+struct AVBPrint;
+
 /**
  * Read contents of h into print buffer, up to max_size bytes, or up to EOF.
  *