summaryrefslogtreecommitdiff
path: root/gst/rtmp2
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jsteffens@make.tv>2020-01-27 16:30:20 +0100
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-02-21 15:20:41 +0000
commit0c344a7efb30d9f6433beb5c4d4cb8db2fd02ffc (patch)
treeabb75d84046e75c15c954f37ed3b442b07dd3bf7 /gst/rtmp2
parentf7bb2cdeb7a7eff3994187efc4c9f293660165f6 (diff)
downloadgstreamer-plugins-bad-0c344a7efb30d9f6433beb5c4d4cb8db2fd02ffc.tar.gz
rtmp2sink: Add a property for the outgoing chunk size
Diffstat (limited to 'gst/rtmp2')
-rw-r--r--gst/rtmp2/gstrtmp2sink.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/gst/rtmp2/gstrtmp2sink.c b/gst/rtmp2/gstrtmp2sink.c
index c1db05408..162a25b7d 100644
--- a/gst/rtmp2/gstrtmp2sink.c
+++ b/gst/rtmp2/gstrtmp2sink.c
@@ -65,6 +65,7 @@ typedef struct
GstRtmpLocation location;
gboolean async_connect;
guint peak_kbps;
+ guint32 chunk_size;
/* If both self->lock and OBJECT_LOCK are needed,
* self->lock must be taken first */
@@ -120,6 +121,7 @@ static void connect_task_done (GObject * object, GAsyncResult * result,
gpointer user_data);
static void set_pacing_rate (GstRtmp2Sink * self);
+static void set_chunk_size (GstRtmp2Sink * self);
enum
{
@@ -138,6 +140,7 @@ enum
PROP_TLS_VALIDATION_FLAGS,
PROP_ASYNC_CONNECT,
PROP_PEAK_KBPS,
+ PROP_CHUNK_SIZE,
};
/* pad templates */
@@ -206,6 +209,12 @@ gst_rtmp2_sink_class_init (GstRtmp2SinkClass * klass)
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
GST_PARAM_MUTABLE_PLAYING));
+ g_object_class_install_property (gobject_class, PROP_CHUNK_SIZE,
+ g_param_spec_uint ("chunk-size", "Chunk size", "RTMP chunk size",
+ GST_RTMP_MINIMUM_CHUNK_SIZE, GST_RTMP_MAXIMUM_CHUNK_SIZE,
+ GST_RTMP_DEFAULT_CHUNK_SIZE, G_PARAM_READWRITE |
+ G_PARAM_STATIC_STRINGS | GST_PARAM_MUTABLE_PLAYING));
+
GST_DEBUG_CATEGORY_INIT (gst_rtmp2_sink_debug_category, "rtmp2sink", 0,
"debug category for rtmp2sink element");
}
@@ -215,6 +224,7 @@ gst_rtmp2_sink_init (GstRtmp2Sink * self)
{
self->location.flash_ver = g_strdup ("FMLE/3.0 (compatible; FMSc/1.0)");
self->async_connect = TRUE;
+ self->chunk_size = GST_RTMP_DEFAULT_CHUNK_SIZE;
g_mutex_init (&self->lock);
g_cond_init (&self->cond);
@@ -320,6 +330,16 @@ gst_rtmp2_sink_set_property (GObject * object, guint property_id,
set_pacing_rate (self);
g_mutex_unlock (&self->lock);
break;
+ case PROP_CHUNK_SIZE:
+ g_mutex_lock (&self->lock);
+
+ GST_OBJECT_LOCK (self);
+ self->chunk_size = g_value_get_uint (value);
+ GST_OBJECT_UNLOCK (self);
+
+ set_chunk_size (self);
+ g_mutex_unlock (&self->lock);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
@@ -404,6 +424,11 @@ gst_rtmp2_sink_get_property (GObject * object, guint property_id,
g_value_set_uint (value, self->peak_kbps);
GST_OBJECT_UNLOCK (self);
break;
+ case PROP_CHUNK_SIZE:
+ GST_OBJECT_LOCK (self);
+ g_value_set_uint (value, self->chunk_size);
+ GST_OBJECT_UNLOCK (self);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
@@ -1006,6 +1031,7 @@ connect_task_done (GObject * object, GAsyncResult * result, gpointer user_data)
self->connection = g_task_propagate_pointer (task, &error);
if (self->connection) {
set_pacing_rate (self);
+ set_chunk_size (self);
gst_rtmp_connection_set_output_handler (self->connection,
put_chunk, g_object_ref (self), g_object_unref);
g_signal_connect_object (self->connection, "error",
@@ -1061,3 +1087,19 @@ set_pacing_rate (GstRtmp2Sink * self)
g_clear_error (&error);
}
+
+static void
+set_chunk_size (GstRtmp2Sink * self)
+{
+ guint32 chunk_size;
+
+ if (!self->connection)
+ return;
+
+ GST_OBJECT_LOCK (self);
+ chunk_size = self->chunk_size;
+ GST_OBJECT_UNLOCK (self);
+
+ gst_rtmp_connection_set_chunk_size (self->connection, chunk_size);
+ GST_INFO_OBJECT (self, "Set chunk size to %" G_GUINT32_FORMAT, chunk_size);
+}