diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-04-02 23:48:10 +0300 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-04-02 23:55:26 +0300 |
commit | 35a7dfc7370bac2f659108b8d97f2a53adb4acc3 (patch) | |
tree | 4933a8308deb01b6fe8e53a8077f6cbc774ebce3 /libvo/video_out.c | |
parent | d136cf68827382ad710adb74d02e50364052f430 (diff) | |
download | mpv-35a7dfc7370bac2f659108b8d97f2a53adb4acc3.tar.bz2 mpv-35a7dfc7370bac2f659108b8d97f2a53adb4acc3.tar.xz |
Make VO xv preferred over vdpau again
I can still reproduce bugs easily with vo vdpau, and there's no pause
update support for it yet.
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r-- | libvo/video_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c index efd2963252..eb348dd086 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -162,12 +162,12 @@ const struct vo_driver *video_out_drivers[] = #ifdef CONFIG_3DFX &video_out_3dfx, #endif -#if CONFIG_VDPAU - &video_out_vdpau, -#endif #ifdef CONFIG_XV &video_out_xv, #endif +#if CONFIG_VDPAU + &video_out_vdpau, +#endif #ifdef CONFIG_X11 &video_out_x11, &video_out_xover, |