mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 21:08:59 +08:00
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
This commit is contained in:
@ -221,6 +221,7 @@ void av_register_all(void)
|
|||||||
REGISTER_MUXDEMUX (LIBNUT, libnut);
|
REGISTER_MUXDEMUX (LIBNUT, libnut);
|
||||||
|
|
||||||
/* protocols */
|
/* protocols */
|
||||||
|
REGISTER_PROTOCOL (CONCAT, concat);
|
||||||
REGISTER_PROTOCOL (FILE, file);
|
REGISTER_PROTOCOL (FILE, file);
|
||||||
REGISTER_PROTOCOL (GOPHER, gopher);
|
REGISTER_PROTOCOL (GOPHER, gopher);
|
||||||
REGISTER_PROTOCOL (HTTP, http);
|
REGISTER_PROTOCOL (HTTP, http);
|
||||||
@ -237,5 +238,4 @@ void av_register_all(void)
|
|||||||
REGISTER_PROTOCOL (RTP, rtp);
|
REGISTER_PROTOCOL (RTP, rtp);
|
||||||
REGISTER_PROTOCOL (TCP, tcp);
|
REGISTER_PROTOCOL (TCP, tcp);
|
||||||
REGISTER_PROTOCOL (UDP, udp);
|
REGISTER_PROTOCOL (UDP, udp);
|
||||||
REGISTER_PROTOCOL (CONCAT, concat);
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user