plugins/elements/gsttypefindelement.c: Use gst_pad_check_pull_range() before _activate_pull() to avoid unnecessary op...

Original commit message from CVS:
* plugins/elements/gsttypefindelement.c:
(gst_type_find_element_activate):
Use gst_pad_check_pull_range() before _activate_pull()
to avoid unnecessary open/close (see #331690).
This commit is contained in:
Tim-Philipp Müller 2006-02-26 14:42:29 +00:00
parent ae0d1ee4a9
commit e203621dcb
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2006-02-26 Tim-Philipp Müller <tim at centricular dot net>
* plugins/elements/gsttypefindelement.c:
(gst_type_find_element_activate):
Use gst_pad_check_pull_range() before _activate_pull()
to avoid unnecessary open/close (see #331690).
2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstutils.c:

View file

@ -875,7 +875,7 @@ gst_type_find_element_activate (GstPad * pad)
*/
/* 1 */
if (!gst_pad_activate_pull (pad, TRUE)) {
if (!gst_pad_check_pull_range (pad) || !gst_pad_activate_pull (pad, TRUE)) {
start_typefinding (typefind);
return gst_pad_activate_push (pad, TRUE);
}