]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpdec.c
88cf15bdea4efee65cfb3cec098bab65c93f2de8
[ffmpeg] / libavformat / rtpdec.c
1 /*
2  * RTP input format
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/mathematics.h"
23 #include "libavutil/avstring.h"
24 #include "libavcodec/get_bits.h"
25 #include "avformat.h"
26 #include "mpegts.h"
27 #include "url.h"
28
29 #include <unistd.h>
30 #include "network.h"
31
32 #include "rtpdec.h"
33 #include "rtpdec_formats.h"
34
35 //#define DEBUG
36
37 /* TODO: - add RTCP statistics reporting (should be optional).
38
39          - add support for h263/mpeg4 packetized output : IDEA: send a
40          buffer to 'rtp_write_packet' contains all the packets for ONE
41          frame. Each packet should have a four byte header containing
42          the length in big endian format (same trick as
43          'ffio_open_dyn_packet_buf')
44 */
45
46 static RTPDynamicProtocolHandler ff_realmedia_mp3_dynamic_handler = {
47     .enc_name           = "X-MP3-draft-00",
48     .codec_type         = AVMEDIA_TYPE_AUDIO,
49     .codec_id           = CODEC_ID_MP3ADU,
50 };
51
52 /* statistics functions */
53 static RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler= NULL;
54
55 void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler)
56 {
57     handler->next= RTPFirstDynamicPayloadHandler;
58     RTPFirstDynamicPayloadHandler= handler;
59 }
60
61 void av_register_rtp_dynamic_payload_handlers(void)
62 {
63     ff_register_dynamic_payload_handler(&ff_mp4v_es_dynamic_handler);
64     ff_register_dynamic_payload_handler(&ff_mpeg4_generic_dynamic_handler);
65     ff_register_dynamic_payload_handler(&ff_amr_nb_dynamic_handler);
66     ff_register_dynamic_payload_handler(&ff_amr_wb_dynamic_handler);
67     ff_register_dynamic_payload_handler(&ff_h263_1998_dynamic_handler);
68     ff_register_dynamic_payload_handler(&ff_h263_2000_dynamic_handler);
69     ff_register_dynamic_payload_handler(&ff_h264_dynamic_handler);
70     ff_register_dynamic_payload_handler(&ff_vorbis_dynamic_handler);
71     ff_register_dynamic_payload_handler(&ff_theora_dynamic_handler);
72     ff_register_dynamic_payload_handler(&ff_qdm2_dynamic_handler);
73     ff_register_dynamic_payload_handler(&ff_svq3_dynamic_handler);
74     ff_register_dynamic_payload_handler(&ff_mp4a_latm_dynamic_handler);
75     ff_register_dynamic_payload_handler(&ff_vp8_dynamic_handler);
76     ff_register_dynamic_payload_handler(&ff_qcelp_dynamic_handler);
77     ff_register_dynamic_payload_handler(&ff_realmedia_mp3_dynamic_handler);
78
79     ff_register_dynamic_payload_handler(&ff_ms_rtp_asf_pfv_handler);
80     ff_register_dynamic_payload_handler(&ff_ms_rtp_asf_pfa_handler);
81
82     ff_register_dynamic_payload_handler(&ff_qt_rtp_aud_handler);
83     ff_register_dynamic_payload_handler(&ff_qt_rtp_vid_handler);
84     ff_register_dynamic_payload_handler(&ff_quicktime_rtp_aud_handler);
85     ff_register_dynamic_payload_handler(&ff_quicktime_rtp_vid_handler);
86 }
87
88 RTPDynamicProtocolHandler *ff_rtp_handler_find_by_name(const char *name,
89                                                   enum AVMediaType codec_type)
90 {
91     RTPDynamicProtocolHandler *handler;
92     for (handler = RTPFirstDynamicPayloadHandler;
93          handler; handler = handler->next)
94         if (!av_strcasecmp(name, handler->enc_name) &&
95             codec_type == handler->codec_type)
96             return handler;
97     return NULL;
98 }
99
100 RTPDynamicProtocolHandler *ff_rtp_handler_find_by_id(int id,
101                                                 enum AVMediaType codec_type)
102 {
103     RTPDynamicProtocolHandler *handler;
104     for (handler = RTPFirstDynamicPayloadHandler;
105          handler; handler = handler->next)
106         if (handler->static_payload_id && handler->static_payload_id == id &&
107             codec_type == handler->codec_type)
108             return handler;
109     return NULL;
110 }
111
112 static int rtcp_parse_packet(RTPDemuxContext *s, const unsigned char *buf, int len)
113 {
114     int payload_len;
115     while (len >= 4) {
116         payload_len = FFMIN(len, (AV_RB16(buf + 2) + 1) * 4);
117
118         switch (buf[1]) {
119         case RTCP_SR:
120             if (payload_len < 20) {
121                 av_log(NULL, AV_LOG_ERROR, "Invalid length for RTCP SR packet\n");
122                 return AVERROR_INVALIDDATA;
123             }
124
125             s->last_rtcp_ntp_time = AV_RB64(buf + 8);
126             s->last_rtcp_timestamp = AV_RB32(buf + 16);
127             if (s->first_rtcp_ntp_time == AV_NOPTS_VALUE) {
128                 s->first_rtcp_ntp_time = s->last_rtcp_ntp_time;
129                 if (!s->base_timestamp)
130                     s->base_timestamp = s->last_rtcp_timestamp;
131                 s->rtcp_ts_offset = s->last_rtcp_timestamp - s->base_timestamp;
132             }
133
134             break;
135         case RTCP_BYE:
136             return -RTCP_BYE;
137         }
138
139         buf += payload_len;
140         len -= payload_len;
141     }
142     return -1;
143 }
144
145 #define RTP_SEQ_MOD (1<<16)
146
147 /**
148 * called on parse open packet
149 */
150 static void rtp_init_statistics(RTPStatistics *s, uint16_t base_sequence) // called on parse open packet.
151 {
152     memset(s, 0, sizeof(RTPStatistics));
153     s->max_seq= base_sequence;
154     s->probation= 1;
155 }
156
157 /**
158 * called whenever there is a large jump in sequence numbers, or when they get out of probation...
159 */
160 static void rtp_init_sequence(RTPStatistics *s, uint16_t seq)
161 {
162     s->max_seq= seq;
163     s->cycles= 0;
164     s->base_seq= seq -1;
165     s->bad_seq= RTP_SEQ_MOD + 1;
166     s->received= 0;
167     s->expected_prior= 0;
168     s->received_prior= 0;
169     s->jitter= 0;
170     s->transit= 0;
171 }
172
173 /**
174 * returns 1 if we should handle this packet.
175 */
176 static int rtp_valid_packet_in_sequence(RTPStatistics *s, uint16_t seq)
177 {
178     uint16_t udelta= seq - s->max_seq;
179     const int MAX_DROPOUT= 3000;
180     const int MAX_MISORDER = 100;
181     const int MIN_SEQUENTIAL = 2;
182
183     /* source not valid until MIN_SEQUENTIAL packets with sequence seq. numbers have been received */
184     if(s->probation)
185     {
186         if(seq==s->max_seq + 1) {
187             s->probation--;
188             s->max_seq= seq;
189             if(s->probation==0) {
190                 rtp_init_sequence(s, seq);
191                 s->received++;
192                 return 1;
193             }
194         } else {
195             s->probation= MIN_SEQUENTIAL - 1;
196             s->max_seq = seq;
197         }
198     } else if (udelta < MAX_DROPOUT) {
199         // in order, with permissible gap
200         if(seq < s->max_seq) {
201             //sequence number wrapped; count antother 64k cycles
202             s->cycles += RTP_SEQ_MOD;
203         }
204         s->max_seq= seq;
205     } else if (udelta <= RTP_SEQ_MOD - MAX_MISORDER) {
206         // sequence made a large jump...
207         if(seq==s->bad_seq) {
208             // two sequential packets-- assume that the other side restarted without telling us; just resync.
209             rtp_init_sequence(s, seq);
210         } else {
211             s->bad_seq= (seq + 1) & (RTP_SEQ_MOD-1);
212             return 0;
213         }
214     } else {
215         // duplicate or reordered packet...
216     }
217     s->received++;
218     return 1;
219 }
220
221 int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, int count)
222 {
223     AVIOContext *pb;
224     uint8_t *buf;
225     int len;
226     int rtcp_bytes;
227     RTPStatistics *stats= &s->statistics;
228     uint32_t lost;
229     uint32_t extended_max;
230     uint32_t expected_interval;
231     uint32_t received_interval;
232     uint32_t lost_interval;
233     uint32_t expected;
234     uint32_t fraction;
235     uint64_t ntp_time= s->last_rtcp_ntp_time; // TODO: Get local ntp time?
236
237     if (!s->rtp_ctx || (count < 1))
238         return -1;
239
240     /* TODO: I think this is way too often; RFC 1889 has algorithm for this */
241     /* XXX: mpeg pts hardcoded. RTCP send every 0.5 seconds */
242     s->octet_count += count;
243     rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) /
244         RTCP_TX_RATIO_DEN;
245     rtcp_bytes /= 50; // mmu_man: that's enough for me... VLC sends much less btw !?
246     if (rtcp_bytes < 28)
247         return -1;
248     s->last_octet_count = s->octet_count;
249
250     if (avio_open_dyn_buf(&pb) < 0)
251         return -1;
252
253     // Receiver Report
254     avio_w8(pb, (RTP_VERSION << 6) + 1); /* 1 report block */
255     avio_w8(pb, RTCP_RR);
256     avio_wb16(pb, 7); /* length in words - 1 */
257     // our own SSRC: we use the server's SSRC + 1 to avoid conflicts
258     avio_wb32(pb, s->ssrc + 1);
259     avio_wb32(pb, s->ssrc); // server SSRC
260     // some placeholders we should really fill...
261     // RFC 1889/p64
262     extended_max= stats->cycles + stats->max_seq;
263     expected= extended_max - stats->base_seq + 1;
264     lost= expected - stats->received;
265     lost= FFMIN(lost, 0xffffff); // clamp it since it's only 24 bits...
266     expected_interval= expected - stats->expected_prior;
267     stats->expected_prior= expected;
268     received_interval= stats->received - stats->received_prior;
269     stats->received_prior= stats->received;
270     lost_interval= expected_interval - received_interval;
271     if (expected_interval==0 || lost_interval<=0) fraction= 0;
272     else fraction = (lost_interval<<8)/expected_interval;
273
274     fraction= (fraction<<24) | lost;
275
276     avio_wb32(pb, fraction); /* 8 bits of fraction, 24 bits of total packets lost */
277     avio_wb32(pb, extended_max); /* max sequence received */
278     avio_wb32(pb, stats->jitter>>4); /* jitter */
279
280     if(s->last_rtcp_ntp_time==AV_NOPTS_VALUE)
281     {
282         avio_wb32(pb, 0); /* last SR timestamp */
283         avio_wb32(pb, 0); /* delay since last SR */
284     } else {
285         uint32_t middle_32_bits= s->last_rtcp_ntp_time>>16; // this is valid, right? do we need to handle 64 bit values special?
286         uint32_t delay_since_last= ntp_time - s->last_rtcp_ntp_time;
287
288         avio_wb32(pb, middle_32_bits); /* last SR timestamp */
289         avio_wb32(pb, delay_since_last); /* delay since last SR */
290     }
291
292     // CNAME
293     avio_w8(pb, (RTP_VERSION << 6) + 1); /* 1 report block */
294     avio_w8(pb, RTCP_SDES);
295     len = strlen(s->hostname);
296     avio_wb16(pb, (6 + len + 3) / 4); /* length in words - 1 */
297     avio_wb32(pb, s->ssrc);
298     avio_w8(pb, 0x01);
299     avio_w8(pb, len);
300     avio_write(pb, s->hostname, len);
301     // padding
302     for (len = (6 + len) % 4; len % 4; len++) {
303         avio_w8(pb, 0);
304     }
305
306     avio_flush(pb);
307     len = avio_close_dyn_buf(pb, &buf);
308     if ((len > 0) && buf) {
309         int av_unused result;
310         av_dlog(s->ic, "sending %d bytes of RR\n", len);
311         result= ffurl_write(s->rtp_ctx, buf, len);
312         av_dlog(s->ic, "result from ffurl_write: %d\n", result);
313         av_free(buf);
314     }
315     return 0;
316 }
317
318 void ff_rtp_send_punch_packets(URLContext* rtp_handle)
319 {
320     AVIOContext *pb;
321     uint8_t *buf;
322     int len;
323
324     /* Send a small RTP packet */
325     if (avio_open_dyn_buf(&pb) < 0)
326         return;
327
328     avio_w8(pb, (RTP_VERSION << 6));
329     avio_w8(pb, 0); /* Payload type */
330     avio_wb16(pb, 0); /* Seq */
331     avio_wb32(pb, 0); /* Timestamp */
332     avio_wb32(pb, 0); /* SSRC */
333
334     avio_flush(pb);
335     len = avio_close_dyn_buf(pb, &buf);
336     if ((len > 0) && buf)
337         ffurl_write(rtp_handle, buf, len);
338     av_free(buf);
339
340     /* Send a minimal RTCP RR */
341     if (avio_open_dyn_buf(&pb) < 0)
342         return;
343
344     avio_w8(pb, (RTP_VERSION << 6));
345     avio_w8(pb, RTCP_RR); /* receiver report */
346     avio_wb16(pb, 1); /* length in words - 1 */
347     avio_wb32(pb, 0); /* our own SSRC */
348
349     avio_flush(pb);
350     len = avio_close_dyn_buf(pb, &buf);
351     if ((len > 0) && buf)
352         ffurl_write(rtp_handle, buf, len);
353     av_free(buf);
354 }
355
356
357 /**
358  * open a new RTP parse context for stream 'st'. 'st' can be NULL for
359  * MPEG2TS streams to indicate that they should be demuxed inside the
360  * rtp demux (otherwise CODEC_ID_MPEG2TS packets are returned)
361  */
362 RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, int queue_size)
363 {
364     RTPDemuxContext *s;
365
366     s = av_mallocz(sizeof(RTPDemuxContext));
367     if (!s)
368         return NULL;
369     s->payload_type = payload_type;
370     s->last_rtcp_ntp_time = AV_NOPTS_VALUE;
371     s->first_rtcp_ntp_time = AV_NOPTS_VALUE;
372     s->ic = s1;
373     s->st = st;
374     s->queue_size = queue_size;
375     rtp_init_statistics(&s->statistics, 0); // do we know the initial sequence from sdp?
376     if (!strcmp(ff_rtp_enc_name(payload_type), "MP2T")) {
377         s->ts = ff_mpegts_parse_open(s->ic);
378         if (s->ts == NULL) {
379             av_free(s);
380             return NULL;
381         }
382     } else {
383         switch(st->codec->codec_id) {
384         case CODEC_ID_MPEG1VIDEO:
385         case CODEC_ID_MPEG2VIDEO:
386         case CODEC_ID_MP2:
387         case CODEC_ID_MP3:
388         case CODEC_ID_MPEG4:
389         case CODEC_ID_H263:
390         case CODEC_ID_H264:
391             st->need_parsing = AVSTREAM_PARSE_FULL;
392             break;
393         case CODEC_ID_ADPCM_G722:
394             /* According to RFC 3551, the stream clock rate is 8000
395              * even if the sample rate is 16000. */
396             if (st->codec->sample_rate == 8000)
397                 st->codec->sample_rate = 16000;
398             break;
399         default:
400             break;
401         }
402     }
403     // needed to send back RTCP RR in RTSP sessions
404     s->rtp_ctx = rtpc;
405     gethostname(s->hostname, sizeof(s->hostname));
406     return s;
407 }
408
409 void
410 ff_rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx,
411                                   RTPDynamicProtocolHandler *handler)
412 {
413     s->dynamic_protocol_context = ctx;
414     s->parse_packet = handler->parse_packet;
415 }
416
417 /**
418  * This was the second switch in rtp_parse packet.  Normalizes time, if required, sets stream_index, etc.
419  */
420 static void finalize_packet(RTPDemuxContext *s, AVPacket *pkt, uint32_t timestamp)
421 {
422     if (pkt->pts != AV_NOPTS_VALUE || pkt->dts != AV_NOPTS_VALUE)
423         return; /* Timestamp already set by depacketizer */
424     if (timestamp == RTP_NOTS_VALUE)
425         return;
426
427     if (s->last_rtcp_ntp_time != AV_NOPTS_VALUE && s->ic->nb_streams > 1) {
428         int64_t addend;
429         int delta_timestamp;
430
431         /* compute pts from timestamp with received ntp_time */
432         delta_timestamp = timestamp - s->last_rtcp_timestamp;
433         /* convert to the PTS timebase */
434         addend = av_rescale(s->last_rtcp_ntp_time - s->first_rtcp_ntp_time, s->st->time_base.den, (uint64_t)s->st->time_base.num << 32);
435         pkt->pts = s->range_start_offset + s->rtcp_ts_offset + addend +
436                    delta_timestamp;
437         return;
438     }
439
440     if (!s->base_timestamp)
441         s->base_timestamp = timestamp;
442     /* assume that the difference is INT32_MIN < x < INT32_MAX, but allow the first timestamp to exceed INT32_MAX */
443     if (!s->timestamp)
444         s->unwrapped_timestamp += timestamp;
445     else
446         s->unwrapped_timestamp += (int32_t)(timestamp - s->timestamp);
447     s->timestamp = timestamp;
448     pkt->pts = s->unwrapped_timestamp + s->range_start_offset - s->base_timestamp;
449 }
450
451 static int rtp_parse_packet_internal(RTPDemuxContext *s, AVPacket *pkt,
452                                      const uint8_t *buf, int len)
453 {
454     unsigned int ssrc, h;
455     int payload_type, seq, ret, flags = 0;
456     int ext;
457     AVStream *st;
458     uint32_t timestamp;
459     int rv= 0;
460
461     ext = buf[0] & 0x10;
462     payload_type = buf[1] & 0x7f;
463     if (buf[1] & 0x80)
464         flags |= RTP_FLAG_MARKER;
465     seq  = AV_RB16(buf + 2);
466     timestamp = AV_RB32(buf + 4);
467     ssrc = AV_RB32(buf + 8);
468     /* store the ssrc in the RTPDemuxContext */
469     s->ssrc = ssrc;
470
471     /* NOTE: we can handle only one payload type */
472     if (s->payload_type != payload_type)
473         return -1;
474
475     st = s->st;
476     // only do something with this if all the rtp checks pass...
477     if(!rtp_valid_packet_in_sequence(&s->statistics, seq))
478     {
479         av_log(st?st->codec:NULL, AV_LOG_ERROR, "RTP: PT=%02x: bad cseq %04x expected=%04x\n",
480                payload_type, seq, ((s->seq + 1) & 0xffff));
481         return -1;
482     }
483
484     if (buf[0] & 0x20) {
485         int padding = buf[len - 1];
486         if (len >= 12 + padding)
487             len -= padding;
488     }
489
490     s->seq = seq;
491     len -= 12;
492     buf += 12;
493
494     /* RFC 3550 Section 5.3.1 RTP Header Extension handling */
495     if (ext) {
496         if (len < 4)
497             return -1;
498         /* calculate the header extension length (stored as number
499          * of 32-bit words) */
500         ext = (AV_RB16(buf + 2) + 1) << 2;
501
502         if (len < ext)
503             return -1;
504         // skip past RTP header extension
505         len -= ext;
506         buf += ext;
507     }
508
509     if (!st) {
510         /* specific MPEG2TS demux support */
511         ret = ff_mpegts_parse_packet(s->ts, pkt, buf, len);
512         /* The only error that can be returned from ff_mpegts_parse_packet
513          * is "no more data to return from the provided buffer", so return
514          * AVERROR(EAGAIN) for all errors */
515         if (ret < 0)
516             return AVERROR(EAGAIN);
517         if (ret < len) {
518             s->read_buf_size = len - ret;
519             memcpy(s->buf, buf + ret, s->read_buf_size);
520             s->read_buf_index = 0;
521             return 1;
522         }
523         return 0;
524     } else if (s->parse_packet) {
525         rv = s->parse_packet(s->ic, s->dynamic_protocol_context,
526                              s->st, pkt, &timestamp, buf, len, flags);
527     } else {
528         // at this point, the RTP header has been stripped;  This is ASSUMING that there is only 1 CSRC, which in't wise.
529         switch(st->codec->codec_id) {
530         case CODEC_ID_MP2:
531         case CODEC_ID_MP3:
532             /* better than nothing: skip mpeg audio RTP header */
533             if (len <= 4)
534                 return -1;
535             h = AV_RB32(buf);
536             len -= 4;
537             buf += 4;
538             av_new_packet(pkt, len);
539             memcpy(pkt->data, buf, len);
540             break;
541         case CODEC_ID_MPEG1VIDEO:
542         case CODEC_ID_MPEG2VIDEO:
543             /* better than nothing: skip mpeg video RTP header */
544             if (len <= 4)
545                 return -1;
546             h = AV_RB32(buf);
547             buf += 4;
548             len -= 4;
549             if (h & (1 << 26)) {
550                 /* mpeg2 */
551                 if (len <= 4)
552                     return -1;
553                 buf += 4;
554                 len -= 4;
555             }
556             av_new_packet(pkt, len);
557             memcpy(pkt->data, buf, len);
558             break;
559         default:
560             av_new_packet(pkt, len);
561             memcpy(pkt->data, buf, len);
562             break;
563         }
564
565         pkt->stream_index = st->index;
566     }
567
568     // now perform timestamp things....
569     finalize_packet(s, pkt, timestamp);
570
571     return rv;
572 }
573
574 void ff_rtp_reset_packet_queue(RTPDemuxContext *s)
575 {
576     while (s->queue) {
577         RTPPacket *next = s->queue->next;
578         av_free(s->queue->buf);
579         av_free(s->queue);
580         s->queue = next;
581     }
582     s->seq       = 0;
583     s->queue_len = 0;
584     s->prev_ret  = 0;
585 }
586
587 static void enqueue_packet(RTPDemuxContext *s, uint8_t *buf, int len)
588 {
589     uint16_t seq = AV_RB16(buf + 2);
590     RTPPacket *cur = s->queue, *prev = NULL, *packet;
591
592     /* Find the correct place in the queue to insert the packet */
593     while (cur) {
594         int16_t diff = seq - cur->seq;
595         if (diff < 0)
596             break;
597         prev = cur;
598         cur = cur->next;
599     }
600
601     packet = av_mallocz(sizeof(*packet));
602     if (!packet)
603         return;
604     packet->recvtime = av_gettime();
605     packet->seq = seq;
606     packet->len = len;
607     packet->buf = buf;
608     packet->next = cur;
609     if (prev)
610         prev->next = packet;
611     else
612         s->queue = packet;
613     s->queue_len++;
614 }
615
616 static int has_next_packet(RTPDemuxContext *s)
617 {
618     return s->queue && s->queue->seq == (uint16_t) (s->seq + 1);
619 }
620
621 int64_t ff_rtp_queued_packet_time(RTPDemuxContext *s)
622 {
623     return s->queue ? s->queue->recvtime : 0;
624 }
625
626 static int rtp_parse_queued_packet(RTPDemuxContext *s, AVPacket *pkt)
627 {
628     int rv;
629     RTPPacket *next;
630
631     if (s->queue_len <= 0)
632         return -1;
633
634     if (!has_next_packet(s))
635         av_log(s->st ? s->st->codec : NULL, AV_LOG_WARNING,
636                "RTP: missed %d packets\n", s->queue->seq - s->seq - 1);
637
638     /* Parse the first packet in the queue, and dequeue it */
639     rv = rtp_parse_packet_internal(s, pkt, s->queue->buf, s->queue->len);
640     next = s->queue->next;
641     av_free(s->queue->buf);
642     av_free(s->queue);
643     s->queue = next;
644     s->queue_len--;
645     return rv;
646 }
647
648 static int rtp_parse_one_packet(RTPDemuxContext *s, AVPacket *pkt,
649                      uint8_t **bufptr, int len)
650 {
651     uint8_t* buf = bufptr ? *bufptr : NULL;
652     int ret, flags = 0;
653     uint32_t timestamp;
654     int rv= 0;
655
656     if (!buf) {
657         /* If parsing of the previous packet actually returned 0 or an error,
658          * there's nothing more to be parsed from that packet, but we may have
659          * indicated that we can return the next enqueued packet. */
660         if (s->prev_ret <= 0)
661             return rtp_parse_queued_packet(s, pkt);
662         /* return the next packets, if any */
663         if(s->st && s->parse_packet) {
664             /* timestamp should be overwritten by parse_packet, if not,
665              * the packet is left with pts == AV_NOPTS_VALUE */
666             timestamp = RTP_NOTS_VALUE;
667             rv= s->parse_packet(s->ic, s->dynamic_protocol_context,
668                                 s->st, pkt, &timestamp, NULL, 0, flags);
669             finalize_packet(s, pkt, timestamp);
670             return rv;
671         } else {
672             // TODO: Move to a dynamic packet handler (like above)
673             if (s->read_buf_index >= s->read_buf_size)
674                 return AVERROR(EAGAIN);
675             ret = ff_mpegts_parse_packet(s->ts, pkt, s->buf + s->read_buf_index,
676                                       s->read_buf_size - s->read_buf_index);
677             if (ret < 0)
678                 return AVERROR(EAGAIN);
679             s->read_buf_index += ret;
680             if (s->read_buf_index < s->read_buf_size)
681                 return 1;
682             else
683                 return 0;
684         }
685     }
686
687     if (len < 12)
688         return -1;
689
690     if ((buf[0] & 0xc0) != (RTP_VERSION << 6))
691         return -1;
692     if (buf[1] >= RTCP_SR && buf[1] <= RTCP_APP) {
693         return rtcp_parse_packet(s, buf, len);
694     }
695
696     if ((s->seq == 0 && !s->queue) || s->queue_size <= 1) {
697         /* First packet, or no reordering */
698         return rtp_parse_packet_internal(s, pkt, buf, len);
699     } else {
700         uint16_t seq = AV_RB16(buf + 2);
701         int16_t diff = seq - s->seq;
702         if (diff < 0) {
703             /* Packet older than the previously emitted one, drop */
704             av_log(s->st ? s->st->codec : NULL, AV_LOG_WARNING,
705                    "RTP: dropping old packet received too late\n");
706             return -1;
707         } else if (diff <= 1) {
708             /* Correct packet */
709             rv = rtp_parse_packet_internal(s, pkt, buf, len);
710             return rv;
711         } else {
712             /* Still missing some packet, enqueue this one. */
713             enqueue_packet(s, buf, len);
714             *bufptr = NULL;
715             /* Return the first enqueued packet if the queue is full,
716              * even if we're missing something */
717             if (s->queue_len >= s->queue_size)
718                 return rtp_parse_queued_packet(s, pkt);
719             return -1;
720         }
721     }
722 }
723
724 /**
725  * Parse an RTP or RTCP packet directly sent as a buffer.
726  * @param s RTP parse context.
727  * @param pkt returned packet
728  * @param bufptr pointer to the input buffer or NULL to read the next packets
729  * @param len buffer len
730  * @return 0 if a packet is returned, 1 if a packet is returned and more can follow
731  * (use buf as NULL to read the next). -1 if no packet (error or no more packet).
732  */
733 int ff_rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
734                         uint8_t **bufptr, int len)
735 {
736     int rv = rtp_parse_one_packet(s, pkt, bufptr, len);
737     s->prev_ret = rv;
738     while (rv == AVERROR(EAGAIN) && has_next_packet(s))
739         rv = rtp_parse_queued_packet(s, pkt);
740     return rv ? rv : has_next_packet(s);
741 }
742
743 void ff_rtp_parse_close(RTPDemuxContext *s)
744 {
745     ff_rtp_reset_packet_queue(s);
746     if (!strcmp(ff_rtp_enc_name(s->payload_type), "MP2T")) {
747         ff_mpegts_parse_close(s->ts);
748     }
749     av_free(s);
750 }
751
752 int ff_parse_fmtp(AVStream *stream, PayloadContext *data, const char *p,
753                   int (*parse_fmtp)(AVStream *stream,
754                                     PayloadContext *data,
755                                     char *attr, char *value))
756 {
757     char attr[256];
758     char *value;
759     int res;
760     int value_size = strlen(p) + 1;
761
762     if (!(value = av_malloc(value_size))) {
763         av_log(stream, AV_LOG_ERROR, "Failed to allocate data for FMTP.");
764         return AVERROR(ENOMEM);
765     }
766
767     // remove protocol identifier
768     while (*p && *p == ' ') p++; // strip spaces
769     while (*p && *p != ' ') p++; // eat protocol identifier
770     while (*p && *p == ' ') p++; // strip trailing spaces
771
772     while (ff_rtsp_next_attr_and_value(&p,
773                                        attr, sizeof(attr),
774                                        value, value_size)) {
775
776         res = parse_fmtp(stream, data, attr, value);
777         if (res < 0 && res != AVERROR_PATCHWELCOME) {
778             av_free(value);
779             return res;
780         }
781     }
782     av_free(value);
783     return 0;
784 }