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