2010-03-24 16:17:49 +00:00
|
|
|
/*
|
|
|
|
* gstvapicompat.h - VA-API compatibility glue
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2013-01-29 13:00:04 +00:00
|
|
|
* Copyright (C) 2012 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-03-24 16:17:49 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-03-24 16:17:49 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-24 16:17:49 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-05-03 07:07:27 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-24 16:17:49 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
2010-03-24 16:17:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_COMPAT_H
|
|
|
|
#define GST_VAAPI_COMPAT_H
|
|
|
|
|
2012-07-20 09:45:15 +00:00
|
|
|
#include <va/va.h>
|
2010-03-24 16:17:49 +00:00
|
|
|
|
|
|
|
/* Compatibility glue with VA-API < 0.31 */
|
|
|
|
#if !VA_CHECK_VERSION(0,31,0)
|
|
|
|
#undef vaSyncSurface
|
|
|
|
#define vaSyncSurface(dpy, s) (vaSyncSurface)((dpy), VA_INVALID_ID, (s))
|
|
|
|
#undef vaPutImage
|
|
|
|
#define vaPutImage vaPutImage2
|
|
|
|
#undef vaAssociateSubpicture
|
|
|
|
#define vaAssociateSubpicture vaAssociateSubpicture2
|
|
|
|
#endif
|
|
|
|
|
2012-03-23 16:13:58 +00:00
|
|
|
/* Compatibility glue with VA-API 0.34 */
|
|
|
|
#if VA_CHECK_VERSION(0,34,0)
|
|
|
|
# include <va/va_compat.h>
|
|
|
|
#endif
|
|
|
|
|
2015-06-18 09:20:37 +00:00
|
|
|
#if VA_CHECK_VERSION(0,36,0)
|
|
|
|
#include <va/va_drmcommon.h>
|
|
|
|
#endif
|
|
|
|
|
2015-05-27 20:43:16 +00:00
|
|
|
#ifdef HAVE_VA_VA_DEC_HEVC_H
|
|
|
|
# include <va/va_dec_hevc.h>
|
|
|
|
#endif
|
|
|
|
|
2010-03-24 16:17:49 +00:00
|
|
|
#endif /* GST_VAAPI_COMPAT_H */
|