diff options
author | wm4 <wm4@nowhere> | 2013-08-12 01:38:38 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-08-12 01:38:38 +0200 |
commit | 7df6539a871b41cdb654d498f39ba005996c300f (patch) | |
tree | 6ab51ff68302c26e9c8e0f6d9aaa4b7123ddabdc /video/out | |
parent | 2827295703c74e3c119df9a435aa856e268c2ea9 (diff) | |
download | mpv-7df6539a871b41cdb654d498f39ba005996c300f.tar.bz2 mpv-7df6539a871b41cdb654d498f39ba005996c300f.tar.xz |
vo: fix build with #ifdef -> #if
Whoever had the idea of introducing mixed conventions for these
preprocessor symbols should be shot.
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/vo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c index 592dfe6243..be1ba84a12 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -87,7 +87,7 @@ const struct vo_driver *video_out_drivers[] = #ifdef CONFIG_GL &video_out_opengl_old, #endif -#ifdef CONFIG_VAAPI +#if CONFIG_VAAPI &video_out_vaapi, #endif #ifdef CONFIG_X11 |