]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/avio.c
sbgdec: read_seek was undeprecated.
[ffmpeg] / libavformat / avio.c
index 8305443ada6255aea6b406205618a489045599df..afaa7e6e19a43358e41702614e0e8a59d9eb38ec 100644 (file)
@@ -86,7 +86,7 @@ const AVClass ffurl_context_class = {
 
 const char *avio_enum_protocols(void **opaque, int output)
 {
-    URLProtocol **p = opaque;
+    URLProtocol **p = (URLProtocol **)opaque;
     *p = ffurl_protocol_next(*p);
     if (!*p) return NULL;
     if ((output && (*p)->url_write) || (!output && (*p)->url_read))