playsink: only add text overlay if vido sink also accepts raw caps

Fixes regression, pipeline fails with not negotiated, on media
containing subtitles when decoder/sink with custom caps is used.
This commit is contained in:
Josep Torra 2011-09-07 16:04:43 +02:00
parent 46e26824d4
commit a22faad18a

View file

@ -2114,7 +2114,8 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
GST_OBJECT_UNLOCK (playsink);
/* figure out which components we need */
if (flags & GST_PLAY_FLAG_TEXT && playsink->text_pad) {
if (flags & GST_PLAY_FLAG_TEXT && playsink->video_pad_raw
&& playsink->text_pad) {
/* we have subtitles and we are requested to show it */
need_text = TRUE;
}