2 * gstvapicompat.h - VA-API compatibility glue
4 * Copyright (C) 2010-2011 Splitted-Desktop Systems
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1
9 * of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA
22 #ifndef GST_VAAPI_COMPAT_H
23 #define GST_VAAPI_COMPAT_H
27 #ifdef HAVE_VA_VA_GLX_H
28 # define USE_VAAPI_GLX 1
30 # define USE_VAAPI_GLX 0
34 # include <va/va_glx.h>
36 # define vaGetDisplayGLX(dpy) vaGetDisplay(dpy)
39 /* Compatibility glue with VA-API < 0.31 */
40 #if !VA_CHECK_VERSION(0,31,0)
42 #define vaSyncSurface(dpy, s) (vaSyncSurface)((dpy), VA_INVALID_ID, (s))
44 #define vaPutImage vaPutImage2
45 #undef vaAssociateSubpicture
46 #define vaAssociateSubpicture vaAssociateSubpicture2
49 /* Compatibility glue with VA-API 0.34 */
50 #if VA_CHECK_VERSION(0,34,0)
51 # include <va/va_compat.h>
54 #endif /* GST_VAAPI_COMPAT_H */