2020-03-22 18:00:50 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2020 Igalia, S.L.
|
|
|
|
* Author: Víctor Jáquez <vjaquez@igalia.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-10-27 03:08:39 +00:00
|
|
|
#include <gst/va/gstva.h>
|
2021-05-06 10:23:23 +00:00
|
|
|
#include <va/va.h>
|
2020-03-22 18:00:50 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GstVaDecodePicture GstVaDecodePicture;
|
|
|
|
struct _GstVaDecodePicture
|
|
|
|
{
|
|
|
|
GArray *buffers;
|
|
|
|
GArray *slices;
|
2020-09-24 10:29:49 +00:00
|
|
|
GstBuffer *gstbuffer;
|
2020-03-22 18:00:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define GST_TYPE_VA_DECODER (gst_va_decoder_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (GstVaDecoder, gst_va_decoder, GST, VA_DECODER, GstObject)
|
|
|
|
|
|
|
|
GstVaDecoder * gst_va_decoder_new (GstVaDisplay * display,
|
|
|
|
guint32 codec);
|
|
|
|
gboolean gst_va_decoder_open (GstVaDecoder * self,
|
|
|
|
VAProfile profile,
|
|
|
|
guint rt_format);
|
|
|
|
gboolean gst_va_decoder_close (GstVaDecoder * self);
|
|
|
|
gboolean gst_va_decoder_is_open (GstVaDecoder * self);
|
2021-07-17 18:29:45 +00:00
|
|
|
gboolean gst_va_decoder_set_frame_size_with_surfaces
|
|
|
|
(GstVaDecoder * self,
|
2020-03-22 18:00:50 +00:00
|
|
|
gint coded_width,
|
|
|
|
gint coded_height,
|
|
|
|
GArray * surfaces);
|
2021-07-17 18:29:45 +00:00
|
|
|
gboolean gst_va_decoder_set_frame_size (GstVaDecoder * self,
|
|
|
|
gint coded_width,
|
|
|
|
gint coded_height);
|
2021-07-17 18:37:52 +00:00
|
|
|
gboolean gst_va_decoder_update_frame_size (GstVaDecoder * self,
|
2021-07-14 06:27:34 +00:00
|
|
|
gint coded_width,
|
|
|
|
gint coded_height);
|
2020-03-22 18:00:50 +00:00
|
|
|
GstCaps * gst_va_decoder_get_srcpad_caps (GstVaDecoder * self);
|
|
|
|
GstCaps * gst_va_decoder_get_sinkpad_caps (GstVaDecoder * self);
|
|
|
|
gboolean gst_va_decoder_has_profile (GstVaDecoder * self,
|
2020-09-21 15:08:05 +00:00
|
|
|
VAProfile profile);
|
2020-03-22 18:00:50 +00:00
|
|
|
gint gst_va_decoder_get_mem_types (GstVaDecoder * self);
|
2020-08-01 13:47:19 +00:00
|
|
|
GArray * gst_va_decoder_get_surface_formats (GstVaDecoder * self);
|
2020-03-22 18:00:50 +00:00
|
|
|
|
|
|
|
gboolean gst_va_decoder_add_param_buffer (GstVaDecoder * self,
|
2020-09-21 15:08:05 +00:00
|
|
|
GstVaDecodePicture * pic,
|
|
|
|
gint type,
|
|
|
|
gpointer data,
|
|
|
|
gsize size);
|
2020-03-22 18:00:50 +00:00
|
|
|
gboolean gst_va_decoder_add_slice_buffer (GstVaDecoder * self,
|
2020-09-21 15:08:05 +00:00
|
|
|
GstVaDecodePicture * pic,
|
|
|
|
gpointer params_data,
|
|
|
|
gsize params_size,
|
|
|
|
gpointer slice_data,
|
|
|
|
gsize slice_size);
|
2021-01-19 07:07:38 +00:00
|
|
|
gboolean gst_va_decoder_add_slice_buffer_with_n_params
|
|
|
|
(GstVaDecoder * self,
|
|
|
|
GstVaDecodePicture * pic,
|
|
|
|
gpointer params_data,
|
|
|
|
gsize params_size,
|
|
|
|
guint params_num,
|
|
|
|
gpointer slice_data,
|
|
|
|
gsize slice_size);
|
2020-03-22 18:00:50 +00:00
|
|
|
gboolean gst_va_decoder_decode (GstVaDecoder * self,
|
|
|
|
GstVaDecodePicture * pic);
|
2021-01-19 07:17:58 +00:00
|
|
|
gboolean gst_va_decoder_decode_with_aux_surface (GstVaDecoder * self,
|
|
|
|
GstVaDecodePicture * pic,
|
|
|
|
gboolean use_aux);
|
2021-07-17 18:45:48 +00:00
|
|
|
gboolean gst_va_decoder_config_is_equal (GstVaDecoder * decoder,
|
|
|
|
VAProfile new_profile,
|
|
|
|
guint new_rtformat,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height);
|
2021-07-17 18:48:21 +00:00
|
|
|
gboolean gst_va_decoder_get_config (GstVaDecoder * decoder,
|
|
|
|
VAProfile * profile,
|
|
|
|
guint * rt_format,
|
|
|
|
gint * width,
|
|
|
|
gint * height);
|
2020-03-22 18:00:50 +00:00
|
|
|
|
2020-11-26 06:04:31 +00:00
|
|
|
GstVaDecodePicture * gst_va_decode_picture_new (GstVaDecoder * self,
|
|
|
|
GstBuffer * buffer);
|
2020-09-24 10:29:49 +00:00
|
|
|
VASurfaceID gst_va_decode_picture_get_surface (GstVaDecodePicture * pic);
|
2021-01-19 07:17:58 +00:00
|
|
|
VASurfaceID gst_va_decode_picture_get_aux_surface (GstVaDecodePicture * pic);
|
2020-03-22 18:00:50 +00:00
|
|
|
void gst_va_decode_picture_free (GstVaDecodePicture * pic);
|
2020-10-12 17:20:10 +00:00
|
|
|
GstVaDecodePicture * gst_va_decode_picture_dup (GstVaDecodePicture * pic);
|
2020-03-22 18:00:50 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|