2015-04-28 17:36:44 +02:00
|
|
|
/* GStreamer
|
|
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2015-04-28 17:36:44 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2015-04-28 17:36:44 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2015-04-28 17:36:44 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2017-05-23 19:15:33 +02:00
|
|
|
* SECTION:element-pipewiresrc
|
2015-04-28 17:36:44 +02:00
|
|
|
*
|
|
|
|
|
* <refsect2>
|
|
|
|
|
* <title>Example launch line</title>
|
|
|
|
|
* |[
|
2017-05-23 19:15:33 +02:00
|
|
|
* gst-launch -v pipewiresrc ! videoconvert ! ximagesink
|
|
|
|
|
* ]| Shows pipewire output in an X window.
|
2015-04-28 17:36:44 +02:00
|
|
|
* </refsect2>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#endif
|
2017-05-23 19:15:33 +02:00
|
|
|
#include "gstpipewiresrc.h"
|
|
|
|
|
#include "gstpipewireformat.h"
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2019-10-25 15:01:02 +02:00
|
|
|
#include <spa/pod/builder.h>
|
|
|
|
|
|
2015-12-02 20:43:37 +01:00
|
|
|
#include <gst/net/gstnetclientclock.h>
|
2015-04-28 17:36:44 +02:00
|
|
|
#include <gst/allocators/gstfdmemory.h>
|
2018-02-08 12:24:23 +01:00
|
|
|
#include <gst/allocators/gstdmabuf.h>
|
2016-04-13 13:04:32 +02:00
|
|
|
#include <gst/video/video.h>
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
#include "gstpipewireclock.h"
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2016-07-21 18:38:24 +02:00
|
|
|
static GQuark process_mem_data_quark;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (pipewire_src_debug);
|
|
|
|
|
#define GST_CAT_DEFAULT pipewire_src_debug
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-17 11:49:57 +02:00
|
|
|
#define DEFAULT_ALWAYS_COPY false
|
2020-03-20 17:00:36 +01:00
|
|
|
#define DEFAULT_MIN_BUFFERS 1
|
|
|
|
|
#define DEFAULT_MAX_BUFFERS INT32_MAX
|
2020-07-13 12:11:34 +02:00
|
|
|
#define DEFAULT_RESEND_LAST false
|
2017-05-17 11:49:57 +02:00
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
PROP_0,
|
2015-07-28 17:05:03 +02:00
|
|
|
PROP_PATH,
|
|
|
|
|
PROP_CLIENT_NAME,
|
2015-12-09 13:27:43 +01:00
|
|
|
PROP_STREAM_PROPERTIES,
|
2017-05-17 11:49:57 +02:00
|
|
|
PROP_ALWAYS_COPY,
|
2020-03-20 17:00:36 +01:00
|
|
|
PROP_MIN_BUFFERS,
|
|
|
|
|
PROP_MAX_BUFFERS,
|
2018-01-22 17:05:13 +08:00
|
|
|
PROP_FD,
|
2020-07-13 12:11:34 +02:00
|
|
|
PROP_RESEND_LAST,
|
2015-04-28 17:36:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
static GstStaticPadTemplate gst_pipewire_src_template =
|
2015-04-28 17:36:44 +02:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
|
GST_PAD_SRC,
|
|
|
|
|
GST_PAD_ALWAYS,
|
2015-05-15 13:34:32 +02:00
|
|
|
GST_STATIC_CAPS_ANY
|
2015-04-28 17:36:44 +02:00
|
|
|
);
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
#define gst_pipewire_src_parent_class parent_class
|
|
|
|
|
G_DEFINE_TYPE (GstPipeWireSrc, gst_pipewire_src, GST_TYPE_PUSH_SRC);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
static GstStateChangeReturn
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_change_state (GstElement * element, GstStateChange transition);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
static gboolean gst_pipewire_src_send_event (GstElement * elem, GstEvent * event);
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
static gboolean gst_pipewire_src_negotiate (GstBaseSrc * basesrc);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
static GstFlowReturn gst_pipewire_src_create (GstPushSrc * psrc,
|
2015-04-28 17:36:44 +02:00
|
|
|
GstBuffer ** buffer);
|
2017-05-23 19:15:33 +02:00
|
|
|
static gboolean gst_pipewire_src_unlock (GstBaseSrc * basesrc);
|
|
|
|
|
static gboolean gst_pipewire_src_unlock_stop (GstBaseSrc * basesrc);
|
|
|
|
|
static gboolean gst_pipewire_src_start (GstBaseSrc * basesrc);
|
|
|
|
|
static gboolean gst_pipewire_src_stop (GstBaseSrc * basesrc);
|
|
|
|
|
static gboolean gst_pipewire_src_event (GstBaseSrc * src, GstEvent * event);
|
|
|
|
|
static gboolean gst_pipewire_src_query (GstBaseSrc * src, GstQuery * query);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2015-05-20 12:01:13 +02:00
|
|
|
static void
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_set_property (GObject * object, guint prop_id,
|
2015-05-20 12:01:13 +02:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (object);
|
2015-05-20 12:01:13 +02:00
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2015-07-09 17:58:54 +02:00
|
|
|
case PROP_PATH:
|
2017-05-23 19:15:33 +02:00
|
|
|
g_free (pwsrc->path);
|
|
|
|
|
pwsrc->path = g_value_dup_string (value);
|
2015-05-20 12:01:13 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-07-28 17:05:03 +02:00
|
|
|
case PROP_CLIENT_NAME:
|
2017-05-23 19:15:33 +02:00
|
|
|
g_free (pwsrc->client_name);
|
|
|
|
|
pwsrc->client_name = g_value_dup_string (value);
|
2015-07-28 17:05:03 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-12-09 13:27:43 +01:00
|
|
|
case PROP_STREAM_PROPERTIES:
|
2017-05-23 19:15:33 +02:00
|
|
|
if (pwsrc->properties)
|
|
|
|
|
gst_structure_free (pwsrc->properties);
|
|
|
|
|
pwsrc->properties =
|
2015-12-09 13:27:43 +01:00
|
|
|
gst_structure_copy (gst_value_get_structure (value));
|
|
|
|
|
break;
|
|
|
|
|
|
2017-05-17 11:49:57 +02:00
|
|
|
case PROP_ALWAYS_COPY:
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc->always_copy = g_value_get_boolean (value);
|
2017-05-17 11:49:57 +02:00
|
|
|
break;
|
|
|
|
|
|
2020-03-20 17:00:36 +01:00
|
|
|
case PROP_MIN_BUFFERS:
|
|
|
|
|
pwsrc->min_buffers = g_value_get_int (value);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_MAX_BUFFERS:
|
|
|
|
|
pwsrc->max_buffers = g_value_get_int (value);
|
|
|
|
|
break;
|
|
|
|
|
|
2018-01-22 17:05:13 +08:00
|
|
|
case PROP_FD:
|
|
|
|
|
pwsrc->fd = g_value_get_int (value);
|
|
|
|
|
break;
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
case PROP_RESEND_LAST:
|
|
|
|
|
pwsrc->resend_last = g_value_get_boolean (value);
|
|
|
|
|
break;
|
|
|
|
|
|
2015-05-20 12:01:13 +02:00
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_get_property (GObject * object, guint prop_id,
|
2015-05-20 12:01:13 +02:00
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (object);
|
2015-05-20 12:01:13 +02:00
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2015-07-09 17:58:54 +02:00
|
|
|
case PROP_PATH:
|
2017-05-23 19:15:33 +02:00
|
|
|
g_value_set_string (value, pwsrc->path);
|
2015-05-20 12:01:13 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-07-28 17:05:03 +02:00
|
|
|
case PROP_CLIENT_NAME:
|
2017-05-23 19:15:33 +02:00
|
|
|
g_value_set_string (value, pwsrc->client_name);
|
2015-07-28 17:05:03 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-12-09 13:27:43 +01:00
|
|
|
case PROP_STREAM_PROPERTIES:
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_value_set_structure (value, pwsrc->properties);
|
2015-12-09 13:27:43 +01:00
|
|
|
break;
|
|
|
|
|
|
2017-05-17 11:49:57 +02:00
|
|
|
case PROP_ALWAYS_COPY:
|
2017-05-23 19:15:33 +02:00
|
|
|
g_value_set_boolean (value, pwsrc->always_copy);
|
2017-05-17 11:49:57 +02:00
|
|
|
break;
|
|
|
|
|
|
2020-03-20 17:00:36 +01:00
|
|
|
case PROP_MIN_BUFFERS:
|
|
|
|
|
g_value_set_int (value, pwsrc->min_buffers);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_MAX_BUFFERS:
|
|
|
|
|
g_value_set_int (value, pwsrc->max_buffers);
|
|
|
|
|
break;
|
|
|
|
|
|
2018-01-22 17:05:13 +08:00
|
|
|
case PROP_FD:
|
|
|
|
|
g_value_set_int (value, pwsrc->fd);
|
|
|
|
|
break;
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
case PROP_RESEND_LAST:
|
|
|
|
|
g_value_set_boolean (value, pwsrc->resend_last);
|
|
|
|
|
break;
|
|
|
|
|
|
2015-05-20 12:01:13 +02:00
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-02 20:43:37 +01:00
|
|
|
static GstClock *
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_provide_clock (GstElement * elem)
|
2015-12-02 20:43:37 +01:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (elem);
|
2015-12-02 20:43:37 +01:00
|
|
|
GstClock *clock;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_OBJECT_LOCK (pwsrc);
|
|
|
|
|
if (!GST_OBJECT_FLAG_IS_SET (pwsrc, GST_ELEMENT_FLAG_PROVIDE_CLOCK))
|
2015-12-02 20:43:37 +01:00
|
|
|
goto clock_disabled;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (pwsrc->clock && pwsrc->is_live)
|
|
|
|
|
clock = GST_CLOCK_CAST (gst_object_ref (pwsrc->clock));
|
2015-12-02 20:43:37 +01:00
|
|
|
else
|
|
|
|
|
clock = NULL;
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_OBJECT_UNLOCK (pwsrc);
|
2015-12-02 20:43:37 +01:00
|
|
|
|
|
|
|
|
return clock;
|
|
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
|
clock_disabled:
|
|
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "clock provide disabled");
|
|
|
|
|
GST_OBJECT_UNLOCK (pwsrc);
|
2015-12-02 20:43:37 +01:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-20 12:01:13 +02:00
|
|
|
static void
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_finalize (GObject * object)
|
2015-05-20 12:01:13 +02:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (object);
|
2015-05-20 12:01:13 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (pwsrc->properties)
|
|
|
|
|
gst_structure_free (pwsrc->properties);
|
|
|
|
|
if (pwsrc->clock)
|
|
|
|
|
gst_object_unref (pwsrc->clock);
|
|
|
|
|
g_free (pwsrc->path);
|
|
|
|
|
g_free (pwsrc->client_name);
|
2018-08-13 12:07:05 +02:00
|
|
|
g_object_unref(pwsrc->pool);
|
2015-05-20 12:01:13 +02:00
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
static void
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_class_init (GstPipeWireSrcClass * klass)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
GstBaseSrcClass *gstbasesrc_class;
|
|
|
|
|
GstPushSrcClass *gstpushsrc_class;
|
|
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
|
gstbasesrc_class = (GstBaseSrcClass *) klass;
|
|
|
|
|
gstpushsrc_class = (GstPushSrcClass *) klass;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
gobject_class->finalize = gst_pipewire_src_finalize;
|
|
|
|
|
gobject_class->set_property = gst_pipewire_src_set_property;
|
|
|
|
|
gobject_class->get_property = gst_pipewire_src_get_property;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2015-05-20 12:01:13 +02:00
|
|
|
g_object_class_install_property (gobject_class,
|
2015-07-09 17:58:54 +02:00
|
|
|
PROP_PATH,
|
|
|
|
|
g_param_spec_string ("path",
|
|
|
|
|
"Path",
|
|
|
|
|
"The source path to connect to (NULL = default)",
|
2015-05-20 12:01:13 +02:00
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
2015-07-28 17:05:03 +02:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_CLIENT_NAME,
|
|
|
|
|
g_param_spec_string ("client-name",
|
|
|
|
|
"Client Name",
|
|
|
|
|
"The client name to use (NULL = default)",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2015-05-20 12:01:13 +02:00
|
|
|
|
2015-12-09 13:27:43 +01:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_STREAM_PROPERTIES,
|
|
|
|
|
g_param_spec_boxed ("stream-properties",
|
|
|
|
|
"stream properties",
|
2017-05-23 19:15:33 +02:00
|
|
|
"list of PipeWire stream properties",
|
2015-12-09 13:27:43 +01:00
|
|
|
GST_TYPE_STRUCTURE,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
2017-05-17 11:49:57 +02:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_ALWAYS_COPY,
|
|
|
|
|
g_param_spec_boolean ("always-copy",
|
|
|
|
|
"Always copy",
|
|
|
|
|
"Always copy the buffer and data",
|
|
|
|
|
DEFAULT_ALWAYS_COPY,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
2020-03-20 17:00:36 +01:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_MIN_BUFFERS,
|
|
|
|
|
g_param_spec_int ("min-buffers",
|
|
|
|
|
"Min Buffers",
|
|
|
|
|
"Minimum number of buffers to negotiate with PipeWire",
|
|
|
|
|
1, G_MAXINT, DEFAULT_MIN_BUFFERS,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_MAX_BUFFERS,
|
|
|
|
|
g_param_spec_int ("max-buffers",
|
|
|
|
|
"Max Buffers",
|
|
|
|
|
"Maximum number of buffers to negotiate with PipeWire",
|
|
|
|
|
1, G_MAXINT, DEFAULT_MAX_BUFFERS,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
2018-01-22 17:05:13 +08:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_FD,
|
|
|
|
|
g_param_spec_int ("fd",
|
|
|
|
|
"Fd",
|
|
|
|
|
"The fd to connect with",
|
|
|
|
|
-1, G_MAXINT, -1,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_RESEND_LAST,
|
|
|
|
|
g_param_spec_boolean ("resend-last",
|
|
|
|
|
"Resend last",
|
|
|
|
|
"Resend last buffer on EOS",
|
|
|
|
|
DEFAULT_RESEND_LAST,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
gstelement_class->provide_clock = gst_pipewire_src_provide_clock;
|
|
|
|
|
gstelement_class->change_state = gst_pipewire_src_change_state;
|
2020-07-13 12:11:34 +02:00
|
|
|
gstelement_class->send_event = gst_pipewire_src_send_event;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
gst_element_class_set_static_metadata (gstelement_class,
|
2017-05-23 19:15:33 +02:00
|
|
|
"PipeWire source", "Source/Video",
|
|
|
|
|
"Uses PipeWire to create video", "Wim Taymans <wim.taymans@gmail.com>");
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_static_pad_template_get (&gst_pipewire_src_template));
|
|
|
|
|
|
|
|
|
|
gstbasesrc_class->negotiate = gst_pipewire_src_negotiate;
|
|
|
|
|
gstbasesrc_class->unlock = gst_pipewire_src_unlock;
|
|
|
|
|
gstbasesrc_class->unlock_stop = gst_pipewire_src_unlock_stop;
|
|
|
|
|
gstbasesrc_class->start = gst_pipewire_src_start;
|
|
|
|
|
gstbasesrc_class->stop = gst_pipewire_src_stop;
|
|
|
|
|
gstbasesrc_class->event = gst_pipewire_src_event;
|
|
|
|
|
gstbasesrc_class->query = gst_pipewire_src_query;
|
|
|
|
|
gstpushsrc_class->create = gst_pipewire_src_create;
|
|
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (pipewire_src_debug, "pipewiresrc", 0,
|
|
|
|
|
"PipeWire Source");
|
|
|
|
|
|
|
|
|
|
process_mem_data_quark = g_quark_from_static_string ("GstPipeWireSrcProcessMemQuark");
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_init (GstPipeWireSrc * src)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
|
|
|
|
/* we operate in time */
|
|
|
|
|
gst_base_src_set_format (GST_BASE_SRC (src), GST_FORMAT_TIME);
|
|
|
|
|
|
2015-12-02 20:43:37 +01:00
|
|
|
GST_OBJECT_FLAG_SET (src, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
|
|
|
|
|
|
2017-05-17 11:49:57 +02:00
|
|
|
src->always_copy = DEFAULT_ALWAYS_COPY;
|
2020-03-20 17:00:36 +01:00
|
|
|
src->min_buffers = DEFAULT_MIN_BUFFERS;
|
|
|
|
|
src->max_buffers = DEFAULT_MAX_BUFFERS;
|
2018-01-22 17:05:13 +08:00
|
|
|
src->fd = -1;
|
2020-07-13 12:11:34 +02:00
|
|
|
src->resend_last = DEFAULT_RESEND_LAST;
|
2017-05-17 11:49:57 +02:00
|
|
|
|
2018-09-19 13:38:39 +02:00
|
|
|
src->client_name = g_strdup(pw_get_client_name ());
|
2016-11-25 13:06:23 +01:00
|
|
|
|
2018-03-22 16:40:27 +01:00
|
|
|
src->pool = gst_pipewire_pool_new ();
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-24 16:26:58 +02:00
|
|
|
static gboolean
|
|
|
|
|
buffer_recycle (GstMiniObject *obj)
|
|
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *src;
|
2018-03-22 16:40:27 +01:00
|
|
|
GstPipeWirePoolData *data;
|
2016-09-09 16:05:58 +02:00
|
|
|
|
2016-08-24 16:26:58 +02:00
|
|
|
gst_mini_object_ref (obj);
|
2018-03-22 16:40:27 +01:00
|
|
|
data = gst_pipewire_pool_get_data (GST_BUFFER_CAST(obj));
|
|
|
|
|
|
2016-08-24 16:26:58 +02:00
|
|
|
GST_BUFFER_FLAGS (obj) = data->flags;
|
2018-03-22 16:40:27 +01:00
|
|
|
src = data->owner;
|
2020-05-05 13:07:12 +02:00
|
|
|
data->queued = TRUE;
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2016-09-09 16:05:58 +02:00
|
|
|
GST_LOG_OBJECT (obj, "recycle buffer");
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (src->core->loop);
|
2020-06-04 20:29:41 +02:00
|
|
|
if (src->stream)
|
|
|
|
|
pw_stream_queue_buffer (src->stream, data->b);
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (src->core->loop);
|
2016-08-24 16:26:58 +02:00
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
static void
|
2018-03-22 16:40:27 +01:00
|
|
|
on_add_buffer (void *_data, struct pw_buffer *b)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2017-08-04 10:18:54 +02:00
|
|
|
GstPipeWireSrc *pwsrc = _data;
|
2018-03-22 16:40:27 +01:00
|
|
|
GstPipeWirePoolData *data;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2019-12-18 10:13:48 +01:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "add buffer");
|
2018-03-22 16:40:27 +01:00
|
|
|
gst_pipewire_pool_wrap_buffer (pwsrc->pool, b);
|
|
|
|
|
data = b->user_data;
|
|
|
|
|
data->owner = pwsrc;
|
2020-05-05 13:07:12 +02:00
|
|
|
data->queued = TRUE;
|
2018-03-22 16:40:27 +01:00
|
|
|
GST_MINI_OBJECT_CAST (data->buf)->dispose = buffer_recycle;
|
2016-08-24 16:26:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2018-03-22 16:40:27 +01:00
|
|
|
on_remove_buffer (void *_data, struct pw_buffer *b)
|
2016-08-24 16:26:58 +02:00
|
|
|
{
|
2018-03-22 16:40:27 +01:00
|
|
|
GstPipeWireSrc *pwsrc = _data;
|
|
|
|
|
GstPipeWirePoolData *data = b->user_data;
|
|
|
|
|
GstBuffer *buf = data->buf;
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2019-12-18 10:13:48 +01:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "remove buffer %p", buf);
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2018-03-22 16:40:27 +01:00
|
|
|
GST_MINI_OBJECT_CAST (buf)->dispose = NULL;
|
2017-01-31 09:57:58 +01:00
|
|
|
|
2018-08-13 12:07:05 +02:00
|
|
|
gst_buffer_unref (buf);
|
2016-08-24 16:26:58 +02:00
|
|
|
}
|
|
|
|
|
|
2020-04-23 13:01:03 +02:00
|
|
|
static GstBuffer *dequeue_buffer(GstPipeWireSrc *pwsrc)
|
2016-08-24 16:26:58 +02:00
|
|
|
{
|
2018-03-22 16:40:27 +01:00
|
|
|
struct pw_buffer *b;
|
2016-08-24 16:26:58 +02:00
|
|
|
GstBuffer *buf;
|
2018-03-22 16:40:27 +01:00
|
|
|
GstPipeWirePoolData *data;
|
2017-05-25 13:28:15 +02:00
|
|
|
struct spa_meta_header *h;
|
2016-10-28 16:56:33 +02:00
|
|
|
guint i;
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2018-03-22 16:40:27 +01:00
|
|
|
b = pw_stream_dequeue_buffer (pwsrc->stream);
|
|
|
|
|
if (b == NULL)
|
2020-04-23 13:01:03 +02:00
|
|
|
return NULL;
|
2018-03-22 16:40:27 +01:00
|
|
|
|
|
|
|
|
data = b->user_data;
|
|
|
|
|
buf = data->buf;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_LOG_OBJECT (pwsrc, "got new buffer %p", buf);
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2020-05-05 13:07:12 +02:00
|
|
|
if (!data->queued) {
|
|
|
|
|
GST_WARNING_OBJECT (pwsrc, "buffer %p was not recycled", buf);
|
|
|
|
|
gst_buffer_ref (buf);
|
|
|
|
|
}
|
|
|
|
|
data->queued = FALSE;
|
2019-05-02 15:08:34 +02:00
|
|
|
GST_BUFFER_PTS (buf) = GST_CLOCK_TIME_NONE;
|
|
|
|
|
GST_BUFFER_DTS (buf) = GST_CLOCK_TIME_NONE;
|
|
|
|
|
|
2016-10-28 16:56:33 +02:00
|
|
|
h = data->header;
|
|
|
|
|
if (h) {
|
2019-12-18 10:13:48 +01:00
|
|
|
GST_LOG_OBJECT (pwsrc, "pts %" G_GUINT64_FORMAT ", dts_offset %" G_GUINT64_FORMAT, h->pts, h->dts_offset);
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2016-10-28 16:56:33 +02:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (h->pts)) {
|
2019-03-11 15:09:28 +01:00
|
|
|
GST_BUFFER_PTS (buf) = h->pts + GST_PIPEWIRE_CLOCK (pwsrc->clock)->time_offset;
|
2016-10-28 16:56:33 +02:00
|
|
|
if (GST_BUFFER_PTS (buf) + h->dts_offset > 0)
|
|
|
|
|
GST_BUFFER_DTS (buf) = GST_BUFFER_PTS (buf) + h->dts_offset;
|
2016-09-09 16:05:58 +02:00
|
|
|
}
|
2016-10-28 16:56:33 +02:00
|
|
|
GST_BUFFER_OFFSET (buf) = h->seq;
|
2016-05-05 13:31:18 +02:00
|
|
|
}
|
2018-03-22 16:40:27 +01:00
|
|
|
for (i = 0; i < b->buffer->n_datas; i++) {
|
|
|
|
|
struct spa_data *d = &b->buffer->datas[i];
|
2016-10-28 16:56:33 +02:00
|
|
|
GstMemory *mem = gst_buffer_peek_memory (buf, i);
|
2017-11-21 12:30:15 +01:00
|
|
|
mem->offset = SPA_MIN(d->chunk->offset, d->maxsize);
|
|
|
|
|
mem->size = SPA_MIN(d->chunk->size, d->maxsize - mem->offset);
|
2017-11-24 16:45:54 +01:00
|
|
|
mem->offset += data->offset;
|
2020-05-09 19:46:14 +02:00
|
|
|
if (d->chunk->flags & SPA_CHUNK_FLAG_CORRUPTED)
|
|
|
|
|
GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_CORRUPTED);
|
2016-10-28 16:56:33 +02:00
|
|
|
}
|
2020-04-23 13:01:03 +02:00
|
|
|
return buf;
|
|
|
|
|
}
|
2017-05-17 11:49:57 +02:00
|
|
|
|
2020-04-23 13:01:03 +02:00
|
|
|
static void
|
|
|
|
|
on_process (void *_data)
|
|
|
|
|
{
|
|
|
|
|
GstPipeWireSrc *pwsrc = _data;
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_signal (pwsrc->core->loop, FALSE);
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-08-04 10:18:54 +02:00
|
|
|
on_state_changed (void *data,
|
2019-12-18 11:29:11 +01:00
|
|
|
enum pw_stream_state old,
|
|
|
|
|
enum pw_stream_state state, const char *error)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2017-08-04 10:18:54 +02:00
|
|
|
GstPipeWireSrc *pwsrc = data;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG ("got stream state %s", pw_stream_state_as_string (state));
|
2015-06-12 12:10:27 +02:00
|
|
|
|
2015-07-08 12:11:55 +02:00
|
|
|
switch (state) {
|
2017-05-23 19:15:33 +02:00
|
|
|
case PW_STREAM_STATE_UNCONNECTED:
|
|
|
|
|
case PW_STREAM_STATE_CONNECTING:
|
|
|
|
|
case PW_STREAM_STATE_PAUSED:
|
|
|
|
|
case PW_STREAM_STATE_STREAMING:
|
2015-07-08 12:11:55 +02:00
|
|
|
break;
|
2017-05-23 19:15:33 +02:00
|
|
|
case PW_STREAM_STATE_ERROR:
|
|
|
|
|
GST_ELEMENT_ERROR (pwsrc, RESOURCE, FAILED,
|
2017-08-04 10:18:54 +02:00
|
|
|
("stream error: %s", error), (NULL));
|
2015-07-08 12:11:55 +02:00
|
|
|
break;
|
2015-04-29 17:51:51 +02:00
|
|
|
}
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_signal (pwsrc->core->loop, FALSE);
|
2015-04-29 17:51:51 +02:00
|
|
|
}
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2016-04-28 11:18:10 +02:00
|
|
|
static void
|
2017-08-06 06:42:26 +02:00
|
|
|
parse_stream_properties (GstPipeWireSrc *pwsrc, const struct pw_properties *props)
|
2016-04-28 11:18:10 +02:00
|
|
|
{
|
|
|
|
|
const gchar *var;
|
2016-09-16 13:13:41 +02:00
|
|
|
gboolean is_live;
|
2016-04-28 11:18:10 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_OBJECT_LOCK (pwsrc);
|
2019-05-24 15:47:48 +02:00
|
|
|
var = pw_properties_get (props, PW_KEY_STREAM_IS_LIVE);
|
2017-09-18 20:37:00 +02:00
|
|
|
is_live = pwsrc->is_live = var ? pw_properties_parse_bool(var) : FALSE;
|
2016-04-29 16:51:56 +02:00
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
var = pw_properties_get (props, PW_KEY_STREAM_LATENCY_MIN);
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc->min_latency = var ? (GstClockTime) atoi (var) : 0;
|
2016-04-29 16:51:56 +02:00
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
var = pw_properties_get (props, PW_KEY_STREAM_LATENCY_MAX);
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc->max_latency = var ? (GstClockTime) atoi (var) : GST_CLOCK_TIME_NONE;
|
|
|
|
|
GST_OBJECT_UNLOCK (pwsrc);
|
2016-09-16 13:13:41 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "live %d", is_live);
|
2016-10-28 16:56:33 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_base_src_set_live (GST_BASE_SRC (pwsrc), is_live);
|
2016-04-28 11:18:10 +02:00
|
|
|
}
|
|
|
|
|
|
2015-07-10 15:31:05 +02:00
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_stream_start (GstPipeWireSrc *pwsrc)
|
2015-07-10 15:31:05 +02:00
|
|
|
{
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "doing stream start");
|
2015-07-14 15:47:18 +02:00
|
|
|
while (TRUE) {
|
2017-08-04 10:18:54 +02:00
|
|
|
enum pw_stream_state state = pw_stream_get_state (pwsrc->stream, &error);
|
2015-07-14 15:47:18 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "waiting for STREAMING, now %s", pw_stream_state_as_string (state));
|
|
|
|
|
if (state == PW_STREAM_STATE_STREAMING)
|
2015-07-14 15:47:18 +02:00
|
|
|
break;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR)
|
2015-07-14 15:47:18 +02:00
|
|
|
goto start_error;
|
|
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_wait (pwsrc->core->loop);
|
2015-07-14 15:47:18 +02:00
|
|
|
}
|
2016-04-28 11:18:10 +02:00
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
parse_stream_properties (pwsrc, pw_stream_get_properties (pwsrc->stream));
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "signal started");
|
|
|
|
|
pwsrc->started = TRUE;
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_signal (pwsrc->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2016-04-28 16:42:25 +02:00
|
|
|
|
2017-04-18 17:57:04 +02:00
|
|
|
return TRUE;
|
2015-07-14 15:47:18 +02:00
|
|
|
|
|
|
|
|
start_error:
|
|
|
|
|
{
|
2017-08-04 10:18:54 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "error starting stream: %s", error);
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2015-07-14 15:47:18 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
2015-07-10 15:31:05 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
static enum pw_stream_state
|
|
|
|
|
wait_negotiated (GstPipeWireSrc *this)
|
2016-04-28 16:42:25 +02:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
enum pw_stream_state state;
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2016-09-16 13:13:41 +02:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (this->core->loop);
|
2016-09-16 13:13:41 +02:00
|
|
|
while (TRUE) {
|
2017-08-04 10:18:54 +02:00
|
|
|
state = pw_stream_get_state (this->stream, &error);
|
2016-09-16 13:13:41 +02:00
|
|
|
|
2016-10-28 16:56:33 +02:00
|
|
|
GST_DEBUG_OBJECT (this, "waiting for started signal, state now %s",
|
2017-05-23 19:15:33 +02:00
|
|
|
pw_stream_state_as_string (state));
|
2017-01-17 10:27:58 +01:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR)
|
2016-09-16 13:13:41 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (this->started)
|
|
|
|
|
break;
|
|
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_wait (this->core->loop);
|
2016-04-28 16:42:25 +02:00
|
|
|
}
|
2016-10-28 16:56:33 +02:00
|
|
|
GST_DEBUG_OBJECT (this, "got started signal");
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (this->core->loop);
|
2016-09-16 13:13:41 +02:00
|
|
|
|
|
|
|
|
return state;
|
2016-04-28 16:42:25 +02:00
|
|
|
}
|
|
|
|
|
|
2015-04-29 17:51:51 +02:00
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_negotiate (GstBaseSrc * basesrc)
|
2015-04-29 17:51:51 +02:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (basesrc);
|
2015-05-14 17:46:12 +02:00
|
|
|
GstCaps *thiscaps;
|
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
|
GstCaps *peercaps = NULL;
|
|
|
|
|
gboolean result = FALSE;
|
2016-08-05 16:39:26 +02:00
|
|
|
GPtrArray *possible;
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2015-05-14 17:46:12 +02:00
|
|
|
|
|
|
|
|
/* first see what is possible on our source pad */
|
|
|
|
|
thiscaps = gst_pad_query_caps (GST_BASE_SRC_PAD (basesrc), NULL);
|
|
|
|
|
GST_DEBUG_OBJECT (basesrc, "caps of src: %" GST_PTR_FORMAT, thiscaps);
|
|
|
|
|
/* nothing or anything is allowed, we're done */
|
2015-05-15 13:34:32 +02:00
|
|
|
if (thiscaps == NULL)
|
2015-05-14 17:46:12 +02:00
|
|
|
goto no_nego_needed;
|
|
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_caps_is_empty (thiscaps)))
|
|
|
|
|
goto no_caps;
|
|
|
|
|
|
|
|
|
|
/* get the peer caps */
|
|
|
|
|
peercaps = gst_pad_peer_query_caps (GST_BASE_SRC_PAD (basesrc), thiscaps);
|
|
|
|
|
GST_DEBUG_OBJECT (basesrc, "caps of peer: %" GST_PTR_FORMAT, peercaps);
|
|
|
|
|
if (peercaps) {
|
|
|
|
|
/* The result is already a subset of our caps */
|
|
|
|
|
caps = peercaps;
|
|
|
|
|
gst_caps_unref (thiscaps);
|
2015-04-28 17:36:44 +02:00
|
|
|
} else {
|
2015-05-14 17:46:12 +02:00
|
|
|
/* no peer, work with our own caps then */
|
|
|
|
|
caps = thiscaps;
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
2016-07-20 17:29:34 +02:00
|
|
|
if (caps == NULL || gst_caps_is_empty (caps))
|
|
|
|
|
goto no_common_caps;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "have common caps: %" GST_PTR_FORMAT, caps);
|
2015-08-26 15:44:29 +02:00
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
/* open a connection with these caps */
|
2018-08-25 12:08:29 +02:00
|
|
|
possible = gst_caps_to_format_all (caps, SPA_PARAM_EnumFormat);
|
2017-06-21 11:17:12 +02:00
|
|
|
gst_caps_unref (caps);
|
2015-06-12 12:10:27 +02:00
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
/* first disconnect */
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2017-08-04 10:18:54 +02:00
|
|
|
if (pw_stream_get_state(pwsrc->stream, &error) != PW_STREAM_STATE_UNCONNECTED) {
|
2016-07-20 17:29:34 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "disconnect capture");
|
2017-05-23 19:15:33 +02:00
|
|
|
pw_stream_disconnect (pwsrc->stream);
|
2015-05-14 17:46:12 +02:00
|
|
|
while (TRUE) {
|
2017-08-04 10:18:54 +02:00
|
|
|
enum pw_stream_state state = pw_stream_get_state (pwsrc->stream, &error);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "waiting for UNCONNECTED, now %s", pw_stream_state_as_string (state));
|
|
|
|
|
if (state == PW_STREAM_STATE_UNCONNECTED)
|
2015-05-14 17:46:12 +02:00
|
|
|
break;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR) {
|
2016-08-05 16:39:26 +02:00
|
|
|
g_ptr_array_unref (possible);
|
2015-05-14 17:46:12 +02:00
|
|
|
goto connect_error;
|
2016-07-20 17:29:34 +02:00
|
|
|
}
|
2015-04-29 17:51:51 +02:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_wait (pwsrc->core->loop);
|
2015-05-14 17:46:12 +02:00
|
|
|
}
|
2016-07-20 17:29:34 +02:00
|
|
|
}
|
2015-04-29 17:51:51 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "connect capture with path %s", pwsrc->path);
|
|
|
|
|
pw_stream_connect (pwsrc->stream,
|
|
|
|
|
PW_DIRECTION_INPUT,
|
2020-01-15 11:13:37 +01:00
|
|
|
pwsrc->path ? (uint32_t)atoi(pwsrc->path) : PW_ID_ANY,
|
2018-07-08 15:23:28 +02:00
|
|
|
PW_STREAM_FLAG_AUTOCONNECT,
|
2017-11-20 15:26:44 +01:00
|
|
|
(const struct spa_pod **)possible->pdata,
|
|
|
|
|
possible->len);
|
2017-06-21 11:17:12 +02:00
|
|
|
g_ptr_array_free (possible, TRUE);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
|
|
|
|
while (TRUE) {
|
2017-08-04 10:18:54 +02:00
|
|
|
enum pw_stream_state state = pw_stream_get_state (pwsrc->stream, &error);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "waiting for PAUSED, now %s", pw_stream_state_as_string (state));
|
|
|
|
|
if (state == PW_STREAM_STATE_PAUSED ||
|
|
|
|
|
state == PW_STREAM_STATE_STREAMING)
|
2016-07-20 17:29:34 +02:00
|
|
|
break;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR)
|
2016-07-20 17:29:34 +02:00
|
|
|
goto connect_error;
|
|
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_wait (pwsrc->core->loop);
|
2015-04-29 17:51:51 +02:00
|
|
|
}
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
result = gst_pipewire_src_stream_start (pwsrc);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc->negotiated = result;
|
2015-07-14 15:47:18 +02:00
|
|
|
|
2015-05-14 17:46:12 +02:00
|
|
|
return result;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2015-05-14 17:46:12 +02:00
|
|
|
no_nego_needed:
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2015-05-14 17:46:12 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "no negotiation needed");
|
|
|
|
|
if (thiscaps)
|
|
|
|
|
gst_caps_unref (thiscaps);
|
|
|
|
|
return TRUE;
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
2015-05-14 17:46:12 +02:00
|
|
|
no_caps:
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2015-05-14 17:46:12 +02:00
|
|
|
GST_ELEMENT_ERROR (basesrc, STREAM, FORMAT,
|
|
|
|
|
("No supported formats found"),
|
|
|
|
|
("This element did not produce valid caps"));
|
|
|
|
|
if (thiscaps)
|
|
|
|
|
gst_caps_unref (thiscaps);
|
2016-07-20 17:29:34 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
no_common_caps:
|
|
|
|
|
{
|
|
|
|
|
GST_ELEMENT_ERROR (basesrc, STREAM, FORMAT,
|
|
|
|
|
("No supported formats found"),
|
|
|
|
|
("This element does not have formats in common with the peer"));
|
|
|
|
|
if (caps)
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
return FALSE;
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
2015-04-29 17:51:51 +02:00
|
|
|
connect_error:
|
|
|
|
|
{
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2015-04-29 17:51:51 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-28 21:19:20 +02:00
|
|
|
static void
|
2019-11-21 16:14:50 +01:00
|
|
|
on_param_changed (void *data, uint32_t id,
|
|
|
|
|
const struct spa_pod *param)
|
2016-07-28 21:19:20 +02:00
|
|
|
{
|
2017-08-04 10:18:54 +02:00
|
|
|
GstPipeWireSrc *pwsrc = data;
|
2016-07-28 21:19:20 +02:00
|
|
|
GstCaps *caps;
|
2016-09-22 08:55:30 +02:00
|
|
|
gboolean res;
|
2016-07-28 21:19:20 +02:00
|
|
|
|
2019-11-21 16:14:50 +01:00
|
|
|
if (param == NULL || id != SPA_PARAM_Format) {
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "clear format");
|
2017-05-17 17:24:25 +08:00
|
|
|
return;
|
2017-05-17 11:55:48 +02:00
|
|
|
}
|
2017-05-17 17:24:25 +08:00
|
|
|
|
2019-03-11 15:09:28 +01:00
|
|
|
gst_pipewire_clock_reset (GST_PIPEWIRE_CLOCK (pwsrc->clock), 0);
|
|
|
|
|
|
2019-11-21 16:14:50 +01:00
|
|
|
caps = gst_caps_from_format (param);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "we got format %" GST_PTR_FORMAT, caps);
|
|
|
|
|
res = gst_base_src_set_caps (GST_BASE_SRC (pwsrc), caps);
|
2016-07-28 21:19:20 +02:00
|
|
|
gst_caps_unref (caps);
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2016-09-22 08:55:30 +02:00
|
|
|
if (res) {
|
2018-07-08 15:23:28 +02:00
|
|
|
const struct spa_pod *params[2];
|
2017-05-25 13:28:15 +02:00
|
|
|
struct spa_pod_builder b = { NULL };
|
2017-05-22 13:06:18 +02:00
|
|
|
uint8_t buffer[512];
|
2020-05-20 13:52:10 +02:00
|
|
|
uint32_t buffers = CLAMP (16, pwsrc->min_buffers, pwsrc->max_buffers);
|
2017-03-17 11:58:09 +01:00
|
|
|
|
|
|
|
|
spa_pod_builder_init (&b, buffer, sizeof (buffer));
|
2019-01-16 11:05:12 +01:00
|
|
|
params[0] = spa_pod_builder_add_object (&b,
|
2019-12-18 11:29:11 +01:00
|
|
|
SPA_TYPE_OBJECT_ParamBuffers, SPA_PARAM_Buffers,
|
2020-03-20 17:00:36 +01:00
|
|
|
SPA_PARAM_BUFFERS_buffers, SPA_POD_CHOICE_RANGE_Int(buffers,
|
|
|
|
|
pwsrc->min_buffers,
|
|
|
|
|
pwsrc->max_buffers),
|
2019-12-18 11:29:11 +01:00
|
|
|
SPA_PARAM_BUFFERS_blocks, SPA_POD_CHOICE_RANGE_Int(0, 1, INT32_MAX),
|
|
|
|
|
SPA_PARAM_BUFFERS_size, SPA_POD_CHOICE_RANGE_Int(0, 0, INT32_MAX),
|
|
|
|
|
SPA_PARAM_BUFFERS_stride, SPA_POD_CHOICE_RANGE_Int(0, 0, INT32_MAX),
|
|
|
|
|
SPA_PARAM_BUFFERS_align, SPA_POD_Int(16));
|
2019-01-16 11:05:12 +01:00
|
|
|
|
|
|
|
|
params[1] = spa_pod_builder_add_object (&b,
|
2019-12-18 11:29:11 +01:00
|
|
|
SPA_TYPE_OBJECT_ParamMeta, SPA_PARAM_Meta,
|
2019-01-16 11:05:12 +01:00
|
|
|
SPA_PARAM_META_type, SPA_POD_Id(SPA_META_Header),
|
|
|
|
|
SPA_PARAM_META_size, SPA_POD_Int(sizeof (struct spa_meta_header)));
|
2016-09-30 17:07:38 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "doing finish format");
|
2019-11-21 16:14:50 +01:00
|
|
|
pw_stream_update_params (pwsrc->stream, params, 2);
|
2016-09-22 08:55:30 +02:00
|
|
|
} else {
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_WARNING_OBJECT (pwsrc, "finish format with error");
|
2019-11-21 16:14:50 +01:00
|
|
|
pw_stream_set_error (pwsrc->stream, -EINVAL, "unhandled format");
|
2016-09-22 08:55:30 +02:00
|
|
|
}
|
2016-07-28 21:19:20 +02:00
|
|
|
}
|
|
|
|
|
|
2016-01-07 15:07:15 +01:00
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_unlock (GstBaseSrc * basesrc)
|
2016-01-07 15:07:15 +01:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (basesrc);
|
2016-01-07 15:07:15 +01:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "setting flushing");
|
|
|
|
|
pwsrc->flushing = TRUE;
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_signal (pwsrc->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2016-01-07 15:07:15 +01:00
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_unlock_stop (GstBaseSrc * basesrc)
|
2016-01-07 15:07:15 +01:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (basesrc);
|
2016-01-07 15:07:15 +01:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "unsetting flushing");
|
|
|
|
|
pwsrc->flushing = FALSE;
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2016-01-07 15:07:15 +01:00
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-13 13:04:32 +02:00
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_event (GstBaseSrc * src, GstEvent * event)
|
2016-04-13 13:04:32 +02:00
|
|
|
{
|
|
|
|
|
gboolean res = FALSE;
|
|
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
|
case GST_EVENT_CUSTOM_UPSTREAM:
|
|
|
|
|
if (gst_video_event_is_force_key_unit (event)) {
|
|
|
|
|
GstClockTime running_time;
|
|
|
|
|
gboolean all_headers;
|
|
|
|
|
guint count;
|
|
|
|
|
|
|
|
|
|
gst_video_event_parse_upstream_force_key_unit (event,
|
|
|
|
|
&running_time, &all_headers, &count);
|
|
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
|
} else {
|
|
|
|
|
res = GST_BASE_SRC_CLASS (parent_class)->event (src, event);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
res = GST_BASE_SRC_CLASS (parent_class)->event (src, event);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-28 11:18:10 +02:00
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_query (GstBaseSrc * src, GstQuery * query)
|
2016-04-28 11:18:10 +02:00
|
|
|
{
|
|
|
|
|
gboolean res = FALSE;
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc;
|
2016-04-28 11:18:10 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc = GST_PIPEWIRE_SRC (src);
|
2016-04-28 11:18:10 +02:00
|
|
|
|
|
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
|
|
|
case GST_QUERY_LATENCY:
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_OBJECT_LOCK (pwsrc);
|
|
|
|
|
pwsrc->min_latency = 10000000;
|
|
|
|
|
pwsrc->max_latency = GST_CLOCK_TIME_NONE;
|
|
|
|
|
gst_query_set_latency (query, pwsrc->is_live, pwsrc->min_latency, pwsrc->max_latency);
|
|
|
|
|
GST_OBJECT_UNLOCK (pwsrc);
|
2016-04-28 11:18:10 +02:00
|
|
|
res = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
res = GST_BASE_SRC_CLASS (parent_class)->query (src, query);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
static GstFlowReturn
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_create (GstPushSrc * psrc, GstBuffer ** buffer)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc;
|
2016-04-29 16:51:56 +02:00
|
|
|
GstClockTime pts, dts, base_time;
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2018-08-13 12:07:05 +02:00
|
|
|
GstBuffer *buf;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc = GST_PIPEWIRE_SRC (psrc);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (!pwsrc->negotiated)
|
2015-04-28 17:36:44 +02:00
|
|
|
goto not_negotiated;
|
|
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2015-05-15 15:58:13 +02:00
|
|
|
while (TRUE) {
|
2017-05-23 19:15:33 +02:00
|
|
|
enum pw_stream_state state;
|
2015-06-12 12:10:27 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (pwsrc->flushing)
|
2016-01-07 15:07:15 +01:00
|
|
|
goto streaming_stopped;
|
|
|
|
|
|
2017-07-18 15:28:14 +02:00
|
|
|
if (pwsrc->stream == NULL)
|
|
|
|
|
goto streaming_error;
|
|
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
state = pw_stream_get_state (pwsrc->stream, &error);
|
2017-05-23 19:15:33 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR)
|
2015-06-12 12:10:27 +02:00
|
|
|
goto streaming_error;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (state != PW_STREAM_STATE_STREAMING)
|
2015-05-15 15:58:13 +02:00
|
|
|
goto streaming_stopped;
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
if (pwsrc->eos) {
|
|
|
|
|
if (pwsrc->last_buffer == NULL)
|
|
|
|
|
goto streaming_eos;
|
|
|
|
|
buf = pwsrc->last_buffer;
|
|
|
|
|
pwsrc->last_buffer = NULL;
|
2015-08-25 16:36:01 +02:00
|
|
|
break;
|
2020-07-13 12:11:34 +02:00
|
|
|
} else {
|
|
|
|
|
buf = dequeue_buffer (pwsrc);
|
|
|
|
|
GST_LOG_OBJECT (pwsrc, "popped buffer %p", buf);
|
|
|
|
|
if (buf != NULL) {
|
|
|
|
|
if (pwsrc->resend_last)
|
|
|
|
|
gst_buffer_replace (&pwsrc->last_buffer, buf);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_wait (pwsrc->core->loop);
|
2015-05-15 15:58:13 +02:00
|
|
|
}
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2016-04-29 16:51:56 +02:00
|
|
|
|
2018-08-13 12:07:05 +02:00
|
|
|
if (pwsrc->always_copy) {
|
|
|
|
|
*buffer = gst_buffer_copy_deep (buf);
|
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
*buffer = buf;
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (pwsrc->is_live)
|
2016-09-20 11:20:43 +02:00
|
|
|
base_time = GST_ELEMENT_CAST (psrc)->base_time;
|
|
|
|
|
else
|
|
|
|
|
base_time = 0;
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
if (pwsrc->last_buffer == NULL && pwsrc->resend_last) {
|
|
|
|
|
GstClock *clock = gst_element_get_clock (GST_ELEMENT_CAST (pwsrc));
|
|
|
|
|
if (clock != NULL) {
|
|
|
|
|
pts = dts = gst_clock_get_time (clock);
|
|
|
|
|
gst_object_unref (clock);
|
|
|
|
|
} else {
|
|
|
|
|
pts = dts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
pts = GST_BUFFER_PTS (*buffer);
|
|
|
|
|
dts = GST_BUFFER_DTS (*buffer);
|
|
|
|
|
}
|
2016-04-28 16:42:25 +02:00
|
|
|
|
2016-04-29 16:51:56 +02:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (pts))
|
|
|
|
|
pts = (pts >= base_time ? pts - base_time : 0);
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (dts))
|
|
|
|
|
dts = (dts >= base_time ? dts - base_time : 0);
|
2016-04-28 16:42:25 +02:00
|
|
|
|
2019-12-18 10:13:48 +01:00
|
|
|
GST_LOG_OBJECT (pwsrc,
|
2020-04-23 13:01:03 +02:00
|
|
|
"pts %" G_GUINT64_FORMAT ", dts %" G_GUINT64_FORMAT
|
|
|
|
|
", base-time %" GST_TIME_FORMAT " -> %" GST_TIME_FORMAT ", %" GST_TIME_FORMAT,
|
2016-04-29 16:51:56 +02:00
|
|
|
GST_BUFFER_PTS (*buffer), GST_BUFFER_DTS (*buffer), GST_TIME_ARGS (base_time),
|
|
|
|
|
GST_TIME_ARGS (pts), GST_TIME_ARGS (dts));
|
2016-04-28 16:42:25 +02:00
|
|
|
|
2016-04-29 16:51:56 +02:00
|
|
|
GST_BUFFER_PTS (*buffer) = pts;
|
|
|
|
|
GST_BUFFER_DTS (*buffer) = dts;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
|
|
not_negotiated:
|
|
|
|
|
{
|
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
|
}
|
2020-07-13 12:11:34 +02:00
|
|
|
streaming_eos:
|
|
|
|
|
{
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
return GST_FLOW_EOS;
|
|
|
|
|
}
|
2015-06-12 12:10:27 +02:00
|
|
|
streaming_error:
|
|
|
|
|
{
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2015-06-12 12:10:27 +02:00
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
|
}
|
2015-05-15 15:58:13 +02:00
|
|
|
streaming_stopped:
|
|
|
|
|
{
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2015-05-15 15:58:13 +02:00
|
|
|
return GST_FLOW_FLUSHING;
|
|
|
|
|
}
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_start (GstBaseSrc * basesrc)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_stop (GstBaseSrc * basesrc)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *pwsrc;
|
2015-08-24 16:55:29 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
pwsrc = GST_PIPEWIRE_SRC (basesrc);
|
2016-04-12 11:58:33 +02:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
pwsrc->eos = false;
|
|
|
|
|
gst_buffer_replace (&pwsrc->last_buffer, NULL);
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2015-08-24 16:55:29 +02:00
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-09 13:27:43 +01:00
|
|
|
static gboolean
|
|
|
|
|
copy_properties (GQuark field_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
struct pw_properties *properties = user_data;
|
2015-12-09 13:27:43 +01:00
|
|
|
|
|
|
|
|
if (G_VALUE_HOLDS_STRING (value))
|
2017-05-23 19:15:33 +02:00
|
|
|
pw_properties_set (properties,
|
|
|
|
|
g_quark_to_string (field_id),
|
|
|
|
|
g_value_get_string (value));
|
2015-12-09 13:27:43 +01:00
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
static const struct pw_stream_events stream_events = {
|
2019-12-18 11:29:11 +01:00
|
|
|
PW_VERSION_STREAM_EVENTS,
|
|
|
|
|
.state_changed = on_state_changed,
|
|
|
|
|
.param_changed = on_param_changed,
|
|
|
|
|
.add_buffer = on_add_buffer,
|
|
|
|
|
.remove_buffer = on_remove_buffer,
|
|
|
|
|
.process = on_process,
|
2017-08-04 10:18:54 +02:00
|
|
|
};
|
|
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
static gboolean
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_open (GstPipeWireSrc * pwsrc)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
2017-05-23 19:15:33 +02:00
|
|
|
struct pw_properties *props;
|
2015-04-29 17:51:51 +02:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pwsrc->core = gst_pipewire_core_get(pwsrc->fd);
|
2019-12-11 07:46:59 +01:00
|
|
|
if (pwsrc->core == NULL)
|
2015-04-29 17:51:51 +02:00
|
|
|
goto connect_error;
|
|
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2020-05-21 12:22:48 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
if (pwsrc->properties) {
|
|
|
|
|
props = pw_properties_new (NULL, NULL);
|
|
|
|
|
gst_structure_foreach (pwsrc->properties, copy_properties, props);
|
2015-12-09 13:27:43 +01:00
|
|
|
} else {
|
|
|
|
|
props = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
if ((pwsrc->stream = pw_stream_new (pwsrc->core->core,
|
2019-12-18 11:29:11 +01:00
|
|
|
pwsrc->client_name, props)) == NULL)
|
2017-07-11 15:57:20 +02:00
|
|
|
goto no_stream;
|
2016-11-24 17:00:42 +01:00
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
|
2017-08-04 16:49:13 +02:00
|
|
|
pw_stream_add_listener(pwsrc->stream,
|
2019-12-18 11:29:11 +01:00
|
|
|
&pwsrc->stream_listener,
|
|
|
|
|
&stream_events,
|
|
|
|
|
pwsrc);
|
2017-08-04 10:18:54 +02:00
|
|
|
|
2018-08-13 15:19:20 +02:00
|
|
|
pwsrc->clock = gst_pipewire_clock_new (pwsrc->stream, pwsrc->last_time);
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2015-05-14 17:46:12 +02:00
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
return TRUE;
|
2015-04-29 17:51:51 +02:00
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
|
connect_error:
|
|
|
|
|
{
|
2019-12-06 11:48:40 +01:00
|
|
|
GST_ELEMENT_ERROR (pwsrc, RESOURCE, FAILED, ("can't connect"), (NULL));
|
2015-04-29 17:51:51 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
2017-07-11 15:57:20 +02:00
|
|
|
no_stream:
|
|
|
|
|
{
|
|
|
|
|
GST_ELEMENT_ERROR (pwsrc, RESOURCE, FAILED, ("can't create stream"), (NULL));
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
2017-07-11 15:57:20 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
|
|
|
|
|
2015-07-08 12:11:55 +02:00
|
|
|
static void
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_close (GstPipeWireSrc * pwsrc)
|
2015-07-08 12:11:55 +02:00
|
|
|
{
|
2018-08-13 15:19:20 +02:00
|
|
|
pwsrc->last_time = gst_clock_get_time (pwsrc->clock);
|
|
|
|
|
|
|
|
|
|
gst_element_post_message (GST_ELEMENT (pwsrc),
|
|
|
|
|
gst_message_new_clock_lost (GST_OBJECT_CAST (pwsrc), pwsrc->clock));
|
|
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_OBJECT_LOCK (pwsrc);
|
2018-08-13 15:19:20 +02:00
|
|
|
GST_PIPEWIRE_CLOCK (pwsrc->clock)->stream = NULL;
|
2017-05-23 19:15:33 +02:00
|
|
|
g_clear_object (&pwsrc->clock);
|
|
|
|
|
GST_OBJECT_UNLOCK (pwsrc);
|
2018-08-15 21:30:43 +02:00
|
|
|
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (pwsrc->core->loop);
|
2020-05-21 12:22:48 +02:00
|
|
|
if (pwsrc->stream) {
|
|
|
|
|
pw_stream_destroy (pwsrc->stream);
|
|
|
|
|
pwsrc->stream = NULL;
|
|
|
|
|
}
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (pwsrc->core->loop);
|
|
|
|
|
|
2020-05-21 12:22:48 +02:00
|
|
|
if (pwsrc->core) {
|
2020-07-13 17:42:09 +02:00
|
|
|
gst_pipewire_core_release (pwsrc->core);
|
2020-05-21 12:22:48 +02:00
|
|
|
pwsrc->core = NULL;
|
|
|
|
|
}
|
2015-07-08 12:11:55 +02:00
|
|
|
}
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
static gboolean
|
|
|
|
|
gst_pipewire_src_send_event (GstElement * elem, GstEvent * event)
|
|
|
|
|
{
|
|
|
|
|
GstPipeWireSrc *this = GST_PIPEWIRE_SRC_CAST (elem);
|
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
|
case GST_EVENT_EOS:
|
|
|
|
|
GST_DEBUG_OBJECT (this, "got EOS");
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (this->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
this->eos = true;
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_signal (this->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (this->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
ret = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->send_event (elem, event);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 17:36:44 +02:00
|
|
|
static GstStateChangeReturn
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_change_state (GstElement * element, GstStateChange transition)
|
2015-04-28 17:36:44 +02:00
|
|
|
{
|
|
|
|
|
GstStateChangeReturn ret;
|
2017-05-23 19:15:33 +02:00
|
|
|
GstPipeWireSrc *this = GST_PIPEWIRE_SRC_CAST (element);
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
2017-05-23 19:15:33 +02:00
|
|
|
if (!gst_pipewire_src_open (this))
|
2015-07-08 12:11:55 +02:00
|
|
|
goto open_failed;
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
2015-05-14 17:46:12 +02:00
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
|
break;
|
2015-04-28 17:36:44 +02:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
|
|
|
|
/* uncork and start recording */
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (this->core->loop);
|
2020-05-21 12:26:13 +02:00
|
|
|
pw_stream_set_active(this->stream, true);
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (this->core->loop);
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
|
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
|
|
|
/* stop recording ASAP by corking */
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_lock (this->core->loop);
|
2020-05-21 12:26:13 +02:00
|
|
|
pw_stream_set_active(this->stream, false);
|
2020-07-13 17:42:09 +02:00
|
|
|
pw_thread_loop_unlock (this->core->loop);
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
|
|
|
|
|
|
switch (transition) {
|
2016-04-28 16:42:25 +02:00
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
2017-05-23 19:15:33 +02:00
|
|
|
if (wait_negotiated (this) == PW_STREAM_STATE_ERROR)
|
2016-09-16 13:13:41 +02:00
|
|
|
goto open_failed;
|
|
|
|
|
|
2016-04-28 16:42:25 +02:00
|
|
|
if (gst_base_src_is_live (GST_BASE_SRC (element)))
|
|
|
|
|
ret = GST_STATE_CHANGE_NO_PREROLL;
|
|
|
|
|
break;
|
2015-04-28 17:36:44 +02:00
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
|
|
|
break;
|
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2015-05-14 17:46:12 +02:00
|
|
|
this->negotiated = FALSE;
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
|
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2017-05-23 19:15:33 +02:00
|
|
|
gst_pipewire_src_close (this);
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
2015-07-08 12:11:55 +02:00
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
|
open_failed:
|
|
|
|
|
{
|
|
|
|
|
return GST_STATE_CHANGE_FAILURE;
|
|
|
|
|
}
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|