summaryrefslogtreecommitdiffstats
path: root/stream/stream_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_null.c')
-rw-r--r--stream/stream_null.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/stream/stream_null.c b/stream/stream_null.c
index 71873e4d16..93492e63a6 100644
--- a/stream/stream_null.c
+++ b/stream/stream_null.c
@@ -10,9 +10,6 @@
static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
stream->type = STREAMTYPE_DUMMY;
- if(strncmp("mf://",stream->url,5) == 0) {
- *file_format = DEMUXER_TYPE_MF;
- }
return 1;
}
@@ -23,8 +20,7 @@ stream_info_t stream_info_null = {
"Albeu",
"",
open_s,
- {
-"mf", "null", NULL },
+ { "null", NULL },
NULL,
0 // Urls are an option string
};