tests: update videorate test for videotestsrc changes
authorStefan Kost <ensonic@users.sf.net>
Mon, 15 Mar 2010 09:41:35 +0000 (11:41 +0200)
committerStefan Kost <ensonic@users.sf.net>
Mon, 15 Mar 2010 09:43:23 +0000 (11:43 +0200)
Add color-matrix to the caps we are comparing. Add logging og the caps in the
test.

tests/check/elements/videorate.c

index d07c90c..18284f8 100644 (file)
@@ -58,7 +58,8 @@ static GstPad *mysrcpad, *mysinkpad;
     "width = (int) 240, "               \
     "height = (int) 120, "              \
     "framerate = (fraction) 999/7 , "  \
-    "format = (fourcc) I420"
+    "format = (fourcc) I420, "          \
+    "color-matrix=(string)sdtv"
 
 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
     GST_PAD_SINK,
@@ -745,6 +746,9 @@ GST_START_TEST (test_selected_caps)
   g_object_get (videorate_pad, "caps", &caps, NULL);
   expected_caps = gst_caps_from_string (VIDEO_CAPS_UNUSUAL_FRAMERATE);
 
+  GST_DEBUG ("negotiated caps: %" GST_PTR_FORMAT, caps);
+  GST_DEBUG ("expected caps: %" GST_PTR_FORMAT, expected_caps);
+
   fail_unless (gst_caps_is_equal (expected_caps, caps));
 
   /* cleanup */