]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/avio.c
avformat/sierravmd: Support for Shivers 2 stereo tracks
[ffmpeg] / libavformat / avio.c
index 3606eb0fda965a740d6cc0a8c90d3227b01e9f01..62233a633c7bf568a68931714663adff2aae642c 100644 (file)
@@ -645,6 +645,13 @@ int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
     return h->prot->url_get_multi_file_handle(h, handles, numhandles);
 }
 
+int ffurl_get_short_seek(URLContext *h)
+{
+    if (!h->prot->url_get_short_seek)
+        return AVERROR(ENOSYS);
+    return h->prot->url_get_short_seek(h);
+}
+
 int ffurl_shutdown(URLContext *h, int flags)
 {
     if (!h->prot->url_shutdown)