/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/ |
D | gstrtpbuffer.c | 702 gpointer * data, guint * wordlen) in gst_rtp_buffer_get_extension_data() argument 713 if (wordlen) in gst_rtp_buffer_get_extension_data() 714 *wordlen = GST_READ_UINT16_BE (pdata + 2); in gst_rtp_buffer_get_extension_data() 1476 guint wordlen; in gst_rtp_buffer_get_extension_onebyte_header() local 1479 &wordlen)) in gst_rtp_buffer_get_extension_onebyte_header() 1482 return _get_extension_onebyte_header (pdata, wordlen * 4, bit_pattern, id, in gst_rtp_buffer_get_extension_onebyte_header() 1509 guint wordlen; in gst_rtp_buffer_get_extension_twobytes_header() local 1515 &wordlen)) in gst_rtp_buffer_get_extension_twobytes_header() 1521 bytelen = wordlen * 4; in gst_rtp_buffer_get_extension_twobytes_header() 1564 get_onebyte_header_end_offset (guint8 * pdata, guint wordlen, guint * offset) in get_onebyte_header_end_offset() argument [all …]
|
D | gstrtcpbuffer.c | 2338 gst_rtcp_packet_fb_set_fci_length (GstRTCPPacket * packet, guint16 wordlen) in gst_rtcp_packet_fb_set_fci_length() argument 2348 if (packet->rtcp->map.maxsize < packet->offset + ((wordlen + 3) * 4)) in gst_rtcp_packet_fb_set_fci_length() 2352 wordlen += 2; in gst_rtcp_packet_fb_set_fci_length() 2353 GST_WRITE_UINT16_BE (data, wordlen); in gst_rtcp_packet_fb_set_fci_length() 2355 packet->rtcp->map.size = packet->offset + ((wordlen + 1) * 4); in gst_rtcp_packet_fb_set_fci_length() 2567 gst_rtcp_packet_app_set_data_length (GstRTCPPacket * packet, guint16 wordlen) in gst_rtcp_packet_app_set_data_length() argument 2576 if (packet->rtcp->map.maxsize < packet->offset + ((wordlen + 3) * 4)) in gst_rtcp_packet_app_set_data_length() 2580 wordlen += 2; in gst_rtcp_packet_app_set_data_length() 2581 GST_WRITE_UINT16_BE (data, wordlen); in gst_rtcp_packet_app_set_data_length() 2583 packet->rtcp->map.size = packet->offset + ((wordlen + 1) * 4); in gst_rtcp_packet_app_set_data_length()
|
D | gstrtpbasepayload.c | 1732 guint wordlen; in set_headers() local 1761 wordlen = extlen / 4 + ((extlen % 4) ? 1 : 0); in set_headers() 1765 gst_rtp_buffer_set_extension_data (&rtp, bit_pattern, wordlen); in set_headers() 1767 &wordlen); in set_headers() 1770 hdrext.allocated_size = wordlen * 4; in set_headers() 1776 wordlen = hdrext.written_size / 4 + ((hdrext.written_size % 4) ? 1 : 0); in set_headers() 1780 wordlen * 4 - hdrext.written_size); in set_headers() 1782 gst_rtp_buffer_set_extension_data (&rtp, bit_pattern, wordlen); in set_headers()
|
D | gstrtcpbuffer.h | 521 gboolean gst_rtcp_packet_app_set_data_length (GstRTCPPacket * packet, guint16 wordlen); 550 gboolean gst_rtcp_packet_fb_set_fci_length (GstRTCPPacket *packet, guint16 wordlen);
|
D | gstrtpbuffer.h | 130 gpointer *data, guint *wordlen);
|
D | gstrtpbasedepayload.c | 1149 guint wordlen; in read_rtp_header_extensions() local 1163 &wordlen)) { in read_rtp_header_extensions() 1165 gsize bytelen = wordlen * 4; in read_rtp_header_extensions()
|
/third_party/curl/lib/ |
D | curl_sasl.h | 134 #define sasl_mech_equal(line, wordlen, mech) \ argument 135 (wordlen == (sizeof(mech) - 1) / sizeof(char) && \ 136 !memcmp(line, mech, wordlen))
|
D | imap.c | 908 size_t wordlen; in imap_state_capability_resp() local 920 for(wordlen = 0; line[wordlen] && line[wordlen] != ' ' && in imap_state_capability_resp() 921 line[wordlen] != '\t' && line[wordlen] != '\r' && in imap_state_capability_resp() 922 line[wordlen] != '\n';) in imap_state_capability_resp() 923 wordlen++; in imap_state_capability_resp() 926 if(wordlen == 8 && !memcmp(line, "STARTTLS", 8)) in imap_state_capability_resp() 930 else if(wordlen == 13 && !memcmp(line, "LOGINDISABLED", 13)) in imap_state_capability_resp() 934 else if(wordlen == 7 && !memcmp(line, "SASL-IR", 7)) in imap_state_capability_resp() 938 else if(wordlen > 5 && !memcmp(line, "AUTH=", 5)) { in imap_state_capability_resp() 943 wordlen -= 5; in imap_state_capability_resp() [all …]
|
D | pop3.c | 736 size_t wordlen; in pop3_state_capa_resp() local 751 for(wordlen = 0; wordlen < len && line[wordlen] != ' ' && in pop3_state_capa_resp() 752 line[wordlen] != '\t' && line[wordlen] != '\r' && in pop3_state_capa_resp() 753 line[wordlen] != '\n';) in pop3_state_capa_resp() 754 wordlen++; in pop3_state_capa_resp() 757 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in pop3_state_capa_resp() 758 if(mechbit && llen == wordlen) in pop3_state_capa_resp() 761 line += wordlen; in pop3_state_capa_resp() 762 len -= wordlen; in pop3_state_capa_resp()
|
D | smtp.c | 927 size_t wordlen; in smtp_state_ehlo_resp() local 942 for(wordlen = 0; wordlen < len && line[wordlen] != ' ' && in smtp_state_ehlo_resp() 943 line[wordlen] != '\t' && line[wordlen] != '\r' && in smtp_state_ehlo_resp() 944 line[wordlen] != '\n';) in smtp_state_ehlo_resp() 945 wordlen++; in smtp_state_ehlo_resp() 948 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen); in smtp_state_ehlo_resp() 949 if(mechbit && llen == wordlen) in smtp_state_ehlo_resp() 952 line += wordlen; in smtp_state_ehlo_resp() 953 len -= wordlen; in smtp_state_ehlo_resp()
|
/third_party/gstreamer/gstplugins_bad/gst/onvif/ |
D | gstrtponvifparse.c | 96 guint wordlen; in handle_buffer() local 113 &wordlen)) in handle_buffer() 116 if (bits != EXTENSION_ID || wordlen != EXTENSION_SIZE) in handle_buffer()
|
D | gstrtponviftimestamp.c | 476 guint wordlen; in handle_buffer() local 531 &wordlen)) { in handle_buffer()
|
/third_party/gstreamer/gstplugins_bad/gst/rist/ |
D | gstristrtpext.c | 102 guint wordlen; in gst_rist_rtp_ext_chain() local 180 gst_rtp_buffer_get_extension_data (&rtp, NULL, (void **) &data, &wordlen); in gst_rist_rtp_ext_chain()
|
/third_party/ffmpeg/libavcodec/ |
D | atrac3plus.c | 763 int i, ch_num, qu, wordlen, codetab, tab_index, num_specs; in decode_spectrum() local 779 wordlen = chan->qu_wordlen[qu]; in decode_spectrum() 781 if (wordlen) { in decode_spectrum() 783 codetab = atrac3p_ct_restricted_to_full[chan->table_type][wordlen - 1][codetab]; in decode_spectrum() 785 tab_index = (chan->table_type * 8 + codetab) * 7 + wordlen - 1; in decode_spectrum()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | rtp.c | 1927 guint wordlen = 0; in GST_START_TEST() local 1951 (gpointer) & pdata, &wordlen)); in GST_START_TEST() 1953 fail_unless_equals_int (wordlen, 2); in GST_START_TEST() 1971 (gpointer) & pdata, &wordlen)); in GST_START_TEST() 1973 fail_unless_equals_int (wordlen, 2); in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_base/ |
D | ChangeLog | 5428 hand, wordlen would always incorrectly yield 0 or 1. 9717 rtpbuffer: add_extension_onebyte_header: fix the proper wordlen 9718 The wordlen ("length") MUST represent the total "number of 32-bit words 9721 the new extension. So the new wordlen should be updated if the new
|