mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
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.
This commit is contained in:
parent
16b8e2d171
commit
76625d20d7
1 changed files with 2 additions and 2 deletions
|
@ -478,8 +478,8 @@ static int rtp_h263p_frame_count = 1;
|
||||||
GST_START_TEST (rtp_h263p)
|
GST_START_TEST (rtp_h263p)
|
||||||
{
|
{
|
||||||
rtp_pipeline_test (rtp_h263p_frame_data, rtp_h263p_frame_data_size,
|
rtp_pipeline_test (rtp_h263p_frame_data, rtp_h263p_frame_data_size,
|
||||||
rtp_h263p_frame_count, "video/x-h263,variant=(string)itu", "rtph263ppay",
|
rtp_h263p_frame_count, "video/x-h263,variant=(string)itu,"
|
||||||
"rtph263pdepay", 0, 0, FALSE);
|
"h263version=(string)h263", "rtph263ppay", "rtph263pdepay", 0, 0, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_END_TEST;
|
GST_END_TEST;
|
||||||
|
|
Loading…
Reference in a new issue