From: Gwenole Beauchesne Date: Mon, 23 Jul 2012 13:20:23 +0000 (+0200) Subject: tests: allow GLX output, if available and selected. X-Git-Tag: accepted/trunk/20120822.173359~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9112cd3f40166e1913fce2c68da41f3f11cf8ce;p=profile%2Fivi%2Fgstreamer-vaapi.git tests: allow GLX output, if available and selected. --- diff --git a/tests/output.c b/tests/output.c index dd76bc7..583347c 100644 --- a/tests/output.c +++ b/tests/output.c @@ -26,6 +26,10 @@ # include # include #endif +#if USE_GLX +# include +# include +#endif #include "output.h" static const VideoOutputInfo *g_video_output; @@ -37,6 +41,12 @@ static const VideoOutputInfo g_video_outputs[] = { gst_vaapi_window_x11_new }, #endif +#if USE_GLX + { "glx", + gst_vaapi_display_glx_new, + gst_vaapi_window_glx_new + }, +#endif { NULL, } };