Make register_protocol() use the function av_register_protocol2()
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Thu, 30 Sep 2010 10:51:22 +0000 (10:51 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Thu, 30 Sep 2010 10:51:22 +0000 (10:51 +0000)
rather than av_register_protocol(), which is deprecated.
Fix the GCC warning:
avio.c: In function ‘register_protocol’:
avio.c:93: warning: ‘av_register_protocol’ is deprecated (declared at avio.c:86)

Originally committed as revision 25267 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/avio.c

index bf075d24aea2b5aa094f8edc1b2e9691e6d2fce3..43998789915dd9d18ee981a835f6a957589473ac 100644 (file)
@@ -90,7 +90,7 @@ int av_register_protocol(URLProtocol *protocol)
 
 int register_protocol(URLProtocol *protocol)
 {
-    return av_register_protocol(protocol);
+    return av_register_protocol2(protocol, sizeof(struct URLProtocol_compat));
 }
 #endif