summaryrefslogtreecommitdiffstats
path: root/stream/stream_tv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_tv.c')
-rw-r--r--stream/stream_tv.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/stream/stream_tv.c b/stream/stream_tv.c
index ef6f49b4b6..b1c2e63167 100644
--- a/stream/stream_tv.c
+++ b/stream/stream_tv.c
@@ -97,15 +97,15 @@ tv_stream_open (stream_t *stream, int mode)
}
const stream_info_t stream_info_tv = {
- "tv",
- tv_stream_open,
- { "tv", NULL },
+ .name = "tv",
+ .open = tv_stream_open,
+ .protocols = (const char*[]){ "tv", NULL },
.priv_size = sizeof(tv_param_t),
.priv_defaults = &stream_tv_defaults,
.options = stream_opts_fields,
- .url_options = {
- {"hostname", "channel"},
- {"filename", "input"},
- {0}
+ .url_options = (const char*[]){
+ "hostname=channel",
+ "filename=input",
+ NULL
},
};