summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-19 22:02:09 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-19 22:02:09 +0000
commit8b3e340df99ee06c1d903f5fca3f5cbd65e91676 (patch)
treed1efedd3beb308f571a3b7b1280980a380c1fb78 /libvo/video_out.c
parent5e2623cb497a27e3e4a259fefbbcaac5692a6777 (diff)
downloadmpv-8b3e340df99ee06c1d903f5fca3f5cbd65e91676.tar.bz2
mpv-8b3e340df99ee06c1d903f5fca3f5cbd65e91676.tar.xz
new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19142 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index b10614a7b6..738a092b01 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -99,6 +99,9 @@ extern vo_functions_t video_out_directx;
extern vo_functions_t video_out_dxr2;
#endif
extern vo_functions_t video_out_dxr3;
+#ifdef HAVE_IVTV
+extern vo_functions_t video_out_ivtv;
+#endif
#ifdef HAVE_JPEG
extern vo_functions_t video_out_jpeg;
#endif
@@ -210,6 +213,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_DXR3
&video_out_dxr3,
#endif
+#ifdef HAVE_IVTV
+ &video_out_ivtv,
+#endif
#ifdef HAVE_ZR
&video_out_zr,
&video_out_zr2,