OSDN Git Service

Place the concat protocol entry at the begin of the registered
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Tue, 27 Jul 2010 14:34:56 +0000 (14:34 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Tue, 27 Jul 2010 14:34:56 +0000 (14:34 +0000)
protocol list, restore alphabetical order.

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

libavformat/allformats.c

index 9a6a549..80475b9 100644 (file)
@@ -221,6 +221,7 @@ void av_register_all(void)
     REGISTER_MUXDEMUX (LIBNUT, libnut);
 
     /* protocols */
+    REGISTER_PROTOCOL (CONCAT, concat);
     REGISTER_PROTOCOL (FILE, file);
     REGISTER_PROTOCOL (GOPHER, gopher);
     REGISTER_PROTOCOL (HTTP, http);
@@ -237,5 +238,4 @@ void av_register_all(void)
     REGISTER_PROTOCOL (RTP, rtp);
     REGISTER_PROTOCOL (TCP, tcp);
     REGISTER_PROTOCOL (UDP, udp);
-    REGISTER_PROTOCOL (CONCAT, concat);
 }