mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +00:00
discoverer: consider subtitles as raw
Otherwise, discoverer will generated an "inner" codec where there can be a tranformation (eg, kate -> DVD SPU, and various ->text/x-pango-markup). https://bugzilla.gnome.org/show_bug.cgi?id=639055
This commit is contained in:
parent
143a620701
commit
e51cbc136b
1 changed files with 3 additions and 0 deletions
|
@ -842,6 +842,9 @@ child_is_raw_stream (GstCaps * parent, GstCaps * child)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (is_subtitle_caps (parent))
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue