From: Tim-Philipp Müller Date: Thu, 5 Jul 2012 21:57:05 +0000 (+0100) Subject: tests: fix h263p payload ! depayload unit test X-Git-Tag: 1.19.3~509^2~6903 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=76625d20d7ef6b5fb81ddd005c811dd104b22f1c;p=platform%2Fupstream%2Fgstreamer.git 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. --- 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;