summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-27 14:34:56 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-27 14:34:56 +0000
commit88ad2faff8434ea70afe981913de50e572014fb3 (patch)
treeea9616444825bfc5dc2ba40192c243f2864d2d57 /libavformat/allformats.c
parentac3ccbc0e2d4e491a7b0887000db44f69f32229b (diff)
Place the concat protocol entry at the begin of the registered
protocol list, restore alphabetical order. Originally committed as revision 24545 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r--libavformat/allformats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 9a6a549c2c..80475b9fd9 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -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);
}