From 66c1292cac99bcfcab345712fe4a63bea3bb21a2 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Tue, 2 Feb 2010 11:34:10 +0100 Subject: [PATCH] tests: enable strict discontinuity checking on vorbisdec pipeline Closes #423086. --- tests/check/pipelines/vorbisdec.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/check/pipelines/vorbisdec.c b/tests/check/pipelines/vorbisdec.c index 9d46760755..751e79a82d 100644 --- a/tests/check/pipelines/vorbisdec.c +++ b/tests/check/pipelines/vorbisdec.c @@ -79,14 +79,7 @@ GST_START_TEST (test_timestamps) gst_element_set_state (pipeline, GST_STATE_NULL); - /* FIXME: there seems to be a bug in vorbisdec on decoding the last packet - * where it calculates the timestamp based on the granulepos of the incoming - * packet and subtracting the number of samples it can decode, which can - * result in a discontinuity in timestamps. - * See http://bugzilla.gnome.org/show_bug.cgi?id=423086 - * Fix that bug and drop this number to 0. - */ - fail_if (messages > 1, "Received imperfect timestamp messages"); + fail_if (messages > 0, "Received imperfect timestamp messages"); gst_object_unref (pipeline); }