summaryrefslogtreecommitdiffstats
path: root/stream/tv.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-05 17:00:23 +0200
committerwm4 <wm4@nowhere>2014-07-05 17:07:15 +0200
commit54a4a25fe9d4504ba60fe40dc15744403a4680f9 (patch)
tree74927e9ff52208cf0db4d6bbb382716453d32d59 /stream/tv.h
parent37085788e4d25b9eba65e850b80c8184b51b0ad3 (diff)
downloadmpv-54a4a25fe9d4504ba60fe40dc15744403a4680f9.tar.bz2
mpv-54a4a25fe9d4504ba60fe40dc15744403a4680f9.tar.xz
tv: move demuxer parts to separate file
Now all demuxer implementations (at least demuxer API-wise) are in the demux directory.
Diffstat (limited to 'stream/tv.h')
-rw-r--r--stream/tv.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/stream/tv.h b/stream/tv.h
index d6d75e8ee4..0f9fa1defb 100644
--- a/stream/tv.h
+++ b/stream/tv.h
@@ -231,4 +231,12 @@ void tv_free_handle(tvi_handle_t *h);
#define TV_NORM_PALN 6
#define TV_NORM_NTSCJP 7
+int tv_uninit(tvi_handle_t *tvh);
+void tv_scan(tvi_handle_t *tvh);
+int open_tv(tvi_handle_t *tvh);
+tvi_handle_t *tv_begin(tv_param_t* tv_param, struct mp_log *log);
+int tv_stream_control(tvi_handle_t *tvh, int cmd, void *arg);
+
+extern const struct m_sub_options tv_params_conf;
+
#endif /* MPLAYER_TV_H */