matroska-mux: Add a timestamp-offset property

Adds a user-controllable timestamp offset to clusters and blocks. This
should be useful if we want to have timestamps that have significance
outside of the current file (for example, we might set the offset to the
wallclock when the file is being created, or some other common base, if
we want to correlate streams across multiple files).

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1051>
This commit is contained in:
Arun Raghavan 2021-08-12 11:03:58 -04:00
parent 508a565163
commit 2c6be7373f
3 changed files with 42 additions and 0 deletions

View file

@ -9120,6 +9120,20 @@
}
},
"properties": {
"cluster-timestamp-offset": {
"blurb": "An offset to add to all clusters/blocks (in nanoseconds)",
"conditionally-available": false,
"construct": false,
"construct-only": false,
"controllable": false,
"default": "0",
"max": "18446744073709551615",
"min": "0",
"mutable": "null",
"readable": true,
"type": "guint64",
"writable": true
},
"creation-time": {
"blurb": "Date and time of creation. This will be used for the DateUTC field. NULL means that the current time will be used.",
"conditionally-available": false,

View file

@ -76,6 +76,7 @@ enum
PROP_MAX_CLUSTER_DURATION,
PROP_OFFSET_TO_ZERO,
PROP_CREATION_TIME,
PROP_CLUSTER_TIMESTAMP_OFFSET,
};
#define DEFAULT_DOCTYPE_VERSION 2
@ -86,6 +87,7 @@ enum
#define DEFAULT_MIN_CLUSTER_DURATION 500 * GST_MSECOND
#define DEFAULT_MAX_CLUSTER_DURATION 65535 * GST_MSECOND
#define DEFAULT_OFFSET_TO_ZERO FALSE
#define DEFAULT_CLUSTER_TIMESTAMP_OFFSET 0
/* WAVEFORMATEX is gst_riff_strf_auds + an extra guint16 extension size */
#define WAVEFORMATEX_SIZE (2 + sizeof (gst_riff_strf_auds))
@ -380,6 +382,20 @@ gst_matroska_mux_class_init (GstMatroskaMuxClass * klass)
" NULL means that the current time will be used.",
G_TYPE_DATE_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/**
* GstMatroskaMux:cluster-timestamp-offset:
*
* An offset to add to all clusters/blocks (in nanoseconds)
*
* Since: 1.20
*/
g_object_class_install_property (gobject_class, PROP_CLUSTER_TIMESTAMP_OFFSET,
g_param_spec_uint64 ("cluster-timestamp-offset",
"Cluster timestamp offset",
"An offset to add to all clusters/blocks (in nanoseconds)", 0,
G_MAXUINT64, DEFAULT_CLUSTER_TIMESTAMP_OFFSET,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
gstelement_class->change_state =
GST_DEBUG_FUNCPTR (gst_matroska_mux_change_state);
gstelement_class->request_new_pad =
@ -508,6 +524,7 @@ gst_matroska_mux_init (GstMatroskaMux * mux, gpointer g_class)
mux->time_scale = DEFAULT_TIMECODESCALE;
mux->min_cluster_duration = DEFAULT_MIN_CLUSTER_DURATION;
mux->max_cluster_duration = DEFAULT_MAX_CLUSTER_DURATION;
mux->cluster_timestamp_offset = DEFAULT_CLUSTER_TIMESTAMP_OFFSET;
/* initialize internal variables */
mux->index = NULL;
@ -3915,6 +3932,10 @@ gst_matroska_mux_write_data (GstMatroskaMux * mux, GstMatroskaPad * collect_pad,
}
}
/* From this point on we use the buffer_timestamp to do cluster and other
* related arithmetic, so apply the timestamp offset if we have one */
buffer_timestamp += mux->cluster_timestamp_offset;
is_audio_only = (collect_pad->track->type == GST_MATROSKA_TRACK_TYPE_AUDIO) &&
(mux->num_streams == 1);
is_min_duration_reached = (mux->min_cluster_duration == 0
@ -4303,6 +4324,9 @@ gst_matroska_mux_set_property (GObject * object,
g_clear_pointer (&mux->creation_time, g_date_time_unref);
mux->creation_time = g_value_dup_boxed (value);
break;
case PROP_CLUSTER_TIMESTAMP_OFFSET:
mux->cluster_timestamp_offset = g_value_get_uint64 (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@ -4346,6 +4370,9 @@ gst_matroska_mux_get_property (GObject * object,
case PROP_CREATION_TIME:
g_value_set_boxed (value, mux->creation_time);
break;
case PROP_CLUSTER_TIMESTAMP_OFFSET:
g_value_set_uint64 (value, mux->cluster_timestamp_offset);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;

View file

@ -116,6 +116,7 @@ struct _GstMatroskaMux {
/* earliest timestamp (time, ns) if offsetting to zero */
gboolean offset_to_zero;
guint64 cluster_timestamp_offset;
guint64 earliest_time;
/* length, position (time, ns) */
guint64 duration;