2013-07-09 13:29:59 +00:00
|
|
|
/*
|
2013-07-15 12:42:33 +00:00
|
|
|
* video-format.h - Video format helpers for VA-API
|
2013-07-09 13:29:59 +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-07-09 13:29:59 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2013-07-09 13:29:59 +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.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_VIDEO_FORMAT_H
|
|
|
|
#define GST_VAAPI_VIDEO_FORMAT_H
|
|
|
|
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2019-10-30 16:59:34 +00:00
|
|
|
#define GST_VAAPI_FORMATS_ALL "{ ENCODED, " \
|
|
|
|
"NV12, YV12, I420, YUY2, UYVY, Y444, GRAY8, P010_10LE, VUYA, Y210, Y410, " \
|
|
|
|
"ARGB, xRGB, RGBA, RGBx, ABGR, xBGR, BGRA, BGRx, RGB16, RGB, BGR10A2_LE " \
|
|
|
|
"}"
|
|
|
|
|
2013-12-21 06:29:50 +00:00
|
|
|
const gchar *
|
|
|
|
gst_vaapi_video_format_to_string (GstVideoFormat format);
|
2013-07-22 13:15:48 +00:00
|
|
|
|
2013-07-09 13:29:59 +00:00
|
|
|
gboolean
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_is_rgb (GstVideoFormat format);
|
2013-07-09 13:29:59 +00:00
|
|
|
|
|
|
|
gboolean
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_is_yuv (GstVideoFormat format);
|
2013-07-09 13:29:59 +00:00
|
|
|
|
2013-07-24 09:37:23 +00:00
|
|
|
GstVideoFormat
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_from_va_fourcc (guint32 fourcc);
|
2013-07-24 09:37:23 +00:00
|
|
|
|
2013-07-09 13:29:59 +00:00
|
|
|
GstVideoFormat
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_from_va_format (const VAImageFormat * va_format);
|
2013-07-09 13:29:59 +00:00
|
|
|
|
|
|
|
const VAImageFormat *
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_to_va_format (GstVideoFormat format);
|
2013-07-09 13:29:59 +00:00
|
|
|
|
2013-07-10 07:48:40 +00:00
|
|
|
guint
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_get_chroma_type (GstVideoFormat format);
|
2013-07-10 07:48:40 +00:00
|
|
|
|
2013-07-09 13:29:59 +00:00
|
|
|
guint
|
2013-12-21 06:29:50 +00:00
|
|
|
gst_vaapi_video_format_get_score (GstVideoFormat format);
|
2013-07-09 13:29:59 +00:00
|
|
|
|
2018-09-20 01:57:33 +00:00
|
|
|
GstVideoFormat
|
|
|
|
gst_vaapi_video_format_from_chroma (guint chroma);
|
|
|
|
|
2015-07-23 18:07:59 +00:00
|
|
|
GstVideoFormat
|
|
|
|
gst_vaapi_video_format_get_best_native (GstVideoFormat format);
|
|
|
|
|
2019-09-05 06:48:22 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_video_format_create_map (VAImageFormat * formats, guint n);
|
|
|
|
|
2013-07-09 13:29:59 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_VIDEO_FORMAT_H */
|