summaryrefslogtreecommitdiffstats
path: root/stream/tvi_bsdbt848.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-01 18:38:00 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-01 18:38:00 +0000
commite1704a4877adfeb4b233b2e36dfbdab85d351e24 (patch)
tree75ff1abe78acd5e8893076cb0dab8ca3db1433ef /stream/tvi_bsdbt848.c
parent78d1884e8e4e67b0623a3d06953ed1bcff570030 (diff)
downloadmpv-e1704a4877adfeb4b233b2e36dfbdab85d351e24.tar.bz2
mpv-e1704a4877adfeb4b233b2e36dfbdab85d351e24.tar.xz
tv driver loading rework. As a side effect "-tv driver=help" option is
implemented. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22399 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tvi_bsdbt848.c')
-rw-r--r--stream/tvi_bsdbt848.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/stream/tvi_bsdbt848.c b/stream/tvi_bsdbt848.c
index a3aa489db0..cf526823c4 100644
--- a/stream/tvi_bsdbt848.c
+++ b/stream/tvi_bsdbt848.c
@@ -66,8 +66,10 @@
#include "libmpcodecs/img_format.h"
#include "tv.h"
+static tvi_handle_t *tvi_init_bsdbt848(char *device, char *adevice);
/* information about this file */
-static tvi_info_t info = {
+tvi_info_t tvi_info_bsdbt848 = {
+ tvi_init_bsdbt848,
"Brooktree848 Support",
"bsdbt848",
"Charles Henrich",
@@ -169,7 +171,7 @@ return;
}
/* handler creator - entry point ! */
-tvi_handle_t *tvi_init_bsdbt848(char *device)
+static tvi_handle_t *tvi_init_bsdbt848(char *device,char* adevice)
{
return(new_handle());
}