From 76625d20d7ef6b5fb81ddd005c811dd104b22f1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 5 Jul 2012 22:57:05 +0100 Subject: [PATCH] tests: fix h263p payload ! depayload unit test Need to add h263version field to input caps since the payloader sink get_caps function will contain it in the the caps, and the stricter caps subset check requires this to be present in the input caps as well then. --- tests/check/elements/rtp-payloading.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/elements/rtp-payloading.c b/tests/check/elements/rtp-payloading.c index ab3fbab..6e096c6 100644 --- a/tests/check/elements/rtp-payloading.c +++ b/tests/check/elements/rtp-payloading.c @@ -478,8 +478,8 @@ static int rtp_h263p_frame_count = 1; GST_START_TEST (rtp_h263p) { rtp_pipeline_test (rtp_h263p_frame_data, rtp_h263p_frame_data_size, - rtp_h263p_frame_count, "video/x-h263,variant=(string)itu", "rtph263ppay", - "rtph263pdepay", 0, 0, FALSE); + rtp_h263p_frame_count, "video/x-h263,variant=(string)itu," + "h263version=(string)h263", "rtph263ppay", "rtph263pdepay", 0, 0, FALSE); } GST_END_TEST; -- 2.7.4