summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-29 19:20:55 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-29 19:20:55 +0000
commitb61b0180623a0f7531624c349e3e06b75a9f46e3 (patch)
tree588a073e854a2db8e285389ad868f8e4993cee10 /libvo/video_out.c
parent6564720a31551fb2cb2ac0983a142bb028585c4b (diff)
downloadmpv-b61b0180623a0f7531624c349e3e06b75a9f46e3.tar.bz2
mpv-b61b0180623a0f7531624c349e3e06b75a9f46e3.tar.xz
v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23925 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 4b85b99a46..14899b82a5 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -103,6 +103,9 @@ extern vo_functions_t video_out_dxr3;
#ifdef HAVE_IVTV
extern vo_functions_t video_out_ivtv;
#endif
+#ifdef HAVE_V4L2_DECODER
+extern vo_functions_t video_out_v4l2;
+#endif
#ifdef HAVE_JPEG
extern vo_functions_t video_out_jpeg;
#endif
@@ -214,6 +217,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_IVTV
&video_out_ivtv,
#endif
+#ifdef HAVE_V4L2_DECODER
+ &video_out_v4l2,
+#endif
#ifdef HAVE_ZR
&video_out_zr,
&video_out_zr2,