Home
last modified time | relevance | path

Searched refs:dtmf_payload (Results 1 – 1 of 1) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/dtmf/
Dgstrtpdtmfdepay.c364 GstRTPDTMFPayload dtmf_payload; in gst_rtp_dtmf_depay_process() local
382 gst_bit_reader_get_bits_uint8 (&bitreader, &dtmf_payload.event, 8); in gst_rtp_dtmf_depay_process()
384 gst_bit_reader_get_bits_uint8 (&bitreader, &dtmf_payload.volume, 6); in gst_rtp_dtmf_depay_process()
385 gst_bit_reader_get_bits_uint16 (&bitreader, &dtmf_payload.duration, 16); in gst_rtp_dtmf_depay_process()
387 if (dtmf_payload.event > MAX_EVENT) in gst_rtp_dtmf_depay_process()
398 if (dtmf_payload.duration % unit_time_clock) { in gst_rtp_dtmf_depay_process()
400 if (dtmf_payload.duration < G_MAXUINT16 - unit_time_clock) in gst_rtp_dtmf_depay_process()
401 dtmf_payload.duration += unit_time_clock - in gst_rtp_dtmf_depay_process()
402 (dtmf_payload.duration % unit_time_clock); in gst_rtp_dtmf_depay_process()
404 dtmf_payload.duration -= dtmf_payload.duration % unit_time_clock; in gst_rtp_dtmf_depay_process()
[all …]