mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
matroskamux: send stream-start
This commit is contained in:
parent
bc37b9f4fc
commit
154404fa43
1 changed files with 6 additions and 0 deletions
|
@ -2467,6 +2467,7 @@ gst_matroska_mux_start (GstMatroskaMux * mux)
|
|||
GstClockTime duration = 0;
|
||||
guint32 segment_uid[4];
|
||||
GTimeVal time = { 0, 0 };
|
||||
gchar s_id[32];
|
||||
#if 0
|
||||
GstToc *toc;
|
||||
#endif
|
||||
|
@ -2495,6 +2496,11 @@ gst_matroska_mux_start (GstMatroskaMux * mux)
|
|||
gst_query_unref (query);
|
||||
}
|
||||
|
||||
/* stream-start (FIXME: create id based on input ids) */
|
||||
g_snprintf (s_id, sizeof (s_id), "matroskamux-%08x", g_random_int ());
|
||||
gst_pad_push_event (mux->srcpad, gst_event_new_stream_start (s_id));
|
||||
|
||||
/* output caps */
|
||||
audio_only = mux->num_v_streams == 0 && mux->num_a_streams > 0;
|
||||
if (!strcmp (mux->doctype, GST_MATROSKA_DOCTYPE_WEBM)) {
|
||||
media_type = (audio_only) ? "audio/webm" : "video/webm";
|
||||
|
|
Loading…
Reference in a new issue