summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-16 11:21:59 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-16 11:21:59 +0000
commita8b3218c2a67e54bcbf8ee58a20dd0dacc8e84bb (patch)
tree045cb9e89f62ea8922637e26ab0342e88916415f /libvo/video_out.c
parentedc15fcf8f854aa81ce4e7eefee17776ff45c16c (diff)
downloadmpv-a8b3218c2a67e54bcbf8ee58a20dd0dacc8e84bb.tar.bz2
mpv-a8b3218c2a67e54bcbf8ee58a20dd0dacc8e84bb.tar.xz
add jpeg support for libvo
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5649 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 10eb084502..200f7703e4 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -100,6 +100,9 @@ extern vo_functions_t video_out_aa;
extern vo_functions_t video_out_mpegpes;
extern vo_functions_t video_out_yuv4mpeg;
extern vo_functions_t video_out_dxr3;
+#ifdef HAVE_JPEG
+extern vo_functions_t video_out_jpeg;
+#endif
#ifdef HAVE_VESA
extern vo_functions_t video_out_vesa;
#endif
@@ -164,6 +167,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_PNG
&video_out_png,
#endif
+#ifdef HAVE_JPEG
+ &video_out_jpeg,
+#endif
&video_out_null,
// &video_out_odivx,
&video_out_pgm,