tests: update videorate test for videotestsrc changes

Add color-matrix to the caps we are comparing. Add logging og the caps in the
test.
This commit is contained in:
Stefan Kost 2010-03-15 11:41:35 +02:00
parent 84ed474e6a
commit 412e5f5871

View 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 */