2023-02-08 18:12:00 +01:00
|
|
|
/* GStreamer */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
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>
|
|
|
|
|
*/
|
|
|
|
|
|
2023-01-10 17:17:34 +01:00
|
|
|
#define PW_ENABLE_DEPRECATED
|
|
|
|
|
|
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>
|
|
|
|
|
|
2023-01-05 15:08:17 +01:00
|
|
|
#include <spa/param/video/format.h>
|
2019-10-25 15:01:02 +02:00
|
|
|
#include <spa/pod/builder.h>
|
2022-06-24 02:48:16 -06:00
|
|
|
#include <spa/utils/result.h>
|
2019-10-25 15:01:02 +02:00
|
|
|
|
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-08-06 13:03:40 +02:00
|
|
|
#define DEFAULT_MIN_BUFFERS 8
|
2020-03-20 17:00:36 +01:00
|
|
|
#define DEFAULT_MAX_BUFFERS INT32_MAX
|
2020-07-13 12:11:34 +02:00
|
|
|
#define DEFAULT_RESEND_LAST false
|
2020-07-14 13:54:21 +02:00
|
|
|
#define DEFAULT_KEEPALIVE_TIME 0
|
2023-02-19 15:38:52 +00:00
|
|
|
#define DEFAULT_AUTOCONNECT true
|
2025-01-24 21:07:55 +05:30
|
|
|
#define DEFAULT_USE_BUFFERPOOL USE_BUFFERPOOL_AUTO
|
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,
|
2022-03-06 14:10:55 +02:00
|
|
|
PROP_TARGET_OBJECT,
|
2015-07-28 17:05:03 +02:00
|
|
|
PROP_CLIENT_NAME,
|
2022-06-03 13:00:52 +02:00
|
|
|
PROP_CLIENT_PROPERTIES,
|
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,
|
2020-07-14 13:54:21 +02:00
|
|
|
PROP_KEEPALIVE_TIME,
|
2023-02-19 15:38:52 +00:00
|
|
|
PROP_AUTOCONNECT,
|
2025-01-24 21:07:55 +05:30
|
|
|
PROP_USE_BUFFERPOOL,
|
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);
|
2023-04-13 20:20:34 +02:00
|
|
|
static void gst_pipewire_src_get_times (GstBaseSrc * basesrc, GstBuffer * buffer,
|
|
|
|
|
GstClockTime * start, GstClockTime * end);
|
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:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_free (pwsrc->stream->path);
|
|
|
|
|
pwsrc->stream->path = g_value_dup_string (value);
|
2015-05-20 12:01:13 +02:00
|
|
|
break;
|
|
|
|
|
|
2022-03-06 14:10:55 +02:00
|
|
|
case PROP_TARGET_OBJECT:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_free (pwsrc->stream->target_object);
|
|
|
|
|
pwsrc->stream->target_object = g_value_dup_string (value);
|
2022-03-06 14:10:55 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-07-28 17:05:03 +02:00
|
|
|
case PROP_CLIENT_NAME:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_free (pwsrc->stream->client_name);
|
|
|
|
|
pwsrc->stream->client_name = g_value_dup_string (value);
|
2015-07-28 17:05:03 +02:00
|
|
|
break;
|
|
|
|
|
|
2022-06-03 13:00:52 +02:00
|
|
|
case PROP_CLIENT_PROPERTIES:
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pwsrc->stream->client_properties)
|
|
|
|
|
gst_structure_free (pwsrc->stream->client_properties);
|
|
|
|
|
pwsrc->stream->client_properties =
|
2022-06-03 13:00:52 +02:00
|
|
|
gst_structure_copy (gst_value_get_structure (value));
|
|
|
|
|
break;
|
|
|
|
|
|
2015-12-09 13:27:43 +01:00
|
|
|
case PROP_STREAM_PROPERTIES:
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pwsrc->stream->stream_properties)
|
|
|
|
|
gst_structure_free (pwsrc->stream->stream_properties);
|
|
|
|
|
pwsrc->stream->stream_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:
|
2025-01-24 21:07:55 +05:30
|
|
|
/* don't provide buffer if always copy*/
|
|
|
|
|
if (g_value_get_boolean (value))
|
|
|
|
|
pwsrc->use_bufferpool = USE_BUFFERPOOL_NO;
|
|
|
|
|
else
|
|
|
|
|
pwsrc->use_bufferpool = USE_BUFFERPOOL_YES;
|
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:
|
2024-05-29 17:56:38 +03:00
|
|
|
pwsrc->stream->fd = g_value_get_int (value);
|
2018-01-22 17:05:13 +08:00
|
|
|
break;
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
case PROP_RESEND_LAST:
|
|
|
|
|
pwsrc->resend_last = g_value_get_boolean (value);
|
|
|
|
|
break;
|
|
|
|
|
|
2020-07-14 13:54:21 +02:00
|
|
|
case PROP_KEEPALIVE_TIME:
|
|
|
|
|
pwsrc->keepalive_time = g_value_get_int (value);
|
|
|
|
|
break;
|
|
|
|
|
|
2023-02-19 15:38:52 +00:00
|
|
|
case PROP_AUTOCONNECT:
|
|
|
|
|
pwsrc->autoconnect = g_value_get_boolean (value);
|
|
|
|
|
break;
|
|
|
|
|
|
2025-01-24 21:07:55 +05:30
|
|
|
case PROP_USE_BUFFERPOOL:
|
|
|
|
|
if(g_value_get_boolean (value))
|
|
|
|
|
pwsrc->use_bufferpool = USE_BUFFERPOOL_YES;
|
|
|
|
|
else
|
|
|
|
|
pwsrc->use_bufferpool = USE_BUFFERPOOL_NO;
|
|
|
|
|
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:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_value_set_string (value, pwsrc->stream->path);
|
2015-05-20 12:01:13 +02:00
|
|
|
break;
|
|
|
|
|
|
2022-03-06 14:10:55 +02:00
|
|
|
case PROP_TARGET_OBJECT:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_value_set_string (value, pwsrc->stream->target_object);
|
2022-03-06 14:10:55 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-07-28 17:05:03 +02:00
|
|
|
case PROP_CLIENT_NAME:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_value_set_string (value, pwsrc->stream->client_name);
|
2015-07-28 17:05:03 +02:00
|
|
|
break;
|
|
|
|
|
|
2022-06-03 13:00:52 +02:00
|
|
|
case PROP_CLIENT_PROPERTIES:
|
2024-05-29 17:56:38 +03:00
|
|
|
gst_value_set_structure (value, pwsrc->stream->client_properties);
|
2022-06-03 13:00:52 +02:00
|
|
|
break;
|
|
|
|
|
|
2015-12-09 13:27:43 +01:00
|
|
|
case PROP_STREAM_PROPERTIES:
|
2024-05-29 17:56:38 +03:00
|
|
|
gst_value_set_structure (value, pwsrc->stream->stream_properties);
|
2015-12-09 13:27:43 +01:00
|
|
|
break;
|
|
|
|
|
|
2017-05-17 11:49:57 +02:00
|
|
|
case PROP_ALWAYS_COPY:
|
2025-01-24 21:07:55 +05:30
|
|
|
g_value_set_boolean (value, !pwsrc->use_bufferpool);
|
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:
|
2024-05-29 17:56:38 +03:00
|
|
|
g_value_set_int (value, pwsrc->stream->fd);
|
2018-01-22 17:05:13 +08:00
|
|
|
break;
|
|
|
|
|
|
2020-07-13 12:11:34 +02:00
|
|
|
case PROP_RESEND_LAST:
|
|
|
|
|
g_value_set_boolean (value, pwsrc->resend_last);
|
|
|
|
|
break;
|
|
|
|
|
|
2020-07-14 13:54:21 +02:00
|
|
|
case PROP_KEEPALIVE_TIME:
|
|
|
|
|
g_value_set_int (value, pwsrc->keepalive_time);
|
|
|
|
|
break;
|
|
|
|
|
|
2023-02-19 15:38:52 +00:00
|
|
|
case PROP_AUTOCONNECT:
|
|
|
|
|
g_value_set_boolean (value, pwsrc->autoconnect);
|
|
|
|
|
break;
|
|
|
|
|
|
2025-01-24 21:07:55 +05:30
|
|
|
case PROP_USE_BUFFERPOOL:
|
|
|
|
|
g_value_set_boolean (value, !!pwsrc->use_bufferpool);
|
|
|
|
|
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;
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pwsrc->stream->clock && pwsrc->is_live)
|
|
|
|
|
clock = GST_CLOCK_CAST (gst_object_ref (pwsrc->stream->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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
gst_clear_object (&pwsrc->stream);
|
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 |
|
2022-03-06 14:10:55 +02:00
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
|
G_PARAM_DEPRECATED));
|
|
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_TARGET_OBJECT,
|
|
|
|
|
g_param_spec_string ("target-object",
|
|
|
|
|
"Target object",
|
|
|
|
|
"The source name/serial to connect to (NULL = default)",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READWRITE |
|
2015-05-20 12:01:13 +02:00
|
|
|
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
|
|
|
|
2022-06-03 13:00:52 +02:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_CLIENT_PROPERTIES,
|
|
|
|
|
g_param_spec_boxed ("client-properties",
|
|
|
|
|
"client properties",
|
|
|
|
|
"list of PipeWire client properties",
|
|
|
|
|
GST_TYPE_STRUCTURE,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
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 |
|
2025-01-24 21:07:55 +05:30
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
|
G_PARAM_DEPRECATED));
|
2017-05-17 11:49:57 +02:00
|
|
|
|
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));
|
|
|
|
|
|
2020-07-14 13:54:21 +02: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));
|
2018-01-22 17:05:13 +08:00
|
|
|
|
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));
|
|
|
|
|
|
2020-07-14 13:54:21 +02:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_KEEPALIVE_TIME,
|
|
|
|
|
g_param_spec_int ("keepalive-time",
|
|
|
|
|
"Keepalive Time",
|
2020-07-14 14:29:45 +02:00
|
|
|
"Periodically send last buffer (in milliseconds, 0 = disabled)",
|
2020-07-14 13:54:21 +02:00
|
|
|
0, G_MAXINT, DEFAULT_KEEPALIVE_TIME,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2020-07-13 12:11:34 +02:00
|
|
|
|
2023-02-19 15:38:52 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_AUTOCONNECT,
|
|
|
|
|
g_param_spec_boolean ("autoconnect",
|
|
|
|
|
"Connect automatically",
|
|
|
|
|
"Attempt to find a peer to connect to",
|
|
|
|
|
DEFAULT_AUTOCONNECT,
|
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
2025-01-24 21:07:55 +05:30
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_USE_BUFFERPOOL,
|
|
|
|
|
g_param_spec_boolean ("use-bufferpool",
|
|
|
|
|
"Use bufferpool",
|
|
|
|
|
"Use bufferpool (default: true for video, false for audio)",
|
|
|
|
|
DEFAULT_USE_BUFFERPOOL,
|
|
|
|
|
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,
|
2024-03-06 19:59:32 +01:00
|
|
|
"PipeWire source", "Source/Audio/Video",
|
|
|
|
|
"Uses PipeWire to create audio/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;
|
2023-04-13 20:20:34 +02:00
|
|
|
gstbasesrc_class->get_times = gst_pipewire_src_get_times;
|
2017-05-23 19:15:33 +02:00
|
|
|
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);
|
|
|
|
|
|
2023-01-25 12:46:23 -03:00
|
|
|
/* we're a live source, unless explicitly requested not to be */
|
|
|
|
|
gst_base_src_set_live (GST_BASE_SRC (src), TRUE);
|
|
|
|
|
|
2015-12-02 20:43:37 +01:00
|
|
|
GST_OBJECT_FLAG_SET (src, GST_ELEMENT_FLAG_PROVIDE_CLOCK);
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
src->stream = gst_pipewire_stream_new (GST_ELEMENT (src));
|
|
|
|
|
|
2025-01-24 21:07:55 +05:30
|
|
|
src->use_bufferpool = DEFAULT_USE_BUFFERPOOL;
|
2020-03-20 17:00:36 +01:00
|
|
|
src->min_buffers = DEFAULT_MIN_BUFFERS;
|
|
|
|
|
src->max_buffers = DEFAULT_MAX_BUFFERS;
|
2020-07-13 12:11:34 +02:00
|
|
|
src->resend_last = DEFAULT_RESEND_LAST;
|
2020-07-14 13:54:21 +02:00
|
|
|
src->keepalive_time = DEFAULT_KEEPALIVE_TIME;
|
2023-02-19 15:38:52 +00:00
|
|
|
src->autoconnect = DEFAULT_AUTOCONNECT;
|
2024-03-15 17:31:43 +01:00
|
|
|
src->min_latency = 0;
|
|
|
|
|
src->max_latency = GST_CLOCK_TIME_NONE;
|
2024-07-02 12:13:34 +02:00
|
|
|
|
|
|
|
|
src->transform_value = UINT32_MAX;
|
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;
|
2022-06-24 02:48:16 -06:00
|
|
|
int res;
|
2016-09-09 16:05:58 +02:00
|
|
|
|
2018-03-22 16:40:27 +01:00
|
|
|
data = gst_pipewire_pool_get_data (GST_BUFFER_CAST(obj));
|
|
|
|
|
|
2021-09-08 09:34:45 +02:00
|
|
|
GST_OBJECT_LOCK (data->pool);
|
|
|
|
|
if (!obj->dispose) {
|
|
|
|
|
GST_OBJECT_UNLOCK (data->pool);
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2021-09-08 09:34:45 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (src->stream->core->loop);
|
2021-09-08 09:34:45 +02:00
|
|
|
if (!obj->dispose) {
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (src->stream->core->loop);
|
2021-09-08 09:34:45 +02:00
|
|
|
GST_OBJECT_UNLOCK (data->pool);
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gst_mini_object_ref (obj);
|
|
|
|
|
|
2020-05-05 13:07:12 +02:00
|
|
|
data->queued = TRUE;
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
if ((res = pw_stream_queue_buffer (src->stream->pwstream, data->b)) < 0)
|
2022-06-24 02:48:16 -06:00
|
|
|
GST_WARNING_OBJECT (src, "can't queue recycled buffer %p, %s", obj, spa_strerror(res));
|
|
|
|
|
else
|
|
|
|
|
GST_LOG_OBJECT (src, "recycle buffer %p", obj);
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (src->stream->core->loop);
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2021-09-08 09:34:45 +02:00
|
|
|
GST_OBJECT_UNLOCK (data->pool);
|
|
|
|
|
|
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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
gst_pipewire_pool_wrap_buffer (pwsrc->stream->pool, b);
|
2018-03-22 16:40:27 +01:00
|
|
|
data = b->user_data;
|
2022-06-24 02:48:16 -06:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "add buffer %p", data->buf);
|
2018-03-22 16:40:27 +01:00
|
|
|
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;
|
2022-06-24 02:48:16 -06:00
|
|
|
int res;
|
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
|
|
|
|
2022-06-24 02:48:16 -06:00
|
|
|
if (data->queued) {
|
2021-09-08 09:34:45 +02:00
|
|
|
gst_buffer_unref (buf);
|
2022-06-24 02:48:16 -06:00
|
|
|
} else {
|
2024-05-29 17:56:38 +03:00
|
|
|
if ((res = pw_stream_queue_buffer (pwsrc->stream->pwstream, b)) < 0)
|
2022-06-24 02:48:16 -06:00
|
|
|
GST_WARNING_OBJECT (pwsrc, "can't queue removed buffer %p, %s", buf, spa_strerror(res));
|
|
|
|
|
}
|
2016-08-24 16:26:58 +02:00
|
|
|
}
|
|
|
|
|
|
2022-12-03 23:20:52 +01:00
|
|
|
static const char * const transform_map[] = {
|
|
|
|
|
[SPA_META_TRANSFORMATION_None] = "rotate-0",
|
|
|
|
|
[SPA_META_TRANSFORMATION_90] = "rotate-90",
|
|
|
|
|
[SPA_META_TRANSFORMATION_180] = "rotate-180",
|
|
|
|
|
[SPA_META_TRANSFORMATION_270] = "rotate-270",
|
|
|
|
|
[SPA_META_TRANSFORMATION_Flipped] = "flip-rotate-0",
|
|
|
|
|
[SPA_META_TRANSFORMATION_Flipped90] = "flip-rotate-270",
|
|
|
|
|
[SPA_META_TRANSFORMATION_Flipped180] = "flip-rotate-180",
|
|
|
|
|
[SPA_META_TRANSFORMATION_Flipped270] = "flip-rotate-90",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char *spa_transform_value_to_gst_image_orientation(uint32_t transform_value)
|
|
|
|
|
{
|
|
|
|
|
if (transform_value >= SPA_N_ELEMENTS(transform_map))
|
|
|
|
|
transform_value = SPA_META_TRANSFORMATION_None;
|
|
|
|
|
|
|
|
|
|
return transform_map[transform_value];
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2020-07-31 11:44:46 +02:00
|
|
|
struct spa_meta_region *crop;
|
2024-07-02 12:13:34 +02:00
|
|
|
enum spa_meta_videotransform_value transform_value;
|
2024-03-15 17:31:43 +01:00
|
|
|
struct pw_time time;
|
2016-10-28 16:56:33 +02:00
|
|
|
guint i;
|
2016-08-24 16:26:58 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
b = pw_stream_dequeue_buffer (pwsrc->stream->pwstream);
|
2018-03-22 16:40:27 +01:00
|
|
|
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;
|
|
|
|
|
|
2022-06-01 21:27:32 -06:00
|
|
|
if (!GST_IS_BUFFER (data->buf)) {
|
|
|
|
|
GST_ERROR_OBJECT (pwsrc, "stream buffer %p is missing", data->buf);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!data->queued) {
|
|
|
|
|
GST_ERROR_OBJECT (pwsrc, "buffer %p was not recycled", data->buf);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_get_time_n(pwsrc->stream->pwstream, &time, sizeof(time));
|
2024-03-15 17:31:43 +01:00
|
|
|
|
|
|
|
|
if (pwsrc->delay != time.delay && time.rate.denom != 0) {
|
|
|
|
|
pwsrc->min_latency = time.delay * GST_SECOND * time.rate.num / time.rate.denom;
|
|
|
|
|
GST_LOG_OBJECT (pwsrc, "latency changed %"PRIi64" -> %"PRIi64" %"PRIu64,
|
|
|
|
|
pwsrc->delay, time.delay, pwsrc->min_latency);
|
|
|
|
|
pwsrc->delay = time.delay;
|
|
|
|
|
gst_element_post_message (GST_ELEMENT_CAST (pwsrc),
|
|
|
|
|
gst_message_new_latency (GST_OBJECT_CAST (pwsrc)));
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-01 04:03:37 -06:00
|
|
|
GST_LOG_OBJECT (pwsrc, "got new buffer %p", data->buf);
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2022-06-01 04:03:37 -06:00
|
|
|
buf = gst_buffer_new ();
|
|
|
|
|
|
2020-05-05 13:07:12 +02:00
|
|
|
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)) {
|
2023-04-13 20:20:34 +02:00
|
|
|
GST_BUFFER_PTS (buf) = h->pts;
|
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;
|
2024-03-14 16:15:17 +01:00
|
|
|
} else {
|
2024-03-15 17:31:43 +01:00
|
|
|
GST_BUFFER_PTS (buf) = b->time - pwsrc->delay;
|
|
|
|
|
GST_BUFFER_DTS (buf) = b->time - pwsrc->delay;
|
2016-05-05 13:31:18 +02:00
|
|
|
}
|
2024-05-27 14:26:36 +03:00
|
|
|
|
|
|
|
|
if (pwsrc->is_video) {
|
2024-05-28 13:45:58 +03:00
|
|
|
if (pwsrc->video_info.fps_n) {
|
|
|
|
|
GST_BUFFER_DURATION (buf) = gst_util_uint64_scale (GST_SECOND,
|
|
|
|
|
pwsrc->video_info.fps_d, pwsrc->video_info.fps_n);
|
|
|
|
|
}
|
2024-05-27 14:26:36 +03:00
|
|
|
} else {
|
|
|
|
|
GST_BUFFER_DURATION (buf) = gst_util_uint64_scale (GST_SECOND,
|
|
|
|
|
time.size * time.rate.num, time.rate.denom);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-31 11:44:46 +02:00
|
|
|
crop = data->crop;
|
|
|
|
|
if (crop) {
|
|
|
|
|
GstVideoCropMeta *meta = gst_buffer_get_video_crop_meta(buf);
|
|
|
|
|
if (meta) {
|
|
|
|
|
meta->x = crop->region.position.x;
|
|
|
|
|
meta->y = crop->region.position.y;
|
|
|
|
|
meta->width = crop->region.size.width;
|
|
|
|
|
meta->height = crop->region.size.height;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-03 23:20:52 +01:00
|
|
|
|
2024-07-02 12:13:34 +02:00
|
|
|
transform_value = data->videotransform ? data->videotransform->transform :
|
|
|
|
|
SPA_META_TRANSFORMATION_None;
|
|
|
|
|
if (transform_value != pwsrc->transform_value) {
|
|
|
|
|
GstEvent *tag_event;
|
|
|
|
|
const char* tag_string;
|
2022-12-03 23:20:52 +01:00
|
|
|
|
2024-07-02 12:13:34 +02:00
|
|
|
tag_string = spa_transform_value_to_gst_image_orientation(transform_value);
|
2022-12-03 23:20:52 +01:00
|
|
|
|
2024-07-02 12:13:34 +02:00
|
|
|
GST_LOG_OBJECT (pwsrc, "got new videotransform: %u / %s",
|
|
|
|
|
transform_value, tag_string);
|
2022-12-03 23:20:52 +01:00
|
|
|
|
2024-07-02 12:13:34 +02:00
|
|
|
tag_event = gst_event_new_tag(gst_tag_list_new(GST_TAG_IMAGE_ORIENTATION,
|
|
|
|
|
tag_string, NULL));
|
|
|
|
|
gst_pad_push_event (GST_BASE_SRC_PAD (pwsrc), tag_event);
|
2022-12-03 23:20:52 +01:00
|
|
|
|
2024-07-02 12:13:34 +02:00
|
|
|
pwsrc->transform_value = transform_value;
|
2022-12-03 23:20:52 +01:00
|
|
|
}
|
|
|
|
|
|
2023-02-03 13:02:49 +08:00
|
|
|
if (pwsrc->is_video) {
|
|
|
|
|
GstVideoInfo *info = &pwsrc->video_info;
|
2025-03-12 17:34:19 +05:30
|
|
|
uint32_t n_datas = b->buffer->n_datas;
|
|
|
|
|
uint32_t n_planes = GST_VIDEO_INFO_N_PLANES (info);
|
|
|
|
|
gsize video_size = 0;
|
|
|
|
|
|
2023-02-03 13:02:49 +08:00
|
|
|
GstVideoMeta *meta = gst_buffer_add_video_meta_full (buf, GST_VIDEO_FRAME_FLAG_NONE,
|
|
|
|
|
GST_VIDEO_INFO_FORMAT (info),
|
|
|
|
|
GST_VIDEO_INFO_WIDTH (info),
|
|
|
|
|
GST_VIDEO_INFO_HEIGHT (info),
|
|
|
|
|
GST_VIDEO_INFO_N_PLANES (info),
|
|
|
|
|
info->offset,
|
|
|
|
|
info->stride);
|
|
|
|
|
|
2025-03-12 17:34:19 +05:30
|
|
|
for (i = 0; i < MIN (n_datas, n_planes); i++) {
|
2023-02-03 13:02:49 +08:00
|
|
|
struct spa_data *d = &b->buffer->datas[i];
|
2025-03-26 17:54:37 +01:00
|
|
|
/* don't add the chunk offset here, this is done below when we
|
|
|
|
|
* share/copy the memory in the target buffer below */
|
|
|
|
|
meta->offset[i] = video_size;
|
2023-02-03 13:02:49 +08:00
|
|
|
meta->stride[i] = d->chunk->stride;
|
2023-02-03 19:45:50 +08:00
|
|
|
|
|
|
|
|
video_size += d->chunk->size;
|
2023-02-03 13:02:49 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-12 17:34:19 +05:30
|
|
|
if (b->buffer->n_datas != gst_buffer_n_memory(data->buf)) {
|
2025-03-28 16:08:57 +01:00
|
|
|
GST_ERROR_OBJECT(pwsrc, "n_datas != n_memory, (%d != %d)", b->buffer->n_datas, gst_buffer_n_memory(data->buf));
|
2025-03-12 17:34:19 +05:30
|
|
|
}
|
|
|
|
|
|
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];
|
2024-11-29 15:35:21 +05:30
|
|
|
|
|
|
|
|
if (d->chunk->size == 0) {
|
|
|
|
|
// Skip the 0 sized chunk, not adding to the buffer
|
|
|
|
|
GST_DEBUG_OBJECT(pwsrc, "Chunk size is 0, skipping");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-01 04:03:37 -06:00
|
|
|
GstMemory *pmem = gst_buffer_peek_memory (data->buf, i);
|
|
|
|
|
if (pmem) {
|
2022-08-20 00:19:42 -06:00
|
|
|
GstMemory *mem;
|
2025-01-24 21:07:55 +05:30
|
|
|
if (pwsrc->use_bufferpool != USE_BUFFERPOOL_NO)
|
2022-08-20 00:19:42 -06:00
|
|
|
mem = gst_memory_share (pmem, d->chunk->offset, d->chunk->size);
|
|
|
|
|
else
|
|
|
|
|
mem = gst_memory_copy (pmem, d->chunk->offset, d->chunk->size);
|
2022-06-01 04:03:37 -06:00
|
|
|
gst_buffer_insert_memory (buf, i, mem);
|
|
|
|
|
}
|
2024-11-29 15:35:21 +05:30
|
|
|
if (d->chunk->flags & SPA_CHUNK_FLAG_CORRUPTED) {
|
|
|
|
|
GST_DEBUG_OBJECT(pwsrc, "Buffer corrupted");
|
2020-05-09 19:46:14 +02:00
|
|
|
GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_CORRUPTED);
|
2024-11-29 15:35:21 +05:30
|
|
|
}
|
2016-10-28 16:56:33 +02:00
|
|
|
}
|
2025-01-24 21:07:55 +05:30
|
|
|
if (pwsrc->use_bufferpool != USE_BUFFERPOOL_NO)
|
2022-08-20 00:19:42 -06:00
|
|
|
gst_buffer_add_parent_buffer_meta (buf, data->buf);
|
|
|
|
|
gst_buffer_unref (data->buf);
|
2024-11-29 15:35:21 +05:30
|
|
|
|
|
|
|
|
if (gst_buffer_get_size(buf) == 0)
|
|
|
|
|
{
|
|
|
|
|
GST_ERROR_OBJECT(pwsrc, "Buffer is empty, dropping this");
|
|
|
|
|
gst_buffer_unref(buf);
|
|
|
|
|
buf = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (pwsrc->stream->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;
|
gstpipewiresrc: Fix re-linking for audio
For a pipeline like below, we might want to dynamically switch the audio
source.
gst-launch-1.0 -e pipewiresrc autoconnect=false ! queue ! audioconvert ! autoaudiosink
On switching to a different audio source, any one of driver, quantum
or clock rate might change which changes the return `result` value of
gst_pipewire_clock_get_internal_time.
This can result in the basesrc create function incorrectly waiting in
gst_clock_id_wait. We post clock lost message to fix this. In the case
of gst-launch, it will set the pipeline to PAUSED and then PLAYING to
to force a new clock and a new base_time distribution.
Without the clock lost message, the following can be seen
before re-linking to a different source
0:00:30.887602864 79499 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:17.024565416 now 0:00:17.024109144 diff (time-now) 456272
after re-linking to a different source
0:00:45.790843245 79499 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:31.927694059 now 0:00:17.066883864 diff (time-now) 14860810195
With the clock lost message, the following can be seen
before re-linking to a different source
0:01:09.336533552 89461 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:58.198536772 now 0:00:58.197444926 diff (time-now) 1091846
after re-linking to a different source
0:01:21.659827958 89461 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:28:24.853517646 now 0:28:24.853527204 diff (time-now) -9558
Note the difference in `time` and `now` fields of the above log message.
This is easy to reproduce by using a pipewiresink as the audio source
with a pipeline like below, as one of the sources during switching.
gst-launch-1.0 -e audiotestsrc wave=ticks ! audioconvert ! audio/x-raw,format=F32LE,rate=48000,channels=1 !
pipewiresink stream-properties="props,media.class=Audio/Source,node.description=pwsink" client-name=pwsink
Applications need to handle the GST_MESSAGE_CLOCK_LOST message in their
bus handlers.
2025-04-01 17:34:15 +05:30
|
|
|
GstState current_state = GST_ELEMENT_CAST (pwsrc)->current_state;
|
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:
|
gstpipewiresrc: Fix re-linking for audio
For a pipeline like below, we might want to dynamically switch the audio
source.
gst-launch-1.0 -e pipewiresrc autoconnect=false ! queue ! audioconvert ! autoaudiosink
On switching to a different audio source, any one of driver, quantum
or clock rate might change which changes the return `result` value of
gst_pipewire_clock_get_internal_time.
This can result in the basesrc create function incorrectly waiting in
gst_clock_id_wait. We post clock lost message to fix this. In the case
of gst-launch, it will set the pipeline to PAUSED and then PLAYING to
to force a new clock and a new base_time distribution.
Without the clock lost message, the following can be seen
before re-linking to a different source
0:00:30.887602864 79499 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:17.024565416 now 0:00:17.024109144 diff (time-now) 456272
after re-linking to a different source
0:00:45.790843245 79499 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:31.927694059 now 0:00:17.066883864 diff (time-now) 14860810195
With the clock lost message, the following can be seen
before re-linking to a different source
0:01:09.336533552 89461 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:58.198536772 now 0:00:58.197444926 diff (time-now) 1091846
after re-linking to a different source
0:01:21.659827958 89461 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:28:24.853517646 now 0:28:24.853527204 diff (time-now) -9558
Note the difference in `time` and `now` fields of the above log message.
This is easy to reproduce by using a pipewiresink as the audio source
with a pipeline like below, as one of the sources during switching.
gst-launch-1.0 -e audiotestsrc wave=ticks ! audioconvert ! audio/x-raw,format=F32LE,rate=48000,channels=1 !
pipewiresink stream-properties="props,media.class=Audio/Source,node.description=pwsink" client-name=pwsink
Applications need to handle the GST_MESSAGE_CLOCK_LOST message in their
bus handlers.
2025-04-01 17:34:15 +05:30
|
|
|
break;
|
2017-05-23 19:15:33 +02:00
|
|
|
case PW_STREAM_STATE_PAUSED:
|
gstpipewiresrc: Fix re-linking for audio
For a pipeline like below, we might want to dynamically switch the audio
source.
gst-launch-1.0 -e pipewiresrc autoconnect=false ! queue ! audioconvert ! autoaudiosink
On switching to a different audio source, any one of driver, quantum
or clock rate might change which changes the return `result` value of
gst_pipewire_clock_get_internal_time.
This can result in the basesrc create function incorrectly waiting in
gst_clock_id_wait. We post clock lost message to fix this. In the case
of gst-launch, it will set the pipeline to PAUSED and then PLAYING to
to force a new clock and a new base_time distribution.
Without the clock lost message, the following can be seen
before re-linking to a different source
0:00:30.887602864 79499 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:17.024565416 now 0:00:17.024109144 diff (time-now) 456272
after re-linking to a different source
0:00:45.790843245 79499 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:31.927694059 now 0:00:17.066883864 diff (time-now) 14860810195
With the clock lost message, the following can be seen
before re-linking to a different source
0:01:09.336533552 89461 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:00:58.198536772 now 0:00:58.197444926 diff (time-now) 1091846
after re-linking to a different source
0:01:21.659827958 89461 0x7fffe8000d40 DEBUG GST_CLOCK gstsystemclock.c:1158:gst_system_clock_id_wait_jitter_unlocked:<pipewireclock0> entry 0x7fffd803fad0 time 0:28:24.853517646 now 0:28:24.853527204 diff (time-now) -9558
Note the difference in `time` and `now` fields of the above log message.
This is easy to reproduce by using a pipewiresink as the audio source
with a pipeline like below, as one of the sources during switching.
gst-launch-1.0 -e audiotestsrc wave=ticks ! audioconvert ! audio/x-raw,format=F32LE,rate=48000,channels=1 !
pipewiresink stream-properties="props,media.class=Audio/Source,node.description=pwsink" client-name=pwsink
Applications need to handle the GST_MESSAGE_CLOCK_LOST message in their
bus handlers.
2025-04-01 17:34:15 +05:30
|
|
|
/*
|
|
|
|
|
* We may see a driver/quantum/clock rate change on switching audio
|
|
|
|
|
* sources. The same is not applicable for video.
|
|
|
|
|
*
|
|
|
|
|
* We post the clock lost message here to take care of a possible
|
|
|
|
|
* jump or shift in base_time/clock for the pipeline. Application
|
|
|
|
|
* must handle the clock lost message in it's bus handler by pausing
|
|
|
|
|
* the pipeline and then setting it back to playing.
|
|
|
|
|
*/
|
|
|
|
|
if (current_state == GST_STATE_PLAYING && !pwsrc->is_video)
|
|
|
|
|
gst_element_post_message (GST_ELEMENT_CAST (pwsrc),
|
|
|
|
|
gst_message_new_clock_lost (GST_OBJECT_CAST (pwsrc),
|
|
|
|
|
GST_CLOCK_CAST (pwsrc->stream->clock)));
|
|
|
|
|
break;
|
2017-05-23 19:15:33 +02:00
|
|
|
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:
|
2023-11-08 18:12:59 +02:00
|
|
|
/* make the error permanent, if it is not already;
|
|
|
|
|
pw_stream_set_error() will recursively call us again */
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pw_stream_get_state (pwsrc->stream->pwstream, NULL) != PW_STREAM_STATE_ERROR)
|
|
|
|
|
pw_stream_set_error (pwsrc->stream->pwstream, -EPIPE, "%s", error);
|
2023-11-08 18:12:59 +02:00
|
|
|
else
|
|
|
|
|
GST_ELEMENT_ERROR (pwsrc, RESOURCE, FAILED,
|
|
|
|
|
("stream error: %s", error), (NULL));
|
2015-07-08 12:11:55 +02:00
|
|
|
break;
|
2015-04-29 17:51:51 +02:00
|
|
|
}
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (pwsrc->stream->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);
|
2023-01-25 12:46:23 -03:00
|
|
|
is_live = pwsrc->is_live = var ? pw_properties_parse_bool(var) : TRUE;
|
2017-05-23 19:15:33 +02:00
|
|
|
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;
|
2021-09-16 10:05:58 +02:00
|
|
|
struct timespec abstime;
|
2020-08-06 13:03:40 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "doing stream start");
|
2021-09-16 10:05:58 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_get_time (pwsrc->stream->core->loop, &abstime,
|
2022-05-31 02:33:21 -06:00
|
|
|
GST_PIPEWIRE_DEFAULT_TIMEOUT * SPA_NSEC_PER_SEC);
|
2021-09-16 10:05:58 +02:00
|
|
|
|
2015-07-14 15:47:18 +02:00
|
|
|
while (TRUE) {
|
2024-05-29 17:56:38 +03:00
|
|
|
enum pw_stream_state state = pw_stream_get_state (pwsrc->stream->pwstream, &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;
|
|
|
|
|
|
2021-09-15 15:55:52 +02:00
|
|
|
if (pwsrc->flushing) {
|
|
|
|
|
error = "flushing";
|
|
|
|
|
goto start_error;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pw_thread_loop_timed_wait_full (pwsrc->stream->core->loop, &abstime) < 0) {
|
2021-09-16 10:05:58 +02:00
|
|
|
error = "timeout";
|
|
|
|
|
goto start_error;
|
|
|
|
|
}
|
2015-07-14 15:47:18 +02:00
|
|
|
}
|
2016-04-28 11:18:10 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
parse_stream_properties (pwsrc, pw_stream_get_properties (pwsrc->stream->pwstream));
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "signal started");
|
|
|
|
|
pwsrc->started = TRUE;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (pwsrc->stream->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (pwsrc->stream->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);
|
2024-06-17 11:03:41 +02:00
|
|
|
pwsrc->started = FALSE;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (pwsrc->stream->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (pwsrc->stream->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
|
2020-08-06 13:03:40 +02:00
|
|
|
wait_started (GstPipeWireSrc *this)
|
2016-04-28 16:42:25 +02:00
|
|
|
{
|
2023-12-22 16:01:42 +02:00
|
|
|
enum pw_stream_state state, prev_state = PW_STREAM_STATE_UNCONNECTED;
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2021-09-16 10:05:58 +02:00
|
|
|
struct timespec abstime;
|
2024-06-17 11:03:41 +02:00
|
|
|
gboolean restart = FALSE;
|
2016-09-16 13:13:41 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (this->stream->core->loop);
|
2021-09-16 10:05:58 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_get_time (this->stream->core->loop, &abstime,
|
2022-05-31 02:33:21 -06:00
|
|
|
GST_PIPEWIRE_DEFAULT_TIMEOUT * SPA_NSEC_PER_SEC);
|
2021-09-16 10:05:58 +02:00
|
|
|
|
2024-06-17 11:03:41 +02:00
|
|
|
/* when started already is true then expects a re-start, so allow prev_state
|
|
|
|
|
* degrade until turned around. */
|
|
|
|
|
if (this->started) {
|
|
|
|
|
GST_DEBUG_OBJECT (this, "restart in progress");
|
|
|
|
|
restart = TRUE;
|
|
|
|
|
this->started = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-16 13:13:41 +02:00
|
|
|
while (TRUE) {
|
2024-05-29 17:56:38 +03:00
|
|
|
state = pw_stream_get_state (this->stream->pwstream, &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
|
|
|
|
2023-12-22 16:01:42 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR ||
|
2024-06-17 11:03:41 +02:00
|
|
|
(state == PW_STREAM_STATE_UNCONNECTED && prev_state > PW_STREAM_STATE_UNCONNECTED && !restart) ||
|
2023-12-22 16:01:42 +02:00
|
|
|
this->flushing) {
|
2021-09-15 15:55:52 +02:00
|
|
|
state = PW_STREAM_STATE_ERROR;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-16 13:13:41 +02:00
|
|
|
if (this->started)
|
|
|
|
|
break;
|
|
|
|
|
|
2024-03-01 10:29:18 +01:00
|
|
|
if (this->autoconnect) {
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pw_thread_loop_timed_wait_full (this->stream->core->loop, &abstime) < 0) {
|
2024-03-01 10:29:18 +01:00
|
|
|
state = PW_STREAM_STATE_ERROR;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_wait (this->stream->core->loop);
|
2021-09-16 10:05:58 +02:00
|
|
|
}
|
2023-12-22 16:01:42 +02:00
|
|
|
|
2024-06-17 11:03:41 +02:00
|
|
|
if (restart)
|
|
|
|
|
restart = state != PW_STREAM_STATE_UNCONNECTED;
|
2023-12-22 16:01:42 +02:00
|
|
|
prev_state = state;
|
2016-04-28 16:42:25 +02:00
|
|
|
}
|
2021-09-16 10:05:58 +02:00
|
|
|
GST_DEBUG_OBJECT (this, "got started signal: %s",
|
2022-05-31 02:33:21 -06:00
|
|
|
pw_stream_state_as_string (state));
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (this->stream->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);
|
2024-03-30 20:55:31 +01:00
|
|
|
g_autoptr (GstCaps) thiscaps = NULL;
|
|
|
|
|
g_autoptr (GstCaps) possible_caps = NULL;
|
|
|
|
|
g_autoptr (GstCaps) negotiated_caps = NULL;
|
|
|
|
|
g_autoptr (GstCaps) peercaps = NULL;
|
|
|
|
|
g_autoptr (GPtrArray) possible = NULL;
|
2015-05-14 17:46:12 +02:00
|
|
|
gboolean result = FALSE;
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2021-09-16 10:05:58 +02:00
|
|
|
struct timespec abstime;
|
2022-03-06 14:10:55 +02:00
|
|
|
uint32_t target_id;
|
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 */
|
2024-03-30 20:55:31 +01:00
|
|
|
possible_caps = g_steal_pointer (&peercaps);
|
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 */
|
2024-03-30 20:55:31 +01:00
|
|
|
possible_caps = g_steal_pointer (&thiscaps);
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
2024-02-25 17:36:08 +01:00
|
|
|
|
2024-03-30 20:55:31 +01:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "have common caps: %" GST_PTR_FORMAT, possible_caps);
|
|
|
|
|
gst_caps_sanitize (&possible_caps);
|
2024-02-25 17:36:08 +01:00
|
|
|
|
2024-03-30 20:55:31 +01:00
|
|
|
if (gst_caps_is_empty (possible_caps))
|
2016-07-20 17:29:34 +02:00
|
|
|
goto no_common_caps;
|
2015-04-28 17:36:44 +02:00
|
|
|
|
2024-03-30 20:55:31 +01:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "have common caps (sanitized): %" GST_PTR_FORMAT, possible_caps);
|
2015-08-26 15:44:29 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pw_stream_get_state(pwsrc->stream->pwstream, NULL) == PW_STREAM_STATE_STREAMING) {
|
2024-03-30 20:44:07 +01:00
|
|
|
g_autoptr (GstCaps) current_caps = NULL;
|
|
|
|
|
g_autoptr (GstCaps) preferred_new_caps = NULL;
|
|
|
|
|
|
|
|
|
|
current_caps = gst_pad_get_current_caps (GST_BASE_SRC_PAD (pwsrc));
|
|
|
|
|
preferred_new_caps = gst_caps_copy_nth (possible_caps, 0);
|
|
|
|
|
|
2024-04-10 08:55:41 +02:00
|
|
|
if (current_caps && gst_caps_is_equal (current_caps, preferred_new_caps)) {
|
2024-03-30 20:44:07 +01:00
|
|
|
GST_DEBUG_OBJECT (pwsrc,
|
|
|
|
|
"Stream running and new caps equal current ones. "
|
|
|
|
|
"Skipping renegotiation.");
|
|
|
|
|
goto no_nego_needed;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
/* open a connection with these caps */
|
2024-03-30 20:55:31 +01:00
|
|
|
possible = gst_caps_to_format_all (possible_caps);
|
2015-06-12 12:10:27 +02:00
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
/* first disconnect */
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
|
|
|
|
if (pw_stream_get_state(pwsrc->stream->pwstream, &error) != PW_STREAM_STATE_UNCONNECTED) {
|
2016-07-20 17:29:34 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "disconnect capture");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_disconnect (pwsrc->stream->pwstream);
|
2015-05-14 17:46:12 +02:00
|
|
|
while (TRUE) {
|
2024-05-29 17:56:38 +03:00
|
|
|
enum pw_stream_state state = pw_stream_get_state (pwsrc->stream->pwstream, &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
|
|
|
|
2024-03-30 20:55:31 +01:00
|
|
|
if (state == PW_STREAM_STATE_ERROR || pwsrc->flushing)
|
2015-05-14 17:46:12 +02:00
|
|
|
goto connect_error;
|
2015-04-29 17:51:51 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_wait (pwsrc->stream->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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
target_id = pwsrc->stream->path ? (uint32_t)atoi(pwsrc->stream->path) : PW_ID_ANY;
|
2022-03-06 14:10:55 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pwsrc->stream->target_object) {
|
2022-03-06 14:10:55 +02:00
|
|
|
struct spa_dict_item items[2] = {
|
2024-05-29 17:56:38 +03:00
|
|
|
SPA_DICT_ITEM_INIT(PW_KEY_TARGET_OBJECT, pwsrc->stream->target_object),
|
2023-01-10 17:21:02 +01:00
|
|
|
/* XXX deprecated but the portal and some example apps only
|
|
|
|
|
* provide the object id */
|
2022-03-06 14:10:55 +02:00
|
|
|
SPA_DICT_ITEM_INIT(PW_KEY_NODE_TARGET, NULL),
|
|
|
|
|
};
|
|
|
|
|
struct spa_dict dict = SPA_DICT_INIT_ARRAY(items);
|
|
|
|
|
uint64_t serial;
|
|
|
|
|
|
|
|
|
|
/* If target.object is a name, set it also to node.target */
|
2024-05-29 17:56:38 +03:00
|
|
|
if (spa_atou64(pwsrc->stream->target_object, &serial, 0)) {
|
2022-03-06 14:10:55 +02:00
|
|
|
dict.n_items = 1;
|
|
|
|
|
} else {
|
|
|
|
|
target_id = PW_ID_ANY;
|
2024-05-29 17:56:38 +03:00
|
|
|
items[1].value = pwsrc->stream->target_object;
|
2022-03-06 14:10:55 +02:00
|
|
|
}
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_update_properties (pwsrc->stream->pwstream, &dict);
|
2022-03-06 14:10:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (basesrc, "connect capture with path %s, target-object %s",
|
2024-05-29 17:56:38 +03:00
|
|
|
pwsrc->stream->path, pwsrc->stream->target_object);
|
2024-05-28 16:59:01 +02:00
|
|
|
|
2025-03-25 16:24:48 +05:30
|
|
|
pwsrc->possible_caps = gst_caps_ref (possible_caps);
|
2024-12-12 11:11:21 -05:00
|
|
|
pwsrc->negotiated = FALSE;
|
|
|
|
|
|
2023-10-21 09:42:15 +02:00
|
|
|
enum pw_stream_flags flags;
|
|
|
|
|
flags = PW_STREAM_FLAG_DONT_RECONNECT |
|
|
|
|
|
PW_STREAM_FLAG_ASYNC;
|
2023-02-19 15:38:52 +00:00
|
|
|
if (pwsrc->autoconnect)
|
|
|
|
|
flags |= PW_STREAM_FLAG_AUTOCONNECT;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_connect (pwsrc->stream->pwstream,
|
2017-05-23 19:15:33 +02:00
|
|
|
PW_DIRECTION_INPUT,
|
2022-03-06 14:10:55 +02:00
|
|
|
target_id,
|
2023-02-19 15:38:52 +00:00
|
|
|
flags,
|
2017-11-20 15:26:44 +01:00
|
|
|
(const struct spa_pod **)possible->pdata,
|
|
|
|
|
possible->len);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_get_time (pwsrc->stream->core->loop, &abstime,
|
2022-05-31 02:33:21 -06:00
|
|
|
GST_PIPEWIRE_DEFAULT_TIMEOUT * SPA_NSEC_PER_SEC);
|
2021-09-16 10:05:58 +02:00
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
while (TRUE) {
|
2024-05-29 17:56:38 +03:00
|
|
|
enum pw_stream_state state = pw_stream_get_state (pwsrc->stream->pwstream, &error);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
2020-08-06 13:03:40 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "waiting for NEGOTIATED, now %s", pw_stream_state_as_string (state));
|
2021-09-15 15:55:52 +02:00
|
|
|
if (state == PW_STREAM_STATE_ERROR || pwsrc->flushing)
|
2016-07-20 17:29:34 +02:00
|
|
|
goto connect_error;
|
|
|
|
|
|
2020-08-11 16:10:44 +02:00
|
|
|
if (pwsrc->negotiated)
|
|
|
|
|
break;
|
|
|
|
|
|
2024-03-01 10:29:18 +01:00
|
|
|
if (pwsrc->autoconnect) {
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pw_thread_loop_timed_wait_full (pwsrc->stream->core->loop, &abstime) < 0)
|
2021-09-16 10:05:58 +02:00
|
|
|
goto connect_error;
|
2024-03-01 10:29:18 +01:00
|
|
|
} else {
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_wait (pwsrc->stream->core->loop);
|
2024-03-01 10:29:18 +01:00
|
|
|
}
|
2015-04-29 17:51:51 +02:00
|
|
|
}
|
2024-03-30 20:55:31 +01:00
|
|
|
|
|
|
|
|
negotiated_caps = g_steal_pointer (&pwsrc->caps);
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2016-07-20 17:29:34 +02:00
|
|
|
|
2024-03-30 20:55:31 +01:00
|
|
|
if (negotiated_caps == NULL)
|
2020-08-11 16:10:44 +02:00
|
|
|
goto no_caps;
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
gst_pipewire_clock_reset (GST_PIPEWIRE_CLOCK (pwsrc->stream->clock), 0);
|
2020-08-06 13:03:40 +02:00
|
|
|
|
2024-03-30 20:55:31 +01:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "set format %" GST_PTR_FORMAT, negotiated_caps);
|
|
|
|
|
result = gst_base_src_set_caps (GST_BASE_SRC (pwsrc), negotiated_caps);
|
2024-06-17 11:03:41 +02:00
|
|
|
if (!result)
|
|
|
|
|
goto no_caps;
|
2020-08-06 13:03:40 +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
|
|
|
|
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");
|
|
|
|
|
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
|
|
|
{
|
2023-02-22 21:16:18 +01:00
|
|
|
const gchar * error_string = "No supported formats found";
|
|
|
|
|
|
2015-05-14 17:46:12 +02:00
|
|
|
GST_ELEMENT_ERROR (basesrc, STREAM, FORMAT,
|
2023-02-22 21:16:18 +01:00
|
|
|
("%s", error_string),
|
2015-05-14 17:46:12 +02:00
|
|
|
("This element did not produce valid caps"));
|
2024-11-08 12:22:35 +01:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_set_error (pwsrc->stream->pwstream, -EINVAL, "%s", error_string);
|
2024-11-08 12:22:35 +01:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2016-07-20 17:29:34 +02:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
no_common_caps:
|
|
|
|
|
{
|
2023-02-22 21:16:18 +01:00
|
|
|
const gchar * error_string = "No supported formats found";
|
|
|
|
|
|
2016-07-20 17:29:34 +02:00
|
|
|
GST_ELEMENT_ERROR (basesrc, STREAM, FORMAT,
|
2023-02-22 21:16:18 +01:00
|
|
|
("%s", error_string),
|
2016-07-20 17:29:34 +02:00
|
|
|
("This element does not have formats in common with the peer"));
|
2024-11-08 12:22:35 +01:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_set_error (pwsrc->stream->pwstream, -EPIPE, "%s", error_string);
|
2024-11-08 12:22:35 +01:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2016-07-20 17:29:34 +02:00
|
|
|
return FALSE;
|
2015-04-28 17:36:44 +02:00
|
|
|
}
|
2015-04-29 17:51:51 +02:00
|
|
|
connect_error:
|
|
|
|
|
{
|
2024-05-28 16:59:01 +02:00
|
|
|
g_clear_pointer (&pwsrc->caps, gst_caps_unref);
|
|
|
|
|
pwsrc->possible_caps = NULL;
|
2021-09-16 10:05:58 +02:00
|
|
|
GST_DEBUG_OBJECT (basesrc, "connect error");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->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
|
2024-03-15 17:29:03 +01:00
|
|
|
handle_format_change (GstPipeWireSrc *pwsrc,
|
2019-11-21 16:14:50 +01:00
|
|
|
const struct spa_pod *param)
|
2016-07-28 21:19:20 +02:00
|
|
|
{
|
2024-06-11 15:09:28 +02:00
|
|
|
GstStructure *structure;
|
2024-05-28 16:59:01 +02:00
|
|
|
g_autoptr (GstCaps) pw_peer_caps = NULL;
|
|
|
|
|
|
|
|
|
|
g_clear_pointer (&pwsrc->caps, gst_caps_unref);
|
2024-03-15 17:29:03 +01:00
|
|
|
if (param == NULL) {
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "clear format");
|
2024-03-15 17:29:03 +01:00
|
|
|
pwsrc->negotiated = FALSE;
|
|
|
|
|
pwsrc->is_video = FALSE;
|
2017-05-17 17:24:25 +08:00
|
|
|
return;
|
2017-05-17 11:55:48 +02:00
|
|
|
}
|
2024-05-28 16:59:01 +02:00
|
|
|
|
|
|
|
|
pw_peer_caps = gst_caps_from_format (param);
|
gst: pipewiresrc: Fixate caps if intersect did not return fixated caps
We might end up in a situation where depending on the pipeline,
intersect might not give us fixated caps.
Possible example of such a pipeline can be below.
gst-launch-1.0 -e pipewiresrc target-object=<path> ! audioconvert !
audio/x-raw,format=S16LE,rate=48000,channels=2 ! lamemp3enc !
filesink location=test.mp3
This results in non-fixated caps like below when intersecting caps from
format param and possible_caps which depends on what we have downstream
in the pipeline.
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2, channel-mask=(bitmask)0x0000000000000003;
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2
To fix this, fixate the caps explicitly.
2025-03-19 19:54:46 +05:30
|
|
|
|
2024-12-12 12:17:26 +01:00
|
|
|
if (pw_peer_caps && pwsrc->possible_caps) {
|
gst: pipewiresrc: Fixate caps if intersect did not return fixated caps
We might end up in a situation where depending on the pipeline,
intersect might not give us fixated caps.
Possible example of such a pipeline can be below.
gst-launch-1.0 -e pipewiresrc target-object=<path> ! audioconvert !
audio/x-raw,format=S16LE,rate=48000,channels=2 ! lamemp3enc !
filesink location=test.mp3
This results in non-fixated caps like below when intersecting caps from
format param and possible_caps which depends on what we have downstream
in the pipeline.
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2, channel-mask=(bitmask)0x0000000000000003;
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2
To fix this, fixate the caps explicitly.
2025-03-19 19:54:46 +05:30
|
|
|
GST_DEBUG_OBJECT (pwsrc, "peer caps %" GST_PTR_FORMAT, pw_peer_caps);
|
|
|
|
|
GST_DEBUG_OBJECT (pwsrc, "possible caps %" GST_PTR_FORMAT, pwsrc->possible_caps);
|
|
|
|
|
|
2024-05-28 16:59:01 +02:00
|
|
|
pwsrc->caps = gst_caps_intersect_full (pw_peer_caps,
|
|
|
|
|
pwsrc->possible_caps,
|
|
|
|
|
GST_CAPS_INTERSECT_FIRST);
|
gst: pipewiresrc: Fixate caps if intersect did not return fixated caps
We might end up in a situation where depending on the pipeline,
intersect might not give us fixated caps.
Possible example of such a pipeline can be below.
gst-launch-1.0 -e pipewiresrc target-object=<path> ! audioconvert !
audio/x-raw,format=S16LE,rate=48000,channels=2 ! lamemp3enc !
filesink location=test.mp3
This results in non-fixated caps like below when intersecting caps from
format param and possible_caps which depends on what we have downstream
in the pipeline.
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2, channel-mask=(bitmask)0x0000000000000003;
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2
To fix this, fixate the caps explicitly.
2025-03-19 19:54:46 +05:30
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We expect pw_peer_caps to be fixed caps as we receive that from
|
|
|
|
|
* PipeWire. See pw_context_find_format() and SPA_PARAM_Format.
|
|
|
|
|
* possible_caps can be non-fixated caps based on what is downstream
|
|
|
|
|
* in the pipeline.
|
|
|
|
|
*
|
|
|
|
|
* The intersection result above might give us non-fixated caps. A
|
|
|
|
|
* possible scenario for this is the below pipeline.
|
|
|
|
|
* pipewiresrc ! audioconvert ! audio/x-raw,rate=44100,channels=2 ! ..
|
|
|
|
|
*
|
|
|
|
|
* So we fixate the caps explicitly here.
|
|
|
|
|
*/
|
|
|
|
|
pwsrc->caps = gst_caps_fixate (pwsrc->caps);
|
2024-05-28 16:59:01 +02:00
|
|
|
gst_caps_maybe_fixate_dma_format (pwsrc->caps);
|
|
|
|
|
}
|
2017-05-17 17:24:25 +08:00
|
|
|
|
gst: pipewiresrc: Fixate caps if intersect did not return fixated caps
We might end up in a situation where depending on the pipeline,
intersect might not give us fixated caps.
Possible example of such a pipeline can be below.
gst-launch-1.0 -e pipewiresrc target-object=<path> ! audioconvert !
audio/x-raw,format=S16LE,rate=48000,channels=2 ! lamemp3enc !
filesink location=test.mp3
This results in non-fixated caps like below when intersecting caps from
format param and possible_caps which depends on what we have downstream
in the pipeline.
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2, channel-mask=(bitmask)0x0000000000000003;
audio/x-raw, layout=(string)interleaved, format=(string)S16LE, rate=(int)48000, channels=(int)2
To fix this, fixate the caps explicitly.
2025-03-19 19:54:46 +05:30
|
|
|
if (pwsrc->caps) {
|
|
|
|
|
g_return_if_fail (gst_caps_is_fixed (pwsrc->caps));
|
|
|
|
|
|
2024-02-02 02:20:29 +01:00
|
|
|
pwsrc->negotiated = TRUE;
|
2023-02-03 13:02:49 +08:00
|
|
|
|
2024-06-11 15:09:28 +02:00
|
|
|
structure = gst_caps_get_structure (pwsrc->caps, 0);
|
|
|
|
|
if (g_str_has_prefix (gst_structure_get_name (structure), "video/") ||
|
|
|
|
|
g_str_has_prefix (gst_structure_get_name (structure), "image/")) {
|
2024-05-27 15:59:25 +03:00
|
|
|
pwsrc->is_video = TRUE;
|
|
|
|
|
|
2024-02-02 02:20:29 +01:00
|
|
|
#ifdef HAVE_GSTREAMER_DMA_DRM
|
2024-05-28 16:46:46 +02:00
|
|
|
if (gst_video_is_dma_drm_caps (pwsrc->caps)) {
|
|
|
|
|
if (!gst_video_info_dma_drm_from_caps (&pwsrc->drm_info, pwsrc->caps)) {
|
|
|
|
|
GST_WARNING_OBJECT (pwsrc, "Can't create drm video info from caps");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_set_error (pwsrc->stream->pwstream, -EINVAL, "internal error");
|
2024-05-28 16:46:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!gst_video_info_dma_drm_to_video_info (&pwsrc->drm_info,
|
|
|
|
|
&pwsrc->video_info)) {
|
|
|
|
|
GST_WARNING_OBJECT (pwsrc, "Can't create video info from drm video info");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_set_error (pwsrc->stream->pwstream, -EINVAL, "internal error");
|
2024-05-28 16:46:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
gst_video_info_dma_drm_init (&pwsrc->drm_info);
|
2024-02-02 02:20:29 +01:00
|
|
|
#endif
|
2024-06-11 15:09:28 +02:00
|
|
|
gst_video_info_from_caps (&pwsrc->video_info, pwsrc->caps);
|
2024-02-02 02:20:29 +01:00
|
|
|
#ifdef HAVE_GSTREAMER_DMA_DRM
|
2024-06-11 15:21:04 +02:00
|
|
|
}
|
2024-02-02 02:20:29 +01:00
|
|
|
#endif
|
2025-03-25 10:16:47 +00:00
|
|
|
} else {
|
|
|
|
|
/* Don't provide bufferpool for audio if not requested by the
|
|
|
|
|
* application/user */
|
|
|
|
|
if (pwsrc->use_bufferpool != USE_BUFFERPOOL_YES)
|
|
|
|
|
pwsrc->use_bufferpool = USE_BUFFERPOOL_NO;
|
2024-06-11 15:21:04 +02:00
|
|
|
}
|
2024-02-02 02:20:29 +01:00
|
|
|
} else {
|
|
|
|
|
pwsrc->negotiated = FALSE;
|
|
|
|
|
pwsrc->is_video = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pwsrc->caps) {
|
2022-12-03 23:20:52 +01:00
|
|
|
const struct spa_pod *params[4];
|
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);
|
2023-01-05 15:08:17 +01:00
|
|
|
int buffertypes;
|
|
|
|
|
|
2023-01-11 22:48:36 +01:00
|
|
|
buffertypes = (1<<SPA_DATA_DmaBuf);
|
2024-02-02 02:20:29 +01:00
|
|
|
if (!spa_pod_find_prop (param, NULL, SPA_FORMAT_VIDEO_modifier)) {
|
2023-01-11 22:48:36 +01:00
|
|
|
buffertypes |= ((1<<SPA_DATA_MemFd) | (1<<SPA_DATA_MemPtr));
|
2023-01-05 15:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pwsrc, "we got format %" GST_PTR_FORMAT, pwsrc->caps);
|
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),
|
2025-03-26 09:52:22 +01:00
|
|
|
SPA_PARAM_BUFFERS_size, SPA_POD_CHOICE_RANGE_Int(0, 1, INT32_MAX),
|
2019-12-18 11:29:11 +01:00
|
|
|
SPA_PARAM_BUFFERS_stride, SPA_POD_CHOICE_RANGE_Int(0, 0, INT32_MAX),
|
2023-01-05 15:08:17 +01:00
|
|
|
SPA_PARAM_BUFFERS_dataType, SPA_POD_CHOICE_FLAGS_Int(buffertypes));
|
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)));
|
2020-07-31 11:44:46 +02:00
|
|
|
params[2] = spa_pod_builder_add_object (&b,
|
|
|
|
|
SPA_TYPE_OBJECT_ParamMeta, SPA_PARAM_Meta,
|
|
|
|
|
SPA_PARAM_META_type, SPA_POD_Id(SPA_META_VideoCrop),
|
|
|
|
|
SPA_PARAM_META_size, SPA_POD_Int(sizeof (struct spa_meta_region)));
|
2022-12-03 23:20:52 +01:00
|
|
|
params[3] = spa_pod_builder_add_object (&b,
|
|
|
|
|
SPA_TYPE_OBJECT_ParamMeta, SPA_PARAM_Meta,
|
|
|
|
|
SPA_PARAM_META_type, SPA_POD_Id(SPA_META_VideoTransform),
|
|
|
|
|
SPA_PARAM_META_size, SPA_POD_Int(sizeof (struct spa_meta_videotransform)));
|
2016-09-30 17:07:38 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "doing finish format");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_update_params (pwsrc->stream->pwstream, params, SPA_N_ELEMENTS(params));
|
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");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_stream_set_error (pwsrc->stream->pwstream, -EINVAL, "unhandled format");
|
2016-09-22 08:55:30 +02:00
|
|
|
}
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (pwsrc->stream->core->loop, FALSE);
|
2016-07-28 21:19:20 +02:00
|
|
|
}
|
|
|
|
|
|
2024-03-15 17:29:03 +01:00
|
|
|
static void
|
|
|
|
|
on_param_changed (void *data, uint32_t id,
|
|
|
|
|
const struct spa_pod *param)
|
|
|
|
|
{
|
|
|
|
|
GstPipeWireSrc *pwsrc = data;
|
|
|
|
|
switch (id) {
|
|
|
|
|
case SPA_PARAM_Format:
|
|
|
|
|
handle_format_change(pwsrc, param);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "setting flushing");
|
|
|
|
|
pwsrc->flushing = TRUE;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (pwsrc->stream->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (pwsrc->stream->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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
GST_DEBUG_OBJECT (pwsrc, "unsetting flushing");
|
|
|
|
|
pwsrc->flushing = FALSE;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->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);
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-13 20:20:34 +02:00
|
|
|
static void
|
|
|
|
|
gst_pipewire_src_get_times (GstBaseSrc * basesrc, GstBuffer * buffer,
|
|
|
|
|
GstClockTime * start, GstClockTime * end)
|
|
|
|
|
{
|
|
|
|
|
GstPipeWireSrc *pwsrc = GST_PIPEWIRE_SRC (basesrc);
|
|
|
|
|
|
|
|
|
|
/* for live sources, sync on the timestamp of the buffer */
|
|
|
|
|
if (gst_base_src_is_live (basesrc)) {
|
|
|
|
|
GstClockTime timestamp = GST_BUFFER_PTS (buffer);
|
|
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
|
|
|
|
|
/* get duration to calculate end time */
|
|
|
|
|
GstClockTime duration = GST_BUFFER_DURATION (buffer);
|
|
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (duration)) {
|
|
|
|
|
*end = timestamp + duration;
|
|
|
|
|
}
|
|
|
|
|
*start = timestamp;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
*start = GST_CLOCK_TIME_NONE;
|
|
|
|
|
*end = GST_CLOCK_TIME_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (pwsrc, "start %" GST_TIME_FORMAT " (%" G_GUINT64_FORMAT
|
|
|
|
|
"), end %" GST_TIME_FORMAT " (%" G_GUINT64_FORMAT ")",
|
|
|
|
|
GST_TIME_ARGS (*start), *start, GST_TIME_ARGS (*end), *end);
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2017-08-04 10:18:54 +02:00
|
|
|
const char *error = NULL;
|
2018-08-13 12:07:05 +02:00
|
|
|
GstBuffer *buf;
|
2020-07-14 13:54:21 +02:00
|
|
|
gboolean update_time = FALSE, timeout = FALSE;
|
2023-04-14 10:42:01 +02:00
|
|
|
GstCaps *caps = NULL;
|
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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2017-05-23 19:15:33 +02:00
|
|
|
if (!pwsrc->negotiated)
|
2015-04-28 17:36:44 +02:00
|
|
|
goto not_negotiated;
|
|
|
|
|
|
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;
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
state = pw_stream_get_state (pwsrc->stream->pwstream, &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;
|
|
|
|
|
|
2023-11-02 09:58:37 +01:00
|
|
|
if (state == PW_STREAM_STATE_UNCONNECTED)
|
2015-05-15 15:58:13 +02:00
|
|
|
goto streaming_stopped;
|
|
|
|
|
|
2023-04-14 10:42:01 +02:00
|
|
|
if ((caps = pwsrc->caps) != NULL) {
|
|
|
|
|
pwsrc->caps = NULL;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2023-04-14 10:42:01 +02:00
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pwsrc, "set format %" GST_PTR_FORMAT, caps);
|
|
|
|
|
gst_base_src_set_caps (GST_BASE_SRC (pwsrc), caps);
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2023-04-14 10:42:01 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2020-07-14 13:54:21 +02:00
|
|
|
update_time = TRUE;
|
2020-07-14 14:15:55 +02:00
|
|
|
GST_LOG_OBJECT (pwsrc, "EOS, send last buffer");
|
2015-08-25 16:36:01 +02:00
|
|
|
break;
|
2020-07-14 13:54:21 +02:00
|
|
|
} else if (timeout) {
|
|
|
|
|
if (pwsrc->last_buffer != NULL) {
|
|
|
|
|
update_time = TRUE;
|
|
|
|
|
buf = gst_buffer_ref(pwsrc->last_buffer);
|
2020-07-14 14:15:55 +02:00
|
|
|
GST_LOG_OBJECT (pwsrc, "timeout, send keepalive buffer");
|
2020-07-14 13:54:21 +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) {
|
2022-05-31 02:33:21 -06:00
|
|
|
if (pwsrc->resend_last || pwsrc->keepalive_time > 0)
|
2020-07-13 12:11:34 +02:00
|
|
|
gst_buffer_replace (&pwsrc->last_buffer, buf);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-14 13:54:21 +02:00
|
|
|
timeout = FALSE;
|
|
|
|
|
if (pwsrc->keepalive_time > 0) {
|
2020-07-14 17:25:13 +02:00
|
|
|
struct timespec abstime;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_get_time(pwsrc->stream->core->loop, &abstime,
|
2022-05-31 02:33:21 -06:00
|
|
|
pwsrc->keepalive_time * SPA_NSEC_PER_MSEC);
|
2024-05-29 17:56:38 +03:00
|
|
|
if (pw_thread_loop_timed_wait_full (pwsrc->stream->core->loop, &abstime) == -ETIMEDOUT)
|
2020-07-14 13:54:21 +02:00
|
|
|
timeout = TRUE;
|
|
|
|
|
} else {
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_wait (pwsrc->stream->core->loop);
|
2020-07-14 13:54:21 +02:00
|
|
|
}
|
2015-05-15 15:58:13 +02:00
|
|
|
}
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2016-04-29 16:51:56 +02:00
|
|
|
|
2022-08-20 00:19:42 -06:00
|
|
|
*buffer = buf;
|
2018-08-13 12:07:05 +02:00
|
|
|
|
2020-07-14 13:54:21 +02:00
|
|
|
if (update_time) {
|
2023-04-13 20:20:34 +02:00
|
|
|
GstClock *clock;
|
|
|
|
|
GstClockTime pts, dts;
|
|
|
|
|
|
|
|
|
|
clock = gst_element_get_clock (GST_ELEMENT_CAST (pwsrc));
|
2020-07-13 12:11:34 +02:00
|
|
|
if (clock != NULL) {
|
|
|
|
|
pts = dts = gst_clock_get_time (clock);
|
|
|
|
|
gst_object_unref (clock);
|
|
|
|
|
} else {
|
|
|
|
|
pts = dts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
}
|
2016-04-28 16:42:25 +02:00
|
|
|
|
2023-04-13 20:20:34 +02:00
|
|
|
GST_BUFFER_PTS (*buffer) = pts;
|
|
|
|
|
GST_BUFFER_DTS (*buffer) = dts;
|
2016-04-28 16:42:25 +02:00
|
|
|
|
2023-04-13 20:20:34 +02:00
|
|
|
GST_LOG_OBJECT (pwsrc, "Sending keepalive buffer pts/dts: %" GST_TIME_FORMAT
|
|
|
|
|
" (%" G_GUINT64_FORMAT ")", GST_TIME_ARGS (pts), pts);
|
|
|
|
|
}
|
2015-04-28 17:36:44 +02:00
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
|
|
not_negotiated:
|
|
|
|
|
{
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2015-04-28 17:36:44 +02:00
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
|
}
|
2020-07-13 12:11:34 +02:00
|
|
|
streaming_eos:
|
|
|
|
|
{
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
return GST_FLOW_EOS;
|
|
|
|
|
}
|
2015-06-12 12:10:27 +02:00
|
|
|
streaming_error:
|
|
|
|
|
{
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2015-06-12 12:10:27 +02:00
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
|
}
|
2015-05-15 15:58:13 +02:00
|
|
|
streaming_stopped:
|
|
|
|
|
{
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->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
|
|
|
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (pwsrc->stream->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
pwsrc->eos = false;
|
|
|
|
|
gst_buffer_replace (&pwsrc->last_buffer, NULL);
|
2020-08-06 13:03:40 +02:00
|
|
|
gst_caps_replace(&pwsrc->caps, NULL);
|
2025-03-25 16:24:48 +05:30
|
|
|
gst_caps_replace(&pwsrc->possible_caps, NULL);
|
2024-07-02 12:13:34 +02:00
|
|
|
pwsrc->transform_value = UINT32_MAX;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (pwsrc->stream->core->loop);
|
2015-08-24 16:55:29 +02:00
|
|
|
|
2015-04-28 17:36:44 +02: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
|
|
|
};
|
|
|
|
|
|
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");
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (this->stream->core->loop);
|
2020-07-13 12:11:34 +02:00
|
|
|
this->eos = true;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_signal (this->stream->core->loop, FALSE);
|
|
|
|
|
pw_thread_loop_unlock (this->stream->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:
|
2024-05-29 17:56:38 +03:00
|
|
|
if (!gst_pipewire_stream_open (this->stream, &stream_events))
|
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 */
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (this->stream->core->loop);
|
2024-06-17 11:03:41 +02:00
|
|
|
pw_stream_set_active (this->stream->pwstream, true);
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (this->stream->core->loop);
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
|
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
|
|
|
/* stop recording ASAP by corking */
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (this->stream->core->loop);
|
2024-06-17 11:03:41 +02:00
|
|
|
pw_stream_set_active (this->stream->pwstream, false);
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (this->stream->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:
|
2020-08-06 13:03:40 +02:00
|
|
|
if (wait_started (this) == PW_STREAM_STATE_ERROR)
|
2016-09-16 13:13:41 +02:00
|
|
|
goto open_failed;
|
|
|
|
|
|
2024-06-17 11:03:41 +02:00
|
|
|
pw_thread_loop_lock (this->stream->core->loop);
|
|
|
|
|
/* the initial stream state is active, which is needed for linking and
|
|
|
|
|
* negotiation to happen and the bufferpool to be set up. We don't know
|
|
|
|
|
* if we'll go to playing, so we deactivate the stream until that
|
|
|
|
|
* transition happens. This is janky, but because of how bins propagate
|
|
|
|
|
* state changes one transition at a time, there may not be a better way
|
|
|
|
|
* to do this. */
|
|
|
|
|
pw_stream_set_active (this->stream->pwstream, false);
|
|
|
|
|
pw_thread_loop_unlock (this->stream->core->loop);
|
|
|
|
|
|
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:
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_lock (this->stream->core->loop);
|
2015-05-14 17:46:12 +02:00
|
|
|
this->negotiated = FALSE;
|
2024-05-29 17:56:38 +03:00
|
|
|
pw_thread_loop_unlock (this->stream->core->loop);
|
2015-04-28 17:36:44 +02:00
|
|
|
break;
|
|
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2024-05-29 17:56:38 +03:00
|
|
|
gst_pipewire_stream_close (this->stream);
|
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
|
|
|
}
|