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.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/stream/stream_tv.c b/stream/stream_tv.c
index 9c8861dcea..435e3e7b54 100644
--- a/stream/stream_tv.c
+++ b/stream/stream_tv.c
@@ -31,13 +31,6 @@
#include <stdio.h>
-#define OPT_BASE_STRUCT struct tv_stream_params
-static const m_option_t stream_opts_fields[] = {
- OPT_STRING("channel", channel, 0),
- OPT_INT("input", input, 0),
- {0}
-};
-
static void
tv_stream_close (stream_t *stream)
{
@@ -58,14 +51,4 @@ const stream_info_t stream_info_tv = {
.name = "tv",
.open = tv_stream_open,
.protocols = (const char*const[]){ "tv", NULL },
- .priv_size = sizeof(tv_param_t),
- .priv_defaults = &(const struct tv_stream_params){
- .input = -1,
- },
- .options = stream_opts_fields,
- .url_options = (const char*const[]){
- "hostname=channel",
- "filename=input",
- NULL
- },
};