mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
e580676747
... so that subclass can access each value and update them. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1241>
116 lines
No EOL
3.9 KiB
C
116 lines
No EOL
3.9 KiB
C
/* GStreamer
|
|
* Copyright (C) 2019 Seungha Yang <seungha.yang@navercorp.com>
|
|
* Copyright (C) 2020 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.
|
|
*/
|
|
|
|
#ifndef __GST_MF_SOURCE_OBJECT_H__
|
|
#define __GST_MF_SOURCE_OBJECT_H__
|
|
|
|
#include <gst/gst.h>
|
|
#include "gstmfutils.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_MF_SOURCE_OBJECT (gst_mf_source_object_get_type())
|
|
#define GST_MF_SOURCE_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_MF_SOURCE_OBJECT, GstMFSourceObject))
|
|
#define GST_MF_SOURCE_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_MF_SOURCE_OBJECT, GstMFSourceObjectClass))
|
|
#define GST_IS_MF_SOURCE_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_MF_SOURCE_OBJECT))
|
|
#define GST_IS_MF_SOURCE_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_MF_SOURCE_OBJECT))
|
|
#define GST_MF_SOURCE_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GST_TYPE_MF_SOURCE_OBJECT, GstMFSourceObjectClass))
|
|
|
|
typedef struct _GstMFSourceObject GstMFSourceObject;
|
|
typedef struct _GstMFSourceObjectClass GstMFSourceObjectClass;
|
|
typedef struct _GstMFSourceObjectPrivate GstMFSourceObjectPrivate;
|
|
|
|
typedef enum
|
|
{
|
|
GST_MF_SOURCE_TYPE_VIDEO,
|
|
} GstMFSourceType;
|
|
|
|
#define GST_TYPE_MF_SOURCE_TYPE (gst_mf_source_type_get_type())
|
|
GType gst_mf_source_type_get_type (void);
|
|
|
|
typedef struct
|
|
{
|
|
IMFActivate *handle;
|
|
guint index;
|
|
gchar *name;
|
|
gchar *path;
|
|
} GstMFDeviceActivate;
|
|
|
|
struct _GstMFSourceObject
|
|
{
|
|
GstObject parent;
|
|
|
|
gboolean opened;
|
|
|
|
gchar *device_path;
|
|
gchar *device_name;
|
|
gint device_index;
|
|
|
|
GstMFSourceObjectPrivate *priv;
|
|
};
|
|
|
|
struct _GstMFSourceObjectClass
|
|
{
|
|
GstObjectClass parent_class;
|
|
|
|
gboolean (*open) (GstMFSourceObject * object,
|
|
IMFActivate * activate);
|
|
|
|
gboolean (*start) (GstMFSourceObject * object);
|
|
|
|
gboolean (*stop) (GstMFSourceObject * object);
|
|
|
|
gboolean (*close) (GstMFSourceObject * object);
|
|
|
|
GstFlowReturn (*fill) (GstMFSourceObject * object,
|
|
GstBuffer * buffer);
|
|
|
|
gboolean (*unlock) (GstMFSourceObject * object);
|
|
|
|
gboolean (*unlock_stop) (GstMFSourceObject * object);
|
|
|
|
GstCaps * (*get_caps) (GstMFSourceObject * object);
|
|
|
|
gboolean (*set_caps) (GstMFSourceObject * object,
|
|
GstCaps * caps);
|
|
};
|
|
|
|
GType gst_mf_source_object_get_type (void);
|
|
|
|
gboolean gst_mf_source_object_start (GstMFSourceObject * object);
|
|
|
|
gboolean gst_mf_source_object_stop (GstMFSourceObject * object);
|
|
|
|
GstFlowReturn gst_mf_source_object_fill (GstMFSourceObject * object,
|
|
GstBuffer * buffer);
|
|
|
|
void gst_mf_source_object_set_flushing (GstMFSourceObject * object,
|
|
gboolean flushing);
|
|
|
|
GstCaps * gst_mf_source_object_get_caps (GstMFSourceObject * object);
|
|
|
|
gboolean gst_mf_source_object_set_caps (GstMFSourceObject * object,
|
|
GstCaps * caps);
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstMFSourceObject, gst_object_unref)
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_MF_SOURCE_OBJECT_H__ */ |