Mercurial > libavformat.hg
annotate rtp.c @ 790:80aec794c2ed libavformat
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
author | michael |
---|---|
date | Sat, 18 Jun 2005 01:52:24 +0000 |
parents | b071a272ec7e |
children | feca73904e67 |
rev | line source |
---|---|
0 | 1 /* |
2 * RTP input/output format | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 #include "avformat.h" | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
20 #include "mpegts.h" |
774 | 21 #include "bitstream.h" |
0 | 22 |
23 #include <unistd.h> | |
24 #include <sys/types.h> | |
25 #include <sys/socket.h> | |
26 #include <netinet/in.h> | |
27 #ifndef __BEOS__ | |
28 # include <arpa/inet.h> | |
29 #else | |
30 # include "barpainet.h" | |
31 #endif | |
32 #include <netdb.h> | |
33 | |
34 //#define DEBUG | |
35 | |
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 'url_open_dyn_packet_buf') | |
44 */ | |
45 | |
774 | 46 /* from http://www.iana.org/assignments/rtp-parameters last updated 05 January 2005 */ |
47 AVRtpPayloadType_t AVRtpPayloadTypes[]= | |
48 { | |
49 {0, "PCMU", CODEC_TYPE_AUDIO, CODEC_ID_PCM_MULAW, 8000, 1}, | |
50 {1, "Reserved", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
51 {2, "Reserved", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
52 {3, "GSM", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
53 {4, "G723", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
54 {5, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
55 {6, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 16000, 1}, | |
56 {7, "LPC", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
57 {8, "PCMA", CODEC_TYPE_AUDIO, CODEC_ID_PCM_ALAW, 8000, 1}, | |
58 {9, "G722", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
59 {10, "L16", CODEC_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 2}, | |
60 {11, "L16", CODEC_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 1}, | |
61 {12, "QCELP", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
62 {13, "CN", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
63 {14, "MPA", CODEC_TYPE_AUDIO, CODEC_ID_MP2, 90000, -1}, | |
64 {15, "G728", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
65 {16, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 11025, 1}, | |
66 {17, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 22050, 1}, | |
67 {18, "G729", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, | |
68 {19, "reserved", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1}, | |
69 {20, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1}, | |
70 {21, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1}, | |
71 {22, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1}, | |
72 {23, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1}, | |
73 {24, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1}, | |
74 {25, "CelB", CODEC_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1}, | |
75 {26, "JPEG", CODEC_TYPE_VIDEO, CODEC_ID_MJPEG, 90000, -1}, | |
76 {27, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1}, | |
77 {28, "nv", CODEC_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1}, | |
78 {29, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1}, | |
79 {30, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1}, | |
80 {31, "H261", CODEC_TYPE_VIDEO, CODEC_ID_H261, 90000, -1}, | |
81 {32, "MPV", CODEC_TYPE_VIDEO, CODEC_ID_MPEG1VIDEO, 90000, -1}, | |
82 {33, "MP2T", CODEC_TYPE_DATA, CODEC_ID_MPEG2TS, 90000, -1}, | |
83 {34, "H263", CODEC_TYPE_VIDEO, CODEC_ID_H263, 90000, -1}, | |
84 {35, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
85 {36, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
86 {37, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
87 {38, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
88 {39, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
89 {40, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
90 {41, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
91 {42, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
92 {43, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
93 {44, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
94 {45, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
95 {46, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
96 {47, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
97 {48, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
98 {49, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
99 {50, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
100 {51, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
101 {52, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
102 {53, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
103 {54, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
104 {55, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
105 {56, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
106 {57, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
107 {58, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
108 {59, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
109 {60, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
110 {61, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
111 {62, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
112 {63, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
113 {64, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
114 {65, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
115 {66, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
116 {67, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
117 {68, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
118 {69, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
119 {70, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
120 {71, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
121 {72, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
122 {73, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
123 {74, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
124 {75, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
125 {76, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
126 {77, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
127 {78, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
128 {79, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
129 {80, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
130 {81, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
131 {82, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
132 {83, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
133 {84, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
134 {85, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
135 {86, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
136 {87, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
137 {88, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
138 {89, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
139 {90, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
140 {91, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
141 {92, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
142 {93, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
143 {94, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
144 {95, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
145 {96, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
146 {97, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
147 {98, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
148 {99, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
149 {100, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
150 {101, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
151 {102, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
152 {103, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
153 {104, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
154 {105, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
155 {106, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
156 {107, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
157 {108, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
158 {109, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
159 {110, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
160 {111, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
161 {112, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
162 {113, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
163 {114, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
164 {115, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
165 {116, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
166 {117, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
167 {118, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
168 {119, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
169 {120, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
170 {121, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
171 {122, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
172 {123, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
173 {124, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
174 {125, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
175 {126, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
176 {127, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}, | |
177 {-1, "", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1} | |
178 }; | |
0 | 179 |
774 | 180 AVRtpDynamicPayloadType_t AVRtpDynamicPayloadTypes[]= |
181 { | |
182 {"MP4V-ES", CODEC_TYPE_VIDEO, CODEC_ID_MPEG4}, | |
183 {"mpeg4-generic", CODEC_TYPE_AUDIO, CODEC_ID_MPEG4AAC}, | |
184 {"", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE} | |
185 }; | |
0 | 186 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
187 struct RTPDemuxContext { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
188 AVFormatContext *ic; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
189 AVStream *st; |
0 | 190 int payload_type; |
65 | 191 uint32_t ssrc; |
192 uint16_t seq; | |
193 uint32_t timestamp; | |
194 uint32_t base_timestamp; | |
195 uint32_t cur_timestamp; | |
0 | 196 int max_payload_size; |
774 | 197 MpegTSContext *ts; /* only used for MP2T payloads */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
198 int read_buf_index; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
199 int read_buf_size; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
200 |
0 | 201 /* rtcp sender statistics receive */ |
65 | 202 int64_t last_rtcp_ntp_time; |
173 | 203 int64_t first_rtcp_ntp_time; |
65 | 204 uint32_t last_rtcp_timestamp; |
0 | 205 /* rtcp sender statistics */ |
206 unsigned int packet_count; | |
207 unsigned int octet_count; | |
208 unsigned int last_octet_count; | |
209 int first_packet; | |
210 /* buffer for output */ | |
65 | 211 uint8_t buf[RTP_MAX_PACKET_LENGTH]; |
212 uint8_t *buf_ptr; | |
774 | 213 /* special infos for au headers parsing */ |
214 rtp_payload_data_t *rtp_payload_data; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
215 }; |
0 | 216 |
217 int rtp_get_codec_info(AVCodecContext *codec, int payload_type) | |
218 { | |
774 | 219 if (AVRtpPayloadTypes[payload_type].codec_id != CODEC_ID_NONE) { |
220 codec->codec_type = AVRtpPayloadTypes[payload_type].codec_type; | |
221 codec->codec_id = AVRtpPayloadTypes[payload_type].codec_type; | |
222 if (AVRtpPayloadTypes[payload_type].audio_channels > 0) | |
223 codec->channels = AVRtpPayloadTypes[payload_type].audio_channels; | |
224 if (AVRtpPayloadTypes[payload_type].clock_rate > 0) | |
225 codec->sample_rate = AVRtpPayloadTypes[payload_type].clock_rate; | |
226 return 0; | |
0 | 227 } |
774 | 228 return -1; |
0 | 229 } |
230 | |
231 /* return < 0 if unknown payload type */ | |
232 int rtp_get_payload_type(AVCodecContext *codec) | |
233 { | |
774 | 234 int i, payload_type; |
0 | 235 |
236 /* compute the payload type */ | |
774 | 237 for (payload_type = -1, i = 0; AVRtpPayloadTypes[i].pt >= 0; ++i) |
238 if (AVRtpPayloadTypes[i].codec_id == codec->codec_id) { | |
239 if (codec->codec_id == CODEC_ID_PCM_S16BE) | |
240 if (codec->channels != AVRtpPayloadTypes[i].audio_channels) | |
241 continue; | |
242 payload_type = AVRtpPayloadTypes[i].pt; | |
0 | 243 } |
244 return payload_type; | |
245 } | |
246 | |
65 | 247 static inline uint32_t decode_be32(const uint8_t *p) |
0 | 248 { |
249 return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]; | |
250 } | |
251 | |
173 | 252 static inline uint64_t decode_be64(const uint8_t *p) |
0 | 253 { |
65 | 254 return ((uint64_t)decode_be32(p) << 32) | decode_be32(p + 4); |
0 | 255 } |
256 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
257 static int rtcp_parse_packet(RTPDemuxContext *s, const unsigned char *buf, int len) |
0 | 258 { |
259 if (buf[1] != 200) | |
260 return -1; | |
261 s->last_rtcp_ntp_time = decode_be64(buf + 8); | |
173 | 262 if (s->first_rtcp_ntp_time == AV_NOPTS_VALUE) |
263 s->first_rtcp_ntp_time = s->last_rtcp_ntp_time; | |
0 | 264 s->last_rtcp_timestamp = decode_be32(buf + 16); |
265 return 0; | |
266 } | |
267 | |
268 /** | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
269 * open a new RTP parse context for stream 'st'. 'st' can be NULL for |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
270 * MPEG2TS streams to indicate that they should be demuxed inside the |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
271 * rtp demux (otherwise CODEC_ID_MPEG2TS packets are returned) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
272 */ |
774 | 273 RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type, rtp_payload_data_t *rtp_payload_data) |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
274 { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
275 RTPDemuxContext *s; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
276 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
277 s = av_mallocz(sizeof(RTPDemuxContext)); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
278 if (!s) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
279 return NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
280 s->payload_type = payload_type; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
281 s->last_rtcp_ntp_time = AV_NOPTS_VALUE; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
282 s->first_rtcp_ntp_time = AV_NOPTS_VALUE; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
283 s->ic = s1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
284 s->st = st; |
774 | 285 s->rtp_payload_data = rtp_payload_data; |
286 if (!strcmp(AVRtpPayloadTypes[payload_type].enc_name, "MP2T")) { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
287 s->ts = mpegts_parse_open(s->ic); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
288 if (s->ts == NULL) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
289 av_free(s); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
290 return NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
291 } |
305 | 292 } else { |
293 switch(st->codec.codec_id) { | |
294 case CODEC_ID_MPEG1VIDEO: | |
295 case CODEC_ID_MPEG2VIDEO: | |
296 case CODEC_ID_MP2: | |
297 case CODEC_ID_MP3: | |
298 case CODEC_ID_MPEG4: | |
299 st->need_parsing = 1; | |
300 break; | |
301 default: | |
302 break; | |
303 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
304 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
305 return s; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
306 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
307 |
774 | 308 static int rtp_parse_mp4_au(RTPDemuxContext *s, const uint8_t *buf) |
309 { | |
310 AVCodecContext codec; | |
311 int au_headers_length, au_header_size, i; | |
312 GetBitContext getbitcontext; | |
313 rtp_payload_data_t *infos; | |
314 | |
315 infos = s->rtp_payload_data; | |
316 | |
317 if (infos == NULL) | |
318 return -1; | |
319 | |
320 codec = s->st->codec; | |
321 | |
322 /* decode the first 2 bytes where are stored the AUHeader sections | |
323 length in bits */ | |
324 au_headers_length = BE_16(buf); | |
325 | |
326 if (au_headers_length > RTP_MAX_PACKET_LENGTH) | |
327 return -1; | |
328 | |
329 infos->au_headers_length_bytes = (au_headers_length + 7) / 8; | |
330 | |
331 /* skip AU headers length section (2 bytes) */ | |
332 buf += 2; | |
333 | |
334 init_get_bits(&getbitcontext, buf, infos->au_headers_length_bytes * 8); | |
335 | |
336 /* XXX: Wrong if optionnal additional sections are present (cts, dts etc...) */ | |
337 au_header_size = infos->sizelength + infos->indexlength; | |
338 if (au_header_size <= 0 || (au_headers_length % au_header_size != 0)) | |
339 return -1; | |
340 | |
341 infos->nb_au_headers = au_headers_length / au_header_size; | |
342 infos->au_headers = av_malloc(sizeof(struct AUHeaders) * infos->nb_au_headers); | |
343 | |
344 /* XXX: We handle multiple AU Section as only one (need to fix this for interleaving) | |
345 In my test, the faad decoder doesnt behave correctly when sending each AU one by one | |
346 but does when sending the whole as one big packet... */ | |
347 infos->au_headers[0].size = 0; | |
348 infos->au_headers[0].index = 0; | |
349 for (i = 0; i < infos->nb_au_headers; ++i) { | |
350 infos->au_headers[0].size += get_bits_long(&getbitcontext, infos->sizelength); | |
351 infos->au_headers[0].index = get_bits_long(&getbitcontext, infos->indexlength); | |
352 } | |
353 | |
354 infos->nb_au_headers = 1; | |
355 | |
356 return 0; | |
357 } | |
358 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
359 /** |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
360 * Parse an RTP or RTCP packet directly sent as a buffer. |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
361 * @param s RTP parse context. |
0 | 362 * @param pkt returned packet |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
363 * @param buf input buffer or NULL to read the next packets |
0 | 364 * @param len buffer len |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
365 * @return 0 if a packet is returned, 1 if a packet is returned and more can follow |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
366 * (use buf as NULL to read the next). -1 if no packet (error or no more packet). |
0 | 367 */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
368 int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
369 const uint8_t *buf, int len) |
0 | 370 { |
371 unsigned int ssrc, h; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
372 int payload_type, seq, delta_timestamp, ret; |
0 | 373 AVStream *st; |
65 | 374 uint32_t timestamp; |
0 | 375 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
376 if (!buf) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
377 /* return the next packets, if any */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
378 if (s->read_buf_index >= s->read_buf_size) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
379 return -1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
380 ret = mpegts_parse_packet(s->ts, pkt, s->buf + s->read_buf_index, |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
381 s->read_buf_size - s->read_buf_index); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
382 if (ret < 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
383 return -1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
384 s->read_buf_index += ret; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
385 if (s->read_buf_index < s->read_buf_size) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
386 return 1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
387 else |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
388 return 0; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
389 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
390 |
0 | 391 if (len < 12) |
392 return -1; | |
393 | |
394 if ((buf[0] & 0xc0) != (RTP_VERSION << 6)) | |
395 return -1; | |
396 if (buf[1] >= 200 && buf[1] <= 204) { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
397 rtcp_parse_packet(s, buf, len); |
0 | 398 return -1; |
399 } | |
400 payload_type = buf[1] & 0x7f; | |
401 seq = (buf[2] << 8) | buf[3]; | |
402 timestamp = decode_be32(buf + 4); | |
403 ssrc = decode_be32(buf + 8); | |
404 | |
405 /* NOTE: we can handle only one payload type */ | |
406 if (s->payload_type != payload_type) | |
407 return -1; | |
408 #if defined(DEBUG) || 1 | |
409 if (seq != ((s->seq + 1) & 0xffff)) { | |
370
845f9de2c883
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
305
diff
changeset
|
410 av_log(&s->st->codec, AV_LOG_ERROR, "RTP: PT=%02x: bad cseq %04x expected=%04x\n", |
0 | 411 payload_type, seq, ((s->seq + 1) & 0xffff)); |
412 } | |
774 | 413 #endif |
0 | 414 s->seq = seq; |
415 len -= 12; | |
416 buf += 12; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
417 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
418 st = s->st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
419 if (!st) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
420 /* specific MPEG2TS demux support */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
421 ret = mpegts_parse_packet(s->ts, pkt, buf, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
422 if (ret < 0) |
0 | 423 return -1; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
424 if (ret < len) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
425 s->read_buf_size = len - ret; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
426 memcpy(s->buf, buf + ret, s->read_buf_size); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
427 s->read_buf_index = 0; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
428 return 1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
429 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
430 } else { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
431 switch(st->codec.codec_id) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
432 case CODEC_ID_MP2: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
433 /* better than nothing: skip mpeg audio RTP header */ |
0 | 434 if (len <= 4) |
435 return -1; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
436 h = decode_be32(buf); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
437 len -= 4; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
438 buf += 4; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
439 av_new_packet(pkt, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
440 memcpy(pkt->data, buf, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
441 break; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
442 case CODEC_ID_MPEG1VIDEO: |
305 | 443 /* better than nothing: skip mpeg video RTP header */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
444 if (len <= 4) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
445 return -1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
446 h = decode_be32(buf); |
0 | 447 buf += 4; |
448 len -= 4; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
449 if (h & (1 << 26)) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
450 /* mpeg2 */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
451 if (len <= 4) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
452 return -1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
453 buf += 4; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
454 len -= 4; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
455 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
456 av_new_packet(pkt, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
457 memcpy(pkt->data, buf, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
458 break; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
459 default: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
460 av_new_packet(pkt, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
461 memcpy(pkt->data, buf, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
462 break; |
0 | 463 } |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
464 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
465 switch(st->codec.codec_id) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
466 case CODEC_ID_MP2: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
467 case CODEC_ID_MPEG1VIDEO: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
468 if (s->last_rtcp_ntp_time != AV_NOPTS_VALUE) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
469 int64_t addend; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
470 /* XXX: is it really necessary to unify the timestamp base ? */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
471 /* compute pts from timestamp with received ntp_time */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
472 delta_timestamp = timestamp - s->last_rtcp_timestamp; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
473 /* convert to 90 kHz without overflow */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
474 addend = (s->last_rtcp_ntp_time - s->first_rtcp_ntp_time) >> 14; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
475 addend = (addend * 5625) >> 14; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
476 pkt->pts = addend + delta_timestamp; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
477 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
478 break; |
774 | 479 case CODEC_ID_MPEG4: |
480 pkt->pts = timestamp; | |
481 break; | |
482 case CODEC_ID_MPEG4AAC: | |
483 if (rtp_parse_mp4_au(s, buf)) | |
484 return -1; | |
777
b071a272ec7e
trivial pre-C99 fix for rtp.c by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
774
diff
changeset
|
485 { |
774 | 486 rtp_payload_data_t *infos = s->rtp_payload_data; |
487 if (infos == NULL) | |
488 return -1; | |
489 buf += infos->au_headers_length_bytes + 2; | |
490 len -= infos->au_headers_length_bytes + 2; | |
491 | |
492 /* XXX: Fixme we only handle the case where rtp_parse_mp4_au define | |
493 one au_header */ | |
494 av_new_packet(pkt, infos->au_headers[0].size); | |
495 memcpy(pkt->data, buf, infos->au_headers[0].size); | |
496 buf += infos->au_headers[0].size; | |
497 len -= infos->au_headers[0].size; | |
777
b071a272ec7e
trivial pre-C99 fix for rtp.c by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
774
diff
changeset
|
498 } |
774 | 499 s->read_buf_size = len; |
500 s->buf_ptr = (char *)buf; | |
501 pkt->stream_index = s->st->index; | |
502 return 0; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
503 default: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
504 /* no timestamp info yet */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
505 break; |
173 | 506 } |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
507 pkt->stream_index = s->st->index; |
0 | 508 } |
509 return 0; | |
510 } | |
511 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
512 void rtp_parse_close(RTPDemuxContext *s) |
0 | 513 { |
774 | 514 if (!strcmp(AVRtpPayloadTypes[s->payload_type].enc_name, "MP2T")) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
515 mpegts_parse_close(s->ts); |
0 | 516 } |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
517 av_free(s); |
0 | 518 } |
519 | |
520 /* rtp output */ | |
521 | |
522 static int rtp_write_header(AVFormatContext *s1) | |
523 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
524 RTPDemuxContext *s = s1->priv_data; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
525 int payload_type, max_packet_size, n; |
0 | 526 AVStream *st; |
527 | |
528 if (s1->nb_streams != 1) | |
529 return -1; | |
530 st = s1->streams[0]; | |
531 | |
532 payload_type = rtp_get_payload_type(&st->codec); | |
533 if (payload_type < 0) | |
534 payload_type = RTP_PT_PRIVATE; /* private payload type */ | |
535 s->payload_type = payload_type; | |
536 | |
537 s->base_timestamp = random(); | |
538 s->timestamp = s->base_timestamp; | |
539 s->ssrc = random(); | |
540 s->first_packet = 1; | |
541 | |
542 max_packet_size = url_fget_max_packet_size(&s1->pb); | |
543 if (max_packet_size <= 12) | |
544 return AVERROR_IO; | |
545 s->max_payload_size = max_packet_size - 12; | |
546 | |
547 switch(st->codec.codec_id) { | |
548 case CODEC_ID_MP2: | |
232 | 549 case CODEC_ID_MP3: |
0 | 550 s->buf_ptr = s->buf + 4; |
551 s->cur_timestamp = 0; | |
552 break; | |
553 case CODEC_ID_MPEG1VIDEO: | |
554 s->cur_timestamp = 0; | |
555 break; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
556 case CODEC_ID_MPEG2TS: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
557 n = s->max_payload_size / TS_PACKET_SIZE; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
558 if (n < 1) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
559 n = 1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
560 s->max_payload_size = n * TS_PACKET_SIZE; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
561 s->buf_ptr = s->buf; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
562 break; |
0 | 563 default: |
564 s->buf_ptr = s->buf; | |
565 break; | |
566 } | |
567 | |
568 return 0; | |
569 } | |
570 | |
571 /* send an rtcp sender report packet */ | |
65 | 572 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time) |
0 | 573 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
574 RTPDemuxContext *s = s1->priv_data; |
0 | 575 #if defined(DEBUG) |
576 printf("RTCP: %02x %Lx %x\n", s->payload_type, ntp_time, s->timestamp); | |
577 #endif | |
578 put_byte(&s1->pb, (RTP_VERSION << 6)); | |
579 put_byte(&s1->pb, 200); | |
580 put_be16(&s1->pb, 6); /* length in words - 1 */ | |
581 put_be32(&s1->pb, s->ssrc); | |
582 put_be64(&s1->pb, ntp_time); | |
583 put_be32(&s1->pb, s->timestamp); | |
584 put_be32(&s1->pb, s->packet_count); | |
585 put_be32(&s1->pb, s->octet_count); | |
586 put_flush_packet(&s1->pb); | |
587 } | |
588 | |
589 /* send an rtp packet. sequence number is incremented, but the caller | |
590 must update the timestamp itself */ | |
241 | 591 static void rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len) |
0 | 592 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
593 RTPDemuxContext *s = s1->priv_data; |
0 | 594 |
595 #ifdef DEBUG | |
596 printf("rtp_send_data size=%d\n", len); | |
597 #endif | |
598 | |
599 /* build the RTP header */ | |
600 put_byte(&s1->pb, (RTP_VERSION << 6)); | |
601 put_byte(&s1->pb, s->payload_type & 0x7f); | |
602 put_be16(&s1->pb, s->seq); | |
603 put_be32(&s1->pb, s->timestamp); | |
604 put_be32(&s1->pb, s->ssrc); | |
605 | |
606 put_buffer(&s1->pb, buf1, len); | |
607 put_flush_packet(&s1->pb); | |
608 | |
609 s->seq++; | |
610 s->octet_count += len; | |
611 s->packet_count++; | |
612 } | |
613 | |
614 /* send an integer number of samples and compute time stamp and fill | |
615 the rtp send buffer before sending. */ | |
616 static void rtp_send_samples(AVFormatContext *s1, | |
241 | 617 const uint8_t *buf1, int size, int sample_size) |
0 | 618 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
619 RTPDemuxContext *s = s1->priv_data; |
0 | 620 int len, max_packet_size, n; |
621 | |
622 max_packet_size = (s->max_payload_size / sample_size) * sample_size; | |
623 /* not needed, but who nows */ | |
624 if ((size % sample_size) != 0) | |
625 av_abort(); | |
626 while (size > 0) { | |
627 len = (max_packet_size - (s->buf_ptr - s->buf)); | |
628 if (len > size) | |
629 len = size; | |
630 | |
631 /* copy data */ | |
632 memcpy(s->buf_ptr, buf1, len); | |
633 s->buf_ptr += len; | |
634 buf1 += len; | |
635 size -= len; | |
636 n = (s->buf_ptr - s->buf); | |
637 /* if buffer full, then send it */ | |
638 if (n >= max_packet_size) { | |
639 rtp_send_data(s1, s->buf, n); | |
640 s->buf_ptr = s->buf; | |
641 /* update timestamp */ | |
642 s->timestamp += n / sample_size; | |
643 } | |
644 } | |
645 } | |
646 | |
647 /* NOTE: we suppose that exactly one frame is given as argument here */ | |
648 /* XXX: test it */ | |
649 static void rtp_send_mpegaudio(AVFormatContext *s1, | |
241 | 650 const uint8_t *buf1, int size) |
0 | 651 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
652 RTPDemuxContext *s = s1->priv_data; |
0 | 653 AVStream *st = s1->streams[0]; |
654 int len, count, max_packet_size; | |
655 | |
656 max_packet_size = s->max_payload_size; | |
657 | |
658 /* test if we must flush because not enough space */ | |
659 len = (s->buf_ptr - s->buf); | |
660 if ((len + size) > max_packet_size) { | |
661 if (len > 4) { | |
662 rtp_send_data(s1, s->buf, s->buf_ptr - s->buf); | |
663 s->buf_ptr = s->buf + 4; | |
664 /* 90 KHz time stamp */ | |
665 s->timestamp = s->base_timestamp + | |
666 (s->cur_timestamp * 90000LL) / st->codec.sample_rate; | |
667 } | |
668 } | |
669 | |
670 /* add the packet */ | |
671 if (size > max_packet_size) { | |
672 /* big packet: fragment */ | |
673 count = 0; | |
674 while (size > 0) { | |
675 len = max_packet_size - 4; | |
676 if (len > size) | |
677 len = size; | |
678 /* build fragmented packet */ | |
679 s->buf[0] = 0; | |
680 s->buf[1] = 0; | |
681 s->buf[2] = count >> 8; | |
682 s->buf[3] = count; | |
683 memcpy(s->buf + 4, buf1, len); | |
684 rtp_send_data(s1, s->buf, len + 4); | |
685 size -= len; | |
686 buf1 += len; | |
687 count += len; | |
688 } | |
689 } else { | |
690 if (s->buf_ptr == s->buf + 4) { | |
691 /* no fragmentation possible */ | |
692 s->buf[0] = 0; | |
693 s->buf[1] = 0; | |
694 s->buf[2] = 0; | |
695 s->buf[3] = 0; | |
696 } | |
697 memcpy(s->buf_ptr, buf1, size); | |
698 s->buf_ptr += size; | |
699 } | |
700 s->cur_timestamp += st->codec.frame_size; | |
701 } | |
702 | |
703 /* NOTE: a single frame must be passed with sequence header if | |
704 needed. XXX: use slices. */ | |
705 static void rtp_send_mpegvideo(AVFormatContext *s1, | |
241 | 706 const uint8_t *buf1, int size) |
0 | 707 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
708 RTPDemuxContext *s = s1->priv_data; |
0 | 709 AVStream *st = s1->streams[0]; |
710 int len, h, max_packet_size; | |
65 | 711 uint8_t *q; |
0 | 712 |
713 max_packet_size = s->max_payload_size; | |
714 | |
715 while (size > 0) { | |
716 /* XXX: more correct headers */ | |
717 h = 0; | |
718 if (st->codec.sub_id == 2) | |
719 h |= 1 << 26; /* mpeg 2 indicator */ | |
720 q = s->buf; | |
721 *q++ = h >> 24; | |
722 *q++ = h >> 16; | |
723 *q++ = h >> 8; | |
724 *q++ = h; | |
725 | |
726 if (st->codec.sub_id == 2) { | |
727 h = 0; | |
728 *q++ = h >> 24; | |
729 *q++ = h >> 16; | |
730 *q++ = h >> 8; | |
731 *q++ = h; | |
732 } | |
733 | |
734 len = max_packet_size - (q - s->buf); | |
735 if (len > size) | |
736 len = size; | |
737 | |
738 memcpy(q, buf1, len); | |
739 q += len; | |
740 | |
741 /* 90 KHz time stamp */ | |
742 s->timestamp = s->base_timestamp + | |
743 | 743 av_rescale((int64_t)s->cur_timestamp * st->codec.time_base.num, 90000, st->codec.time_base.den); //FIXME pass timestamps |
0 | 744 rtp_send_data(s1, s->buf, q - s->buf); |
745 | |
746 buf1 += len; | |
747 size -= len; | |
748 } | |
749 s->cur_timestamp++; | |
750 } | |
751 | |
752 static void rtp_send_raw(AVFormatContext *s1, | |
241 | 753 const uint8_t *buf1, int size) |
0 | 754 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
755 RTPDemuxContext *s = s1->priv_data; |
0 | 756 AVStream *st = s1->streams[0]; |
757 int len, max_packet_size; | |
758 | |
759 max_packet_size = s->max_payload_size; | |
760 | |
761 while (size > 0) { | |
762 len = max_packet_size; | |
763 if (len > size) | |
764 len = size; | |
765 | |
766 /* 90 KHz time stamp */ | |
767 s->timestamp = s->base_timestamp + | |
743 | 768 av_rescale((int64_t)s->cur_timestamp * st->codec.time_base.num, 90000, st->codec.time_base.den); //FIXME pass timestamps |
0 | 769 rtp_send_data(s1, buf1, len); |
770 | |
771 buf1 += len; | |
772 size -= len; | |
773 } | |
774 s->cur_timestamp++; | |
775 } | |
776 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
777 /* NOTE: size is assumed to be an integer multiple of TS_PACKET_SIZE */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
778 static void rtp_send_mpegts_raw(AVFormatContext *s1, |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
779 const uint8_t *buf1, int size) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
780 { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
781 RTPDemuxContext *s = s1->priv_data; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
782 int len, out_len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
783 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
784 while (size >= TS_PACKET_SIZE) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
785 len = s->max_payload_size - (s->buf_ptr - s->buf); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
786 if (len > size) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
787 len = size; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
788 memcpy(s->buf_ptr, buf1, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
789 buf1 += len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
790 size -= len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
791 s->buf_ptr += len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
792 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
793 out_len = s->buf_ptr - s->buf; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
794 if (out_len >= s->max_payload_size) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
795 rtp_send_data(s1, s->buf, out_len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
796 s->buf_ptr = s->buf; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
797 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
798 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
799 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
800 |
0 | 801 /* write an RTP packet. 'buf1' must contain a single specific frame. */ |
468 | 802 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) |
0 | 803 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
804 RTPDemuxContext *s = s1->priv_data; |
0 | 805 AVStream *st = s1->streams[0]; |
806 int rtcp_bytes; | |
65 | 807 int64_t ntp_time; |
468 | 808 int size= pkt->size; |
809 uint8_t *buf1= pkt->data; | |
0 | 810 |
811 #ifdef DEBUG | |
468 | 812 printf("%d: write len=%d\n", pkt->stream_index, size); |
0 | 813 #endif |
814 | |
815 /* XXX: mpeg pts hardcoded. RTCP send every 0.5 seconds */ | |
816 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) / | |
817 RTCP_TX_RATIO_DEN; | |
818 if (s->first_packet || rtcp_bytes >= 28) { | |
819 /* compute NTP time */ | |
173 | 820 /* XXX: 90 kHz timestamp hardcoded */ |
468 | 821 ntp_time = (pkt->pts << 28) / 5625; |
0 | 822 rtcp_send_sr(s1, ntp_time); |
823 s->last_octet_count = s->octet_count; | |
824 s->first_packet = 0; | |
825 } | |
826 | |
827 switch(st->codec.codec_id) { | |
828 case CODEC_ID_PCM_MULAW: | |
829 case CODEC_ID_PCM_ALAW: | |
830 case CODEC_ID_PCM_U8: | |
831 case CODEC_ID_PCM_S8: | |
832 rtp_send_samples(s1, buf1, size, 1 * st->codec.channels); | |
833 break; | |
834 case CODEC_ID_PCM_U16BE: | |
835 case CODEC_ID_PCM_U16LE: | |
836 case CODEC_ID_PCM_S16BE: | |
837 case CODEC_ID_PCM_S16LE: | |
838 rtp_send_samples(s1, buf1, size, 2 * st->codec.channels); | |
839 break; | |
840 case CODEC_ID_MP2: | |
232 | 841 case CODEC_ID_MP3: |
0 | 842 rtp_send_mpegaudio(s1, buf1, size); |
843 break; | |
844 case CODEC_ID_MPEG1VIDEO: | |
845 rtp_send_mpegvideo(s1, buf1, size); | |
846 break; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
847 case CODEC_ID_MPEG2TS: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
848 rtp_send_mpegts_raw(s1, buf1, size); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
849 break; |
0 | 850 default: |
851 /* better than nothing : send the codec raw data */ | |
852 rtp_send_raw(s1, buf1, size); | |
853 break; | |
854 } | |
855 return 0; | |
856 } | |
857 | |
858 static int rtp_write_trailer(AVFormatContext *s1) | |
859 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
860 // RTPDemuxContext *s = s1->priv_data; |
0 | 861 return 0; |
862 } | |
863 | |
864 AVOutputFormat rtp_mux = { | |
865 "rtp", | |
866 "RTP output format", | |
867 NULL, | |
868 NULL, | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
869 sizeof(RTPDemuxContext), |
0 | 870 CODEC_ID_PCM_MULAW, |
871 CODEC_ID_NONE, | |
872 rtp_write_header, | |
873 rtp_write_packet, | |
874 rtp_write_trailer, | |
875 }; | |
876 | |
877 int rtp_init(void) | |
878 { | |
879 av_register_output_format(&rtp_mux); | |
880 return 0; | |
881 } |