summaryrefslogtreecommitdiffstats
path: root/stream/tv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/tv.c')
-rw-r--r--stream/tv.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/stream/tv.c b/stream/tv.c
index aa5383402f..9ddf3771ed 100644
--- a/stream/tv.c
+++ b/stream/tv.c
@@ -701,13 +701,16 @@ static int tv_uninit(tvi_handle_t *tvh)
return res;
}
-static int demux_open_tv(demuxer_t *demuxer)
+static int demux_open_tv(demuxer_t *demuxer, enum demux_check check)
{
tvi_handle_t *tvh;
sh_video_t *sh_video;
sh_audio_t *sh_audio = NULL;
const tvi_functions_t *funcs;
+ if (check > DEMUX_CHECK_REQUEST || demuxer->stream->type != STREAMTYPE_TV)
+ return -1;
+
demuxer->priv=NULL;
if(!(tvh=tv_begin(demuxer->stream->priv))) return -1;
if (!tvh->functions->init(tvh->priv)) return -1;