Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Drtpdec.c216 s->max_seq = base_sequence; in rtp_init_statistics()
226 s->max_seq = seq; in rtp_init_sequence()
240 uint16_t udelta = seq - s->max_seq; in rtp_valid_packet_in_sequence()
248 if (seq == s->max_seq + 1) { in rtp_valid_packet_in_sequence()
250 s->max_seq = seq; in rtp_valid_packet_in_sequence()
258 s->max_seq = seq; in rtp_valid_packet_in_sequence()
262 if (seq < s->max_seq) { in rtp_valid_packet_in_sequence()
266 s->max_seq = seq; in rtp_valid_packet_in_sequence()
345 extended_max = stats->cycles + stats->max_seq; in ff_rtp_check_and_send_back_rr()
Drtpdec.h80 uint16_t max_seq; ///< highest sequence number seen member
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Drtpsource.c1046 src->stats.max_seq = seq; in init_seq()
1126 src->stats.max_seq = seqnr - 1; in update_receiver_stats()
1131 expected = src->stats.max_seq + 1; in update_receiver_stats()
1141 if (seqnr < stats->max_seq) { in update_receiver_stats()
1145 src->stats.max_seq = seqnr; in update_receiver_stats()
1182 if (seqnr < stats->max_seq) { in update_receiver_stats()
1186 stats->max_seq = seqnr; in update_receiver_stats()
1244 src->stats.max_seq = seqnr; in update_receiver_stats()
1635 extended_max = stats->cycles + stats->max_seq; in rtp_source_get_new_rb()
Drtpstats.h143 guint16 max_seq; member
Drtpstats.c405 extended_max = stats->cycles + stats->max_seq; in rtp_stats_get_packets_lost()
/third_party/pulseaudio/src/modules/rtp/
Drfc3550.txt4330 u_int16 max_seq; /* highest seq. number seen */
4407 s->max_seq = seq - 1;
4415 valid if it is no more than MAX_DROPOUT ahead of s->max_seq nor more
4417 max_seq modulo the RTP sequence number range (16 bits), but is
4418 smaller than max_seq, it has wrapped around and the (shifted) count
4450 s->max_seq = seq;
4461 u_int16 udelta = seq - s->max_seq;
4472 if (seq == s->max_seq + 1) {
4474 s->max_seq = seq;
4490 s->max_seq = seq;
[all …]