]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/aviobuf.c
Merge commit '848e86f74d3e6e87fa592ee8ba8c184cc5fd9a42'
[ffmpeg] / libavformat / aviobuf.c
index 333c75ce66b3c355de71507f9dc6b2960cf428db..9701d74f192391fa9f60cefd64d7b33d4f8d15b6 100644 (file)
@@ -918,6 +918,12 @@ int avio_open2(AVIOContext **s, const char *filename, int flags,
     return 0;
 }
 
+int ffio_open2_wrapper(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags,
+                       const AVIOInterruptCB *int_cb, AVDictionary **options)
+{
+    return avio_open2(pb, url, flags, int_cb, options);
+}
+
 int avio_close(AVIOContext *s)
 {
     URLContext *h;