mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
testsuite/test_event.py: Sinks now send GST_EVENT_LATENCY events upstream. Adapt test for that new behaviour.
Original commit message from CVS: * testsuite/test_event.py: Sinks now send GST_EVENT_LATENCY events upstream. Adapt test for that new behaviour.
This commit is contained in:
parent
bf58e88041
commit
a7d29b2f47
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-12-06 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* testsuite/test_event.py:
|
||||
Sinks now send GST_EVENT_LATENCY events upstream. Adapt test for that
|
||||
new behaviour.
|
||||
|
||||
2008-12-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* Makefile.am:
|
||||
|
|
|
@ -200,6 +200,10 @@ class TestDelayedEventProbe(TestCase):
|
|||
# we also want fakesink to get it
|
||||
return True
|
||||
|
||||
# sinks now send Latency events upstream
|
||||
if event.type == gst.EVENT_LATENCY:
|
||||
return True
|
||||
|
||||
self.fail("Got an unknown event %r" % event)
|
||||
|
||||
def _buffer_probe_cb(self, pad, buffer):
|
||||
|
|
Loading…
Reference in a new issue