mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
webvttenc: Separate cues with two line breaks instead of one.
See http://dev.w3.org/html5/webvtt/#syntax https://bugzilla.gnome.org/show_bug.cgi?id=703673
This commit is contained in:
parent
5ad6f2d4a0
commit
f53e66f4c6
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ gst_webvtt_enc_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
|
|||
gst_buffer_unmap (buf, &map_info);
|
||||
}
|
||||
|
||||
g_string_append_c (s, '\n');
|
||||
g_string_append (s, "\n\n");
|
||||
|
||||
buf_size = s->len;
|
||||
new_buffer = gst_buffer_new_wrapped (g_string_free (s, FALSE), buf_size);
|
||||
|
|
Loading…
Reference in a new issue