tests/webrtc: also check valid mline for srcpad codec-preferences negotiation

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1664>
This commit is contained in:
Matthew Waters 2021-11-03 21:18:53 +11:00 committed by GStreamer Marge Bot
parent 2aeca9ed84
commit e18ee04cd2

View file

@ -4323,6 +4323,22 @@ GST_START_TEST (test_codec_preferences_negotiation_srcpad)
test_webrtc_reset_negotiation (t);
test_validate_sdp_full (t, &offer, &answer_non_reject, 0, FALSE);
/* check that the mid/mline is correct */
{
GstWebRTCRTPTransceiver *rtp_trans;
GstPad *srcpad;
guint mline;
srcpad = gst_pad_get_peer (sink_harness->sinkpad);
fail_unless (srcpad != NULL);
g_object_get (srcpad, "transceiver", &rtp_trans, NULL);
gst_clear_object (&srcpad);
fail_unless (rtp_trans != NULL);
g_object_get (rtp_trans, "mlineindex", &mline, NULL);
gst_clear_object (&rtp_trans);
fail_unless_equals_int (mline, 0);
}
test_webrtc_free (t);
}