Lines Matching refs:rtp
31 GstRTPBuffer rtp = GST_RTP_BUFFER_INIT; in make_fec_sample() local
37 fail_unless (gst_rtp_buffer_map (ret, GST_MAP_WRITE, &rtp)); in make_fec_sample()
39 data = gst_rtp_buffer_get_payload (&rtp); in make_fec_sample()
64 gst_rtp_buffer_set_payload_type (&rtp, 96); in make_fec_sample()
65 gst_rtp_buffer_set_seq (&rtp, seq); in make_fec_sample()
66 gst_rtp_buffer_set_timestamp (&rtp, ts); in make_fec_sample()
67 gst_rtp_buffer_unmap (&rtp); in make_fec_sample()
76 GstRTPBuffer rtp = GST_RTP_BUFFER_INIT; in make_media_sample() local
81 gst_rtp_buffer_map (ret, GST_MAP_WRITE, &rtp); in make_media_sample()
82 gst_rtp_buffer_set_payload_type (&rtp, 33); in make_media_sample()
83 gst_rtp_buffer_set_seq (&rtp, seq); in make_media_sample()
84 gst_rtp_buffer_set_timestamp (&rtp, ts); in make_media_sample()
85 data = gst_rtp_buffer_get_payload (&rtp); in make_media_sample()
87 gst_rtp_buffer_unmap (&rtp); in make_media_sample()
97 GstRTPBuffer rtp = GST_RTP_BUFFER_INIT; in pull_and_check() local
104 fail_unless (gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp)); in pull_and_check()
106 fail_unless_equals_int (gst_rtp_buffer_get_seq (&rtp), seq); in pull_and_check()
107 fail_unless_equals_int (gst_rtp_buffer_get_timestamp (&rtp), ts); in pull_and_check()
108 fail_unless_equals_int (gst_rtp_buffer_get_payload_type (&rtp), 33); in pull_and_check()
109 fail_unless_equals_int (gst_rtp_buffer_get_payload_len (&rtp), payload_len); in pull_and_check()
110 data = gst_rtp_buffer_get_payload (&rtp); in pull_and_check()
115 gst_rtp_buffer_unmap (&rtp); in pull_and_check()