hip event handle wrapper object Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9281>
83 lines
2.8 KiB
C
83 lines
2.8 KiB
C
/* GStreamer
|
|
* Copyright (C) 2025 Seungha Yang <seungha@centricular.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
|
|
|
|
#include <gst/gst.h>
|
|
#include "gsthip_fwd.h"
|
|
#include "gsthip-enums.h"
|
|
#include <hip/hip_runtime.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_HIP_EVENT_POOL (gst_hip_event_pool_get_type ())
|
|
#define GST_HIP_EVENT_POOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_HIP_EVENT_POOL, GstHipEventPool))
|
|
#define GST_HIP_EVENT_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_HIP_EVENT_POOL, GstHipEventPoolClass))
|
|
#define GST_IS_HIP_EVENT_POOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_HIP_EVENT_POOL))
|
|
#define GST_IS_HIP_EVENT_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_HIP_EVENT_POOL))
|
|
#define GST_HIP_EVENT_POOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_HIP_EVENT_POOL, GstHipEventPoolClass))
|
|
#define GST_HIP_EVENT_POOL_CAST(obj) ((GstHipEventPool*)(obj))
|
|
|
|
struct _GstHipEventPool
|
|
{
|
|
GstObject parent;
|
|
|
|
/*< private >*/
|
|
GstHipEventPoolPrivate *priv;
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
};
|
|
|
|
struct _GstHipEventPoolClass
|
|
{
|
|
GstObjectClass parent_class;
|
|
|
|
/*< private >*/
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
};
|
|
|
|
GType gst_hip_event_pool_get_type (void);
|
|
|
|
GType gst_hip_event_get_type (void);
|
|
|
|
GstHipEventPool * gst_hip_event_pool_new (GstHipVendor vendor,
|
|
guint device_id);
|
|
|
|
gboolean gst_hip_event_pool_acquire (GstHipEventPool * pool,
|
|
GstHipEvent ** event);
|
|
|
|
GstHipVendor gst_hip_event_get_vendor (GstHipEvent * event);
|
|
|
|
guint gst_hip_event_get_device_id (GstHipEvent * event);
|
|
|
|
hipError_t gst_hip_event_record (GstHipEvent * event,
|
|
hipStream_t stream);
|
|
|
|
hipError_t gst_hip_event_query (GstHipEvent * event);
|
|
|
|
hipError_t gst_hip_event_synchronize (GstHipEvent * event);
|
|
|
|
GstHipEvent * gst_hip_event_ref (GstHipEvent * event);
|
|
|
|
void gst_hip_event_unref (GstHipEvent * event);
|
|
|
|
void gst_clear_hip_event (GstHipEvent ** event);
|
|
|
|
G_END_DECLS
|
|
|