summaryrefslogtreecommitdiffstats
path: root/libmpdemux/tvi_def.h
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-09 23:46:06 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-09 23:46:06 +0000
commitaabf596111a5545a6d4217646f69b80b1aba3552 (patch)
treedf60e7387884d47dc0fec52cb53eda097caf7ab2 /libmpdemux/tvi_def.h
parent74aea030e144420f1560d2a4621bf0edaf1b15cd (diff)
downloadmpv-aabf596111a5545a6d4217646f69b80b1aba3552.tar.bz2
mpv-aabf596111a5545a6d4217646f69b80b1aba3552.tar.xz
added tv subsystem
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2791 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/tvi_def.h')
-rw-r--r--libmpdemux/tvi_def.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/libmpdemux/tvi_def.h b/libmpdemux/tvi_def.h
new file mode 100644
index 0000000000..9e9973b5f9
--- /dev/null
+++ b/libmpdemux/tvi_def.h
@@ -0,0 +1,44 @@
+static int init(priv_t *priv);
+static int exit(priv_t *priv);
+static int control(priv_t *priv, int cmd, void *arg);
+static int grab_video_frame(priv_t *priv, char *buffer, int len);
+static int get_video_framesize(priv_t *priv);
+static int grab_audio_frame(priv_t *priv, char *buffer, int len);
+static int get_audio_framesize(priv_t *priv);
+
+static tvi_functions_t functions =
+{
+ init,
+ exit,
+ control,
+ grab_video_frame,
+ get_video_framesize,
+ grab_audio_frame,
+ get_audio_framesize
+};
+
+static tvi_handle_t *new_handle()
+{
+ tvi_handle_t *h = malloc(sizeof(tvi_handle_t));
+
+ if (!h)
+ return(NULL);
+ h->priv = malloc(sizeof(priv_t));
+ if (!h->priv)
+ {
+ free(h);
+ return(NULL);
+ }
+ memset(h->priv, 0, sizeof(priv_t));
+ h->info = &info;
+ h->functions = &functions;
+ return(h);
+}
+
+static void free_handle(tvi_handle_t *h)
+{
+ if (h->priv)
+ free(h->priv);
+ if (h)
+ free(h);
+}