summaryrefslogtreecommitdiffstats
path: root/stream/tv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/tv.c')
-rw-r--r--stream/tv.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/stream/tv.c b/stream/tv.c
index 76f4850999..daa6b7dd7f 100644
--- a/stream/tv.c
+++ b/stream/tv.c
@@ -80,6 +80,31 @@ static const tvi_info_t* tvi_driver_list[]={
NULL
};
+tvi_handle_t *tv_new_handle(int size, const tvi_functions_t *functions)
+{
+ tvi_handle_t *h = malloc(sizeof(*h));
+
+ if (!h)
+ return NULL;
+
+ h->priv = calloc(1, size);
+
+ if (!h->priv) {
+ free(h);
+ return NULL;
+ }
+
+ h->functions = functions;
+ h->seq = 0;
+ h->chanlist = -1;
+ h->chanlist_s = NULL;
+ h->norm = -1;
+ h->channel = -1;
+ h->scan = NULL;
+
+ return h;
+}
+
void tv_free_handle(tvi_handle_t *h)
{
if (h) {