mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
eece89042a
The Microsoft Media Foundation (MF) is the successor of DirectShow. This commit includes two kinds of video capture implementation, one uses IMFSourceReader interface which is available since Windows Vista and the other is based on IMFCaptureEngine interface which is available since Windows 8. Note that this new video source element cannot be used in UWP app for now, since device activation using those APIs are not allowed by MS. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/760>
114 lines
No EOL
3.9 KiB
C
114 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 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;
|
|
|
|
GstMFSourceType soure_type;
|
|
|
|
gchar *device_path;
|
|
gchar *device_name;
|
|
gint device_index;
|
|
};
|
|
|
|
struct _GstMFSourceObjectClass
|
|
{
|
|
GstObjectClass parent_class;
|
|
|
|
gboolean (*start) (GstMFSourceObject * object);
|
|
|
|
gboolean (*stop) (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);
|
|
|
|
/* Utils */
|
|
gboolean gst_mf_source_enum_device_activate (GstMFSourceType source_type,
|
|
GList ** device_activates);
|
|
|
|
void gst_mf_device_activate_free (GstMFDeviceActivate * activate);
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstMFSourceObject, gst_object_unref)
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_MF_SOURCE_OBJECT_H__ */ |