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:
Vincent Penquerc'h 2011-08-24 15:09:47 +01:00 committed by Sebastian Dröge
parent 143a620701
commit e51cbc136b

View file

@ -842,6 +842,9 @@ child_is_raw_stream (GstCaps * parent, GstCaps * child)
return TRUE;
}
if (is_subtitle_caps (parent))
return TRUE;
return FALSE;
}