summaryrefslogtreecommitdiffstats
path: root/stream/network.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/network.c')
-rw-r--r--stream/network.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/stream/network.c b/stream/network.c
index e90b4a4b90..d6b8079276 100644
--- a/stream/network.c
+++ b/stream/network.c
@@ -68,6 +68,11 @@ int network_ipv4_only_proxy = 0;
const mime_struct_t mime_type_table[] = {
+#ifdef CONFIG_LIBAVFORMAT
+ // Flash Video
+ { "video/x-flv", DEMUXER_TYPE_LAVF_PREFERRED},
+ { "video/quicktime", DEMUXER_TYPE_LAVF_PREFERRED },
+#endif
// MP3 streaming, some MP3 streaming server answer with audio/mpeg
{ "audio/mpeg", DEMUXER_TYPE_AUDIO },
// MPEG streaming
@@ -101,10 +106,6 @@ const mime_struct_t mime_type_table[] = {
// NullSoft Streaming Video
{ "video/nsv", DEMUXER_TYPE_NSV},
{ "misc/ultravox", DEMUXER_TYPE_NSV},
-#ifdef CONFIG_LIBAVFORMAT
- // Flash Video
- { "video/x-flv", DEMUXER_TYPE_LAVF},
-#endif
{ NULL, DEMUXER_TYPE_UNKNOWN},
};