yading@11
|
1 /*
|
yading@11
|
2 * Realmedia RTSP (RDT) definitions
|
yading@11
|
3 * Copyright (c) 2007 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
yading@11
|
4 *
|
yading@11
|
5 * This file is part of FFmpeg.
|
yading@11
|
6 *
|
yading@11
|
7 * FFmpeg is free software; you can redistribute it and/or
|
yading@11
|
8 * modify it under the terms of the GNU Lesser General Public
|
yading@11
|
9 * License as published by the Free Software Foundation; either
|
yading@11
|
10 * version 2.1 of the License, or (at your option) any later version.
|
yading@11
|
11 *
|
yading@11
|
12 * FFmpeg is distributed in the hope that it will be useful,
|
yading@11
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@11
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@11
|
15 * Lesser General Public License for more details.
|
yading@11
|
16 *
|
yading@11
|
17 * You should have received a copy of the GNU Lesser General Public
|
yading@11
|
18 * License along with FFmpeg; if not, write to the Free Software
|
yading@11
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@11
|
20 */
|
yading@11
|
21
|
yading@11
|
22 #ifndef AVFORMAT_RDT_H
|
yading@11
|
23 #define AVFORMAT_RDT_H
|
yading@11
|
24
|
yading@11
|
25 #include <stdint.h>
|
yading@11
|
26 #include "avformat.h"
|
yading@11
|
27 #include "rtpdec.h"
|
yading@11
|
28
|
yading@11
|
29 typedef struct RDTDemuxContext RDTDemuxContext;
|
yading@11
|
30
|
yading@11
|
31 /**
|
yading@11
|
32 * Allocate and init the RDT parsing context.
|
yading@11
|
33 * @param ic the containing RTSP demuxer context
|
yading@11
|
34 * @param first_stream_of_set_idx index to the first AVStream in the RTSP
|
yading@11
|
35 * demuxer context's ic->streams array that is part of this
|
yading@11
|
36 * particular stream's set of streams (with identical content)
|
yading@11
|
37 * @param priv_data private data of the payload data handler context
|
yading@11
|
38 * @param handler pointer to the parse_packet() payload parsing function
|
yading@11
|
39 * @return a newly allocated RDTDemuxContext. Free with ff_rdt_parse_close().
|
yading@11
|
40 */
|
yading@11
|
41 RDTDemuxContext *ff_rdt_parse_open(AVFormatContext *ic,
|
yading@11
|
42 int first_stream_of_set_idx,
|
yading@11
|
43 void *priv_data,
|
yading@11
|
44 RTPDynamicProtocolHandler *handler);
|
yading@11
|
45 void ff_rdt_parse_close(RDTDemuxContext *s);
|
yading@11
|
46
|
yading@11
|
47 /**
|
yading@11
|
48 * Calculate the response (RealChallenge2 in the RTSP header) to the
|
yading@11
|
49 * challenge (RealChallenge1 in the RTSP header from the Real/Helix
|
yading@11
|
50 * server), which is used as some sort of client validation.
|
yading@11
|
51 *
|
yading@11
|
52 * @param response pointer to response buffer, it should be at least 41 bytes
|
yading@11
|
53 * (40 data + 1 zero) bytes long.
|
yading@11
|
54 * @param chksum pointer to buffer containing a checksum of the response,
|
yading@11
|
55 * it should be at least 9 (8 data + 1 zero) bytes long.
|
yading@11
|
56 * @param challenge pointer to the RealChallenge1 value provided by the
|
yading@11
|
57 * server.
|
yading@11
|
58 */
|
yading@11
|
59 void ff_rdt_calc_response_and_checksum(char response[41], char chksum[9],
|
yading@11
|
60 const char *challenge);
|
yading@11
|
61
|
yading@11
|
62 /**
|
yading@11
|
63 * Register RDT-related dynamic payload handlers with our cache.
|
yading@11
|
64 */
|
yading@11
|
65 void av_register_rdt_dynamic_payload_handlers(void);
|
yading@11
|
66
|
yading@11
|
67 /**
|
yading@11
|
68 * Add subscription information to Subscribe parameter string.
|
yading@11
|
69 *
|
yading@11
|
70 * @param cmd string to write the subscription information into.
|
yading@11
|
71 * @param size size of cmd.
|
yading@11
|
72 * @param stream_nr stream number.
|
yading@11
|
73 * @param rule_nr rule number to conform to.
|
yading@11
|
74 */
|
yading@11
|
75 void ff_rdt_subscribe_rule(char *cmd, int size,
|
yading@11
|
76 int stream_nr, int rule_nr);
|
yading@11
|
77
|
yading@11
|
78 /**
|
yading@11
|
79 * Parse RDT-style packet header.
|
yading@11
|
80 *
|
yading@11
|
81 * @param buf input buffer
|
yading@11
|
82 * @param len length of input buffer
|
yading@11
|
83 * @param pset_id will be set to the set ID this packet belongs to
|
yading@11
|
84 * @param pseq_no will be set to the sequence number of the packet
|
yading@11
|
85 * @param pstream_id will be set to the stream ID this packet belongs to
|
yading@11
|
86 * @param pis_keyframe will be whether this packet belongs to a keyframe
|
yading@11
|
87 * @param ptimestamp will be set to the timestamp of the packet
|
yading@11
|
88 * @return the amount of bytes consumed, or negative on error
|
yading@11
|
89 */
|
yading@11
|
90 int ff_rdt_parse_header(const uint8_t *buf, int len,
|
yading@11
|
91 int *pset_id, int *pseq_no, int *pstream_id,
|
yading@11
|
92 int *pis_keyframe, uint32_t *ptimestamp);
|
yading@11
|
93
|
yading@11
|
94 /**
|
yading@11
|
95 * Parse RDT-style packet data (header + media data).
|
yading@11
|
96 * Usage similar to rtp_parse_packet().
|
yading@11
|
97 */
|
yading@11
|
98 int ff_rdt_parse_packet(RDTDemuxContext *s, AVPacket *pkt,
|
yading@11
|
99 uint8_t **buf, int len);
|
yading@11
|
100
|
yading@11
|
101 /**
|
yading@11
|
102 * Parse a server-related SDP line.
|
yading@11
|
103 *
|
yading@11
|
104 * @param s the RTSP AVFormatContext
|
yading@11
|
105 * @param stream_index the index of the first stream in the set represented
|
yading@11
|
106 * by the SDP m= line (in s->streams)
|
yading@11
|
107 * @param buf the SDP line
|
yading@11
|
108 */
|
yading@11
|
109 void ff_real_parse_sdp_a_line(AVFormatContext *s, int stream_index,
|
yading@11
|
110 const char *buf);
|
yading@11
|
111
|
yading@11
|
112 #endif /* AVFORMAT_RDT_H */
|