summaryrefslogtreecommitdiffstats
path: root/stream/stream_bluray.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_bluray.c')
-rw-r--r--stream/stream_bluray.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/stream/stream_bluray.c b/stream/stream_bluray.c
index 61e63151fb..69e47a0589 100644
--- a/stream/stream_bluray.c
+++ b/stream/stream_bluray.c
@@ -402,15 +402,15 @@ err_no_info:
}
const stream_info_t stream_info_bluray = {
- "bd",
- bluray_stream_open,
- { "bd", "br", "bluray", NULL },
+ .name = "bd",
+ .open = bluray_stream_open,
+ .protocols = (const char*[]){ "bd", "br", "bluray", NULL },
.priv_defaults = &bluray_stream_priv_dflts,
.priv_size = sizeof(struct bluray_priv_s),
.options = bluray_stream_opts_fields,
- .url_options = {
- {"hostname", "title"},
- {"filename", "device"},
- {0}
+ .url_options = (const char*[]){
+ "hostname=title",
+ "filename=device",
+ NULL
},
};