mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
qtmux: Initialize caption track language code to 0 instead of "und"
Without this, Final Cut considers it "non-standard" and 0 (english) is a good default for closed captions. https://bugzilla.gnome.org/show_bug.cgi?id=797111
This commit is contained in:
parent
1dc6881a13
commit
54a5b3f845
1 changed files with 5 additions and 0 deletions
|
@ -6073,6 +6073,11 @@ gst_qt_mux_caption_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
|
|||
(SampleTableEntry *) atom_trak_set_caption_type (qtpad->trak,
|
||||
qtmux->context, timescale, fourcc_entry);
|
||||
|
||||
/* Initialize caption track language code to 0 unless something else is
|
||||
* specified. Without this, Final Cut considers it "non-standard"
|
||||
*/
|
||||
qtpad->trak->mdia.mdhd.language_code = 0;
|
||||
|
||||
gst_object_unref (qtmux);
|
||||
return TRUE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue