mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
qtdemux: Handle closed captions as subtitle streams
This commit is contained in:
parent
3f360e8f15
commit
5e4f215bfb
1 changed files with 2 additions and 1 deletions
|
@ -8518,7 +8518,8 @@ gst_qtdemux_add_stream (GstQTDemux * qtdemux,
|
|||
} else if (stream->subtype == FOURCC_strm) {
|
||||
GST_DEBUG_OBJECT (qtdemux, "stream type, not creating pad");
|
||||
} else if (stream->subtype == FOURCC_subp || stream->subtype == FOURCC_text
|
||||
|| stream->subtype == FOURCC_sbtl || stream->subtype == FOURCC_subt) {
|
||||
|| stream->subtype == FOURCC_sbtl || stream->subtype == FOURCC_subt
|
||||
|| stream->subtype == FOURCC_clcp) {
|
||||
gchar *name = g_strdup_printf ("subtitle_%u", qtdemux->n_sub_streams);
|
||||
|
||||
stream->pad =
|
||||
|
|
Loading…
Reference in a new issue