OSDN Git Service

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