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
|
|
|
|
2017-08-17 10:44:40 +00:00
|
|
|
#if VA_CHECK_VERSION(1,0,0)
|
|
|
|
#define VA_ROI_RC_QP_DELTA_SUPPORT(x) x->bits.roi_rc_qp_delta_support
|
2017-08-25 14:22:59 +00:00
|
|
|
#define VA_ENC_PACKED_HEADER_H264_SEI VAEncPackedHeaderRawData
|
2017-08-17 10:44:40 +00:00
|
|
|
#else
|
|
|
|
#define VA_ROI_RC_QP_DELTA_SUPPORT(x) x->bits.roi_rc_qp_delat_support
|
2017-08-25 14:22:59 +00:00
|
|
|
#define VA_ENC_PACKED_HEADER_H264_SEI VAEncPackedHeaderH264_SEI
|
2017-08-17 10:44:40 +00:00
|
|
|
#endif
|
|
|
|
|
2018-12-24 04:58:53 +00:00
|
|
|
#include <va/va_compat.h>
|
2015-06-18 09:20:37 +00:00
|
|
|
#include <va/va_drmcommon.h>
|
2015-05-27 20:43:16 +00:00
|
|
|
|
2010-03-24 16:17:49 +00:00
|
|
|
#endif /* GST_VAAPI_COMPAT_H */
|