diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-11-17 00:23:48 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-11-17 00:23:48 +0000 |
commit | aa234b197bce7c4e7a75f3a8e2ca813df298e499 (patch) | |
tree | 1594698b12dfe4d887675c1066333cc11d6674ce /libmpdemux/tvi_def.h | |
parent | 4332bed459567aa7a746131c56d5a07ba88c05b1 (diff) | |
download | mpv-aa234b197bce7c4e7a75f3a8e2ca813df298e499.tar.bz2 mpv-aa234b197bce7c4e7a75f3a8e2ca813df298e499.tar.xz |
added support for norm=,chanlist=,channel= and also on-the-fly channel chaning with keys
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2942 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/tvi_def.h')
-rw-r--r-- | libmpdemux/tvi_def.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpdemux/tvi_def.h b/libmpdemux/tvi_def.h index 30658f3304..aaca6d5a2f 100644 --- a/libmpdemux/tvi_def.h +++ b/libmpdemux/tvi_def.h @@ -36,6 +36,10 @@ static tvi_handle_t *new_handle() h->functions = &functions; h->params = NULL; h->seq = 0; + h->chanlist = -1; + h->chanlist_s = NULL; + h->norm = -1; + h->channel = -1; return(h); } |