Commit 6541e664 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: kill warning about undefined preproc variable

parent 6e9c1d1e
......@@ -252,7 +252,7 @@ static int Init( vout_thread_t *p_vout )
p_vout->output.i_chroma = VLC_CODEC_YUYV;
i_pixel_pitch = 2;
#elif (VLCGL_FORMAT == GL_YCBCR_422_APPLE)
#elif defined( GL_YCBCR_422_APPLE ) && (VLCGL_FORMAT == GL_YCBCR_422_APPLE)
p_vout->output.i_chroma = VLC_CODEC_UYVY;
i_pixel_pitch = 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment