OSDN Git Service

imdct/x86: Use "s->mdct_size" instead of "1 << s->mdct_bits".
[coroid/libav_saccubus.git] / libavformat / rdt.c
1 /*
2  * Realmedia RTSP protocol (RDT) support.
3  * Copyright (c) 2007 Ronald S. Bultje
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 /**
23  * @file
24  * @brief Realmedia RTSP protocol (RDT) support
25  * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
26  */
27
28 #include "avformat.h"
29 #include "libavutil/avstring.h"
30 #include "rtpdec.h"
31 #include "rdt.h"
32 #include "libavutil/base64.h"
33 #include "libavutil/md5.h"
34 #include "rm.h"
35 #include "internal.h"
36 #include "libavcodec/get_bits.h"
37
38 struct RDTDemuxContext {
39     AVFormatContext *ic; /**< the containing (RTSP) demux context */
40     /** Each RDT stream-set (represented by one RTSPStream) can contain
41      * multiple streams (of the same content, but with possibly different
42      * codecs/bitrates). Each such stream is represented by one AVStream
43      * in the AVFormatContext, and this variable points to the offset in
44      * that array such that the first is the first stream of this set. */
45     AVStream **streams;
46     int n_streams; /**< streams with identifical content in this set */
47     void *dynamic_protocol_context;
48     DynamicPayloadPacketHandlerProc parse_packet;
49     uint32_t prev_timestamp;
50     int prev_set_id, prev_stream_id;
51 };
52
53 RDTDemuxContext *
54 ff_rdt_parse_open(AVFormatContext *ic, int first_stream_of_set_idx,
55                   void *priv_data, RTPDynamicProtocolHandler *handler)
56 {
57     RDTDemuxContext *s = av_mallocz(sizeof(RDTDemuxContext));
58     if (!s)
59         return NULL;
60
61     s->ic = ic;
62     s->streams = &ic->streams[first_stream_of_set_idx];
63     do {
64         s->n_streams++;
65     } while (first_stream_of_set_idx + s->n_streams < ic->nb_streams &&
66              s->streams[s->n_streams]->priv_data == s->streams[0]->priv_data);
67     s->prev_set_id    = -1;
68     s->prev_stream_id = -1;
69     s->prev_timestamp = -1;
70     s->parse_packet = handler ? handler->parse_packet : NULL;
71     s->dynamic_protocol_context = priv_data;
72
73     return s;
74 }
75
76 void
77 ff_rdt_parse_close(RDTDemuxContext *s)
78 {
79     int i;
80
81     for (i = 1; i < s->n_streams; i++)
82         s->streams[i]->priv_data = NULL;
83
84     av_free(s);
85 }
86
87 struct PayloadContext {
88     AVFormatContext *rmctx;
89     int nb_rmst;
90     RMStream **rmst;
91     uint8_t *mlti_data;
92     unsigned int mlti_data_size;
93     char buffer[RTP_MAX_PACKET_LENGTH + FF_INPUT_BUFFER_PADDING_SIZE];
94     int audio_pkt_cnt; /**< remaining audio packets in rmdec */
95 };
96
97 void
98 ff_rdt_calc_response_and_checksum(char response[41], char chksum[9],
99                                   const char *challenge)
100 {
101     int ch_len = strlen (challenge), i;
102     unsigned char zres[16],
103         buf[64] = { 0xa1, 0xe9, 0x14, 0x9d, 0x0e, 0x6b, 0x3b, 0x59 };
104 #define XOR_TABLE_SIZE 37
105     const unsigned char xor_table[XOR_TABLE_SIZE] = {
106         0x05, 0x18, 0x74, 0xd0, 0x0d, 0x09, 0x02, 0x53,
107         0xc0, 0x01, 0x05, 0x05, 0x67, 0x03, 0x19, 0x70,
108         0x08, 0x27, 0x66, 0x10, 0x10, 0x72, 0x08, 0x09,
109         0x63, 0x11, 0x03, 0x71, 0x08, 0x08, 0x70, 0x02,
110         0x10, 0x57, 0x05, 0x18, 0x54 };
111
112     /* some (length) checks */
113     if (ch_len == 40) /* what a hack... */
114         ch_len = 32;
115     else if (ch_len > 56)
116         ch_len = 56;
117     memcpy(buf + 8, challenge, ch_len);
118
119     /* xor challenge bytewise with xor_table */
120     for (i = 0; i < XOR_TABLE_SIZE; i++)
121         buf[8 + i] ^= xor_table[i];
122
123     av_md5_sum(zres, buf, 64);
124     ff_data_to_hex(response, zres, 16, 1);
125
126     /* add tail */
127     strcpy (response + 32, "01d0a8e3");
128
129     /* calculate checksum */
130     for (i = 0; i < 8; i++)
131         chksum[i] = response[i * 4];
132     chksum[8] = 0;
133 }
134
135 static int
136 rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr)
137 {
138     ByteIOContext pb;
139     int size;
140     uint32_t tag;
141
142     /**
143      * Layout of the MLTI chunk:
144      * 4: MLTI
145      * 2: number of streams
146      * Then for each stream ([number_of_streams] times):
147      *     2: mdpr index
148      * 2: number of mdpr chunks
149      * Then for each mdpr chunk ([number_of_mdpr_chunks] times):
150      *     4: size
151      *     [size]: data
152      * we skip MDPR chunks until we reach the one of the stream
153      * we're interested in, and forward that ([size]+[data]) to
154      * the RM demuxer to parse the stream-specific header data.
155      */
156     if (!rdt->mlti_data)
157         return -1;
158     init_put_byte(&pb, rdt->mlti_data, rdt->mlti_data_size, 0,
159                   NULL, NULL, NULL, NULL);
160     tag = get_le32(&pb);
161     if (tag == MKTAG('M', 'L', 'T', 'I')) {
162         int num, chunk_nr;
163
164         /* read index of MDPR chunk numbers */
165         num = get_be16(&pb);
166         if (rule_nr < 0 || rule_nr >= num)
167             return -1;
168         url_fskip(&pb, rule_nr * 2);
169         chunk_nr = get_be16(&pb);
170         url_fskip(&pb, (num - 1 - rule_nr) * 2);
171
172         /* read MDPR chunks */
173         num = get_be16(&pb);
174         if (chunk_nr >= num)
175             return -1;
176         while (chunk_nr--)
177             url_fskip(&pb, get_be32(&pb));
178         size = get_be32(&pb);
179     } else {
180         size = rdt->mlti_data_size;
181         url_fseek(&pb, 0, SEEK_SET);
182     }
183     if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, rdt->rmst[st->index], size) < 0)
184         return -1;
185
186     return 0;
187 }
188
189 /**
190  * Actual data handling.
191  */
192
193 int
194 ff_rdt_parse_header(const uint8_t *buf, int len,
195                     int *pset_id, int *pseq_no, int *pstream_id,
196                     int *pis_keyframe, uint32_t *ptimestamp)
197 {
198     GetBitContext gb;
199     int consumed = 0, set_id, seq_no, stream_id, is_keyframe,
200         len_included, need_reliable;
201     uint32_t timestamp;
202
203     /* skip status packets */
204     while (len >= 5 && buf[1] == 0xFF /* status packet */) {
205         int pkt_len;
206
207         if (!(buf[0] & 0x80))
208             return -1; /* not followed by a data packet */
209
210         pkt_len = AV_RB16(buf+3);
211         buf += pkt_len;
212         len -= pkt_len;
213         consumed += pkt_len;
214     }
215     if (len < 16)
216         return -1;
217     /**
218      * Layout of the header (in bits):
219      * 1:  len_included
220      *     Flag indicating whether this header includes a length field;
221      *     this can be used to concatenate multiple RDT packets in a
222      *     single UDP/TCP data frame and is used to precede RDT data
223      *     by stream status packets
224      * 1:  need_reliable
225      *     Flag indicating whether this header includes a "reliable
226      *     sequence number"; these are apparently sequence numbers of
227      *     data packets alone. For data packets, this flag is always
228      *     set, according to the Real documentation [1]
229      * 5:  set_id
230      *     ID of a set of streams of identical content, possibly with
231      *     different codecs or bitrates
232      * 1:  is_reliable
233      *     Flag set for certain streams deemed less tolerable for packet
234      *     loss
235      * 16: seq_no
236      *     Packet sequence number; if >=0xFF00, this is a non-data packet
237      *     containing stream status info, the second byte indicates the
238      *     type of status packet (see wireshark docs / source code [2])
239      * if (len_included) {
240      *     16: packet_len
241      * } else {
242      *     packet_len = remainder of UDP/TCP frame
243      * }
244      * 1:  is_back_to_back
245      *     Back-to-Back flag; used for timing, set for one in every 10
246      *     packets, according to the Real documentation [1]
247      * 1:  is_slow_data
248      *     Slow-data flag; currently unused, according to Real docs [1]
249      * 5:  stream_id
250      *     ID of the stream within this particular set of streams
251      * 1:  is_no_keyframe
252      *     Non-keyframe flag (unset if packet belongs to a keyframe)
253      * 32: timestamp (PTS)
254      * if (set_id == 0x1F) {
255      *     16: set_id (extended set-of-streams ID; see set_id)
256      * }
257      * if (need_reliable) {
258      *     16: reliable_seq_no
259      *         Reliable sequence number (see need_reliable)
260      * }
261      * if (stream_id == 0x3F) {
262      *     16: stream_id (extended stream ID; see stream_id)
263      * }
264      * [1] https://protocol.helixcommunity.org/files/2005/devdocs/RDT_Feature_Level_20.txt
265      * [2] http://www.wireshark.org/docs/dfref/r/rdt.html and
266      *     http://anonsvn.wireshark.org/viewvc/trunk/epan/dissectors/packet-rdt.c
267      */
268     init_get_bits(&gb, buf, len << 3);
269     len_included  = get_bits1(&gb);
270     need_reliable = get_bits1(&gb);
271     set_id        = get_bits(&gb, 5);
272     skip_bits(&gb, 1);
273     seq_no        = get_bits(&gb, 16);
274     if (len_included)
275         skip_bits(&gb, 16);
276     skip_bits(&gb, 2);
277     stream_id     = get_bits(&gb, 5);
278     is_keyframe   = !get_bits1(&gb);
279     timestamp     = get_bits_long(&gb, 32);
280     if (set_id == 0x1f)
281         set_id    = get_bits(&gb, 16);
282     if (need_reliable)
283         skip_bits(&gb, 16);
284     if (stream_id == 0x1f)
285         stream_id = get_bits(&gb, 16);
286
287     if (pset_id)      *pset_id      = set_id;
288     if (pseq_no)      *pseq_no      = seq_no;
289     if (pstream_id)   *pstream_id   = stream_id;
290     if (pis_keyframe) *pis_keyframe = is_keyframe;
291     if (ptimestamp)   *ptimestamp   = timestamp;
292
293     return consumed + (get_bits_count(&gb) >> 3);
294 }
295
296 /**< return 0 on packet, no more left, 1 on packet, 1 on partial packet... */
297 static int
298 rdt_parse_packet (AVFormatContext *ctx, PayloadContext *rdt, AVStream *st,
299                   AVPacket *pkt, uint32_t *timestamp,
300                   const uint8_t *buf, int len, int flags)
301 {
302     int seq = 1, res;
303     ByteIOContext pb;
304
305     if (rdt->audio_pkt_cnt == 0) {
306         int pos;
307
308         init_put_byte(&pb, buf, len, 0, NULL, NULL, NULL, NULL);
309         flags = (flags & RTP_FLAG_KEY) ? 2 : 0;
310         res = ff_rm_parse_packet (rdt->rmctx, &pb, st, rdt->rmst[st->index], len, pkt,
311                                   &seq, flags, *timestamp);
312         pos = url_ftell(&pb);
313         if (res < 0)
314             return res;
315         if (res > 0) {
316             if (st->codec->codec_id == CODEC_ID_AAC) {
317                 memcpy (rdt->buffer, buf + pos, len - pos);
318                 rdt->rmctx->pb = av_alloc_put_byte (rdt->buffer, len - pos, 0,
319                                                     NULL, NULL, NULL, NULL);
320             }
321             goto get_cache;
322         }
323     } else {
324 get_cache:
325         rdt->audio_pkt_cnt =
326             ff_rm_retrieve_cache (rdt->rmctx, rdt->rmctx->pb,
327                                   st, rdt->rmst[st->index], pkt);
328         if (rdt->audio_pkt_cnt == 0 &&
329             st->codec->codec_id == CODEC_ID_AAC)
330             av_freep(&rdt->rmctx->pb);
331     }
332     pkt->stream_index = st->index;
333     pkt->pts = *timestamp;
334
335     return rdt->audio_pkt_cnt > 0;
336 }
337
338 int
339 ff_rdt_parse_packet(RDTDemuxContext *s, AVPacket *pkt,
340                     const uint8_t *buf, int len)
341 {
342     int seq_no, flags = 0, stream_id, set_id, is_keyframe;
343     uint32_t timestamp;
344     int rv= 0;
345
346     if (!s->parse_packet)
347         return -1;
348
349     if (!buf && s->prev_stream_id != -1) {
350         /* return the next packets, if any */
351         timestamp= 0; ///< Should not be used if buf is NULL, but should be set to the timestamp of the packet returned....
352         rv= s->parse_packet(s->ic, s->dynamic_protocol_context,
353                             s->streams[s->prev_stream_id],
354                             pkt, &timestamp, NULL, 0, flags);
355         return rv;
356     }
357
358     if (len < 12)
359         return -1;
360     rv = ff_rdt_parse_header(buf, len, &set_id, &seq_no, &stream_id, &is_keyframe, &timestamp);
361     if (rv < 0)
362         return rv;
363     if (is_keyframe &&
364         (set_id != s->prev_set_id || timestamp != s->prev_timestamp ||
365          stream_id != s->prev_stream_id)) {
366         flags |= RTP_FLAG_KEY;
367         s->prev_set_id    = set_id;
368         s->prev_timestamp = timestamp;
369     }
370     s->prev_stream_id = stream_id;
371     buf += rv;
372     len -= rv;
373
374      if (s->prev_stream_id >= s->n_streams) {
375          s->prev_stream_id = -1;
376          return -1;
377      }
378
379     rv = s->parse_packet(s->ic, s->dynamic_protocol_context,
380                          s->streams[s->prev_stream_id],
381                          pkt, &timestamp, buf, len, flags);
382
383     return rv;
384 }
385
386 void
387 ff_rdt_subscribe_rule (char *cmd, int size,
388                        int stream_nr, int rule_nr)
389 {
390     av_strlcatf(cmd, size, "stream=%d;rule=%d,stream=%d;rule=%d",
391                 stream_nr, rule_nr * 2, stream_nr, rule_nr * 2 + 1);
392 }
393
394 static unsigned char *
395 rdt_parse_b64buf (unsigned int *target_len, const char *p)
396 {
397     unsigned char *target;
398     int len = strlen(p);
399     if (*p == '\"') {
400         p++;
401         len -= 2; /* skip embracing " at start/end */
402     }
403     *target_len = len * 3 / 4;
404     target = av_mallocz(*target_len + FF_INPUT_BUFFER_PADDING_SIZE);
405     av_base64_decode(target, p, *target_len);
406     return target;
407 }
408
409 static int
410 rdt_parse_sdp_line (AVFormatContext *s, int st_index,
411                     PayloadContext *rdt, const char *line)
412 {
413     AVStream *stream = s->streams[st_index];
414     const char *p = line;
415
416     if (av_strstart(p, "OpaqueData:buffer;", &p)) {
417         rdt->mlti_data = rdt_parse_b64buf(&rdt->mlti_data_size, p);
418     } else if (av_strstart(p, "StartTime:integer;", &p))
419         stream->first_dts = atoi(p);
420     else if (av_strstart(p, "ASMRuleBook:string;", &p)) {
421         int n, first = -1;
422
423         for (n = 0; n < s->nb_streams; n++)
424             if (s->streams[n]->priv_data == stream->priv_data) {
425                 int count = s->streams[n]->index + 1;
426                 if (first == -1) first = n;
427                 if (rdt->nb_rmst < count) {
428                     RMStream **rmst= av_realloc(rdt->rmst, count*sizeof(*rmst));
429                     if (!rmst)
430                         return AVERROR(ENOMEM);
431                     memset(rmst + rdt->nb_rmst, 0,
432                            (count - rdt->nb_rmst) * sizeof(*rmst));
433                     rdt->rmst    = rmst;
434                     rdt->nb_rmst = count;
435                 }
436                 rdt->rmst[s->streams[n]->index] = ff_rm_alloc_rmstream();
437                 rdt_load_mdpr(rdt, s->streams[n], (n - first) * 2);
438
439                 if (s->streams[n]->codec->codec_id == CODEC_ID_AAC)
440                     s->streams[n]->codec->frame_size = 1; // FIXME
441            }
442     }
443
444     return 0;
445 }
446
447 static void
448 real_parse_asm_rule(AVStream *st, const char *p, const char *end)
449 {
450     do {
451         /* can be either averagebandwidth= or AverageBandwidth= */
452         if (sscanf(p, " %*1[Aa]verage%*1[Bb]andwidth=%d", &st->codec->bit_rate) == 1)
453             break;
454         if (!(p = strchr(p, ',')) || p > end)
455             p = end;
456         p++;
457     } while (p < end);
458 }
459
460 static AVStream *
461 add_dstream(AVFormatContext *s, AVStream *orig_st)
462 {
463     AVStream *st;
464
465     if (!(st = av_new_stream(s, 0)))
466         return NULL;
467     st->codec->codec_type = orig_st->codec->codec_type;
468     st->priv_data         = orig_st->priv_data;
469     st->first_dts         = orig_st->first_dts;
470
471     return st;
472 }
473
474 static void
475 real_parse_asm_rulebook(AVFormatContext *s, AVStream *orig_st,
476                         const char *p)
477 {
478     const char *end;
479     int n_rules = 0, odd = 0;
480     AVStream *st;
481
482     /**
483      * The ASMRuleBook contains a list of comma-separated strings per rule,
484      * and each rule is separated by a ;. The last one also has a ; at the
485      * end so we can use it as delimiter.
486      * Every rule occurs twice, once for when the RTSP packet header marker
487      * is set and once for if it isn't. We only read the first because we
488      * don't care much (that's what the "odd" variable is for).
489      * Each rule contains a set of one or more statements, optionally
490      * preceeded by a single condition. If there's a condition, the rule
491      * starts with a '#'. Multiple conditions are merged between brackets,
492      * so there are never multiple conditions spread out over separate
493      * statements. Generally, these conditions are bitrate limits (min/max)
494      * for multi-bitrate streams.
495      */
496     if (*p == '\"') p++;
497     while (1) {
498         if (!(end = strchr(p, ';')))
499             break;
500         if (!odd && end != p) {
501             if (n_rules > 0)
502                 st = add_dstream(s, orig_st);
503             else
504                 st = orig_st;
505             if (!st)
506                 break;
507             real_parse_asm_rule(st, p, end);
508             n_rules++;
509         }
510         p = end + 1;
511         odd ^= 1;
512     }
513 }
514
515 void
516 ff_real_parse_sdp_a_line (AVFormatContext *s, int stream_index,
517                           const char *line)
518 {
519     const char *p = line;
520
521     if (av_strstart(p, "ASMRuleBook:string;", &p))
522         real_parse_asm_rulebook(s, s->streams[stream_index], p);
523 }
524
525 static PayloadContext *
526 rdt_new_context (void)
527 {
528     PayloadContext *rdt = av_mallocz(sizeof(PayloadContext));
529
530     av_open_input_stream(&rdt->rmctx, NULL, "", &rdt_demuxer, NULL);
531
532     return rdt;
533 }
534
535 static void
536 rdt_free_context (PayloadContext *rdt)
537 {
538     int i;
539
540     for (i = 0; i < rdt->nb_rmst; i++)
541         if (rdt->rmst[i]) {
542             ff_rm_free_rmstream(rdt->rmst[i]);
543             av_freep(&rdt->rmst[i]);
544         }
545     if (rdt->rmctx)
546         av_close_input_stream(rdt->rmctx);
547     av_freep(&rdt->mlti_data);
548     av_freep(&rdt->rmst);
549     av_free(rdt);
550 }
551
552 #define RDT_HANDLER(n, s, t) \
553 static RTPDynamicProtocolHandler ff_rdt_ ## n ## _handler = { \
554     .enc_name         = s, \
555     .codec_type       = t, \
556     .codec_id         = CODEC_ID_NONE, \
557     .parse_sdp_a_line = rdt_parse_sdp_line, \
558     .open             = rdt_new_context, \
559     .close            = rdt_free_context, \
560     .parse_packet     = rdt_parse_packet \
561 };
562
563 RDT_HANDLER(live_video, "x-pn-multirate-realvideo-live", AVMEDIA_TYPE_VIDEO);
564 RDT_HANDLER(live_audio, "x-pn-multirate-realaudio-live", AVMEDIA_TYPE_AUDIO);
565 RDT_HANDLER(video,      "x-pn-realvideo",                AVMEDIA_TYPE_VIDEO);
566 RDT_HANDLER(audio,      "x-pn-realaudio",                AVMEDIA_TYPE_AUDIO);
567
568 void av_register_rdt_dynamic_payload_handlers(void)
569 {
570     ff_register_dynamic_payload_handler(&ff_rdt_video_handler);
571     ff_register_dynamic_payload_handler(&ff_rdt_audio_handler);
572     ff_register_dynamic_payload_handler(&ff_rdt_live_video_handler);
573     ff_register_dynamic_payload_handler(&ff_rdt_live_audio_handler);
574 }