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