Mercurial > libavformat.hg
annotate rtpenc.c @ 5769:faa085c983d5 libavformat
Fix pts->dts conversion init for non-zero initial value for pts.
Patch by Daniel Kristjansson, danielk cuymedia net
author | cehoyos |
---|---|
date | Sun, 07 Mar 2010 23:10:18 +0000 |
parents | 7826bf683210 |
children | f4ca0041b4f4 |
rev | line source |
---|---|
0 | 1 /* |
2892
0d82fdf4fa94
Split the RTP muxer out of rtp.c, to simplify the RTSP demuxer's dependencies
lucabe
parents:
2891
diff
changeset
|
2 * RTP output format |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
3579
diff
changeset
|
3 * Copyright (c) 2002 Fabrice Bellard |
0 | 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 */ |
3286 | 21 |
0 | 22 #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
|
23 #include "mpegts.h" |
0 | 24 |
25 #include <unistd.h> | |
26 | |
4388 | 27 #include "rtpenc.h" |
1419 | 28 |
0 | 29 //#define DEBUG |
30 | |
2705
cc693f9e80ee
Use a symbolic name for the payload size of an RTCP Sender Report packet
lucabe
parents:
2587
diff
changeset
|
31 #define RTCP_SR_SIZE 28 |
3057
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
32 #define NTP_OFFSET 2208988800ULL |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
33 #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL) |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
34 |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
35 static uint64_t ntp_time(void) |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
36 { |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
37 return (av_gettime() / 1000) * 1000 + NTP_OFFSET_US; |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
38 } |
0 | 39 |
4796
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
40 static int is_supported(enum CodecID id) |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
41 { |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
42 switch(id) { |
4814 | 43 case CODEC_ID_H263: |
44 case CODEC_ID_H263P: | |
4796
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
45 case CODEC_ID_H264: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
46 case CODEC_ID_MPEG1VIDEO: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
47 case CODEC_ID_MPEG2VIDEO: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
48 case CODEC_ID_MPEG4: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
49 case CODEC_ID_AAC: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
50 case CODEC_ID_MP2: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
51 case CODEC_ID_MP3: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
52 case CODEC_ID_PCM_ALAW: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
53 case CODEC_ID_PCM_MULAW: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
54 case CODEC_ID_PCM_S8: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
55 case CODEC_ID_PCM_S16BE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
56 case CODEC_ID_PCM_S16LE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
57 case CODEC_ID_PCM_U16BE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
58 case CODEC_ID_PCM_U16LE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
59 case CODEC_ID_PCM_U8: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
60 case CODEC_ID_MPEG2TS: |
4836 | 61 case CODEC_ID_AMR_NB: |
62 case CODEC_ID_AMR_WB: | |
4796
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
63 return 1; |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
64 default: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
65 return 0; |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
66 } |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
67 } |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
68 |
0 | 69 static int rtp_write_header(AVFormatContext *s1) |
70 { | |
4388 | 71 RTPMuxContext *s = s1->priv_data; |
5477 | 72 int max_packet_size, n; |
0 | 73 AVStream *st; |
74 | |
75 if (s1->nb_streams != 1) | |
76 return -1; | |
77 st = s1->streams[0]; | |
4796
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
78 if (!is_supported(st->codec->codec_id)) { |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
79 av_log(s1, AV_LOG_ERROR, "Unsupported codec %x\n", st->codec->codec_id); |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
80 |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
81 return -1; |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
82 } |
0 | 83 |
5477 | 84 s->payload_type = ff_rtp_get_payload_type(st->codec); |
85 if (s->payload_type < 0) | |
86 s->payload_type = RTP_PT_PRIVATE + (st->codec->codec_type == CODEC_TYPE_AUDIO); | |
0 | 87 |
2790 | 88 // following 2 FIXMEs could be set based on the current time, there is normally no info leak, as RTP will likely be transmitted immediately |
1045
7f1b7f811f01
fix constraint violation: libavformat is not allowed to modify state of caller, including rng state
rfelker
parents:
986
diff
changeset
|
89 s->base_timestamp = 0; /* FIXME: was random(), what should this be? */ |
0 | 90 s->timestamp = s->base_timestamp; |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
91 s->cur_timestamp = 0; |
1045
7f1b7f811f01
fix constraint violation: libavformat is not allowed to modify state of caller, including rng state
rfelker
parents:
986
diff
changeset
|
92 s->ssrc = 0; /* FIXME: was random(), what should this be? */ |
0 | 93 s->first_packet = 1; |
5646
7826bf683210
Fix syncronisation for streams with a high encoding delay.
lucabe
parents:
5530
diff
changeset
|
94 s->first_rtcp_ntp_time = ntp_time(); |
0 | 95 |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
96 max_packet_size = url_fget_max_packet_size(s1->pb); |
0 | 97 if (max_packet_size <= 12) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2222
diff
changeset
|
98 return AVERROR(EIO); |
4391 | 99 s->buf = av_malloc(max_packet_size); |
100 if (s->buf == NULL) { | |
101 return AVERROR(ENOMEM); | |
102 } | |
0 | 103 s->max_payload_size = max_packet_size - 12; |
104 | |
2587
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
105 s->max_frames_per_packet = 0; |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
106 if (s1->max_delay) { |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
107 if (st->codec->codec_type == CODEC_TYPE_AUDIO) { |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
108 if (st->codec->frame_size == 0) { |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
109 av_log(s1, AV_LOG_ERROR, "Cannot respect max delay: frame size = 0\n"); |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
110 } else { |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
111 s->max_frames_per_packet = av_rescale_rnd(s1->max_delay, st->codec->sample_rate, AV_TIME_BASE * st->codec->frame_size, AV_ROUND_DOWN); |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
112 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
113 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
114 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
115 /* FIXME: We should round down here... */ |
3500 | 116 s->max_frames_per_packet = av_rescale_q(s1->max_delay, (AVRational){1, 1000000}, st->codec->time_base); |
2587
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
117 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
118 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
119 |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
120 av_set_pts_info(st, 32, 1, 90000); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
777
diff
changeset
|
121 switch(st->codec->codec_id) { |
0 | 122 case CODEC_ID_MP2: |
232 | 123 case CODEC_ID_MP3: |
0 | 124 s->buf_ptr = s->buf + 4; |
125 break; | |
126 case CODEC_ID_MPEG1VIDEO: | |
2760 | 127 case CODEC_ID_MPEG2VIDEO: |
0 | 128 break; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
129 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
|
130 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
|
131 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
|
132 n = 1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
133 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
|
134 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
|
135 break; |
4836 | 136 case CODEC_ID_AMR_NB: |
137 case CODEC_ID_AMR_WB: | |
138 if (!s->max_frames_per_packet) | |
139 s->max_frames_per_packet = 12; | |
140 if (st->codec->codec_id == CODEC_ID_AMR_NB) | |
141 n = 31; | |
142 else | |
143 n = 61; | |
144 /* max_header_toc_size + the largest AMR payload must fit */ | |
145 if (1 + s->max_frames_per_packet + n > s->max_payload_size) { | |
146 av_log(s1, AV_LOG_ERROR, "RTP max payload size too small for AMR\n"); | |
147 return -1; | |
148 } | |
149 if (st->codec->channels != 1) { | |
150 av_log(s1, AV_LOG_ERROR, "Only mono is supported\n"); | |
151 return -1; | |
152 } | |
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
153 case CODEC_ID_AAC: |
4380
1b695f013cd3
Introduce a new num_frames field in RTPDemuxContext so that rtp_aac.c
lucabe
parents:
4291
diff
changeset
|
154 s->num_frames = 0; |
0 | 155 default: |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
156 if (st->codec->codec_type == CODEC_TYPE_AUDIO) { |
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
157 av_set_pts_info(st, 32, 1, st->codec->sample_rate); |
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
158 } |
0 | 159 s->buf_ptr = s->buf; |
160 break; | |
161 } | |
162 | |
163 return 0; | |
164 } | |
165 | |
166 /* send an rtcp sender report packet */ | |
65 | 167 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time) |
0 | 168 { |
4388 | 169 RTPMuxContext *s = s1->priv_data; |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
170 uint32_t rtp_ts; |
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
171 |
3579 | 172 dprintf(s1, "RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp); |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
173 |
2706
b1723b8da595
Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents:
2705
diff
changeset
|
174 s->last_rtcp_ntp_time = ntp_time; |
3500 | 175 rtp_ts = av_rescale_q(ntp_time - s->first_rtcp_ntp_time, (AVRational){1, 1000000}, |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
176 s1->streams[0]->time_base) + s->base_timestamp; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
177 put_byte(s1->pb, (RTP_VERSION << 6)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
178 put_byte(s1->pb, 200); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
179 put_be16(s1->pb, 6); /* length in words - 1 */ |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
180 put_be32(s1->pb, s->ssrc); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
181 put_be32(s1->pb, ntp_time / 1000000); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
182 put_be32(s1->pb, ((ntp_time % 1000000) << 32) / 1000000); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
183 put_be32(s1->pb, rtp_ts); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
184 put_be32(s1->pb, s->packet_count); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
185 put_be32(s1->pb, s->octet_count); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
186 put_flush_packet(s1->pb); |
0 | 187 } |
188 | |
189 /* send an rtp packet. sequence number is incremented, but the caller | |
190 must update the timestamp itself */ | |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
191 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m) |
0 | 192 { |
4388 | 193 RTPMuxContext *s = s1->priv_data; |
0 | 194 |
3579 | 195 dprintf(s1, "rtp_send_data size=%d\n", len); |
0 | 196 |
197 /* build the RTP header */ | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
198 put_byte(s1->pb, (RTP_VERSION << 6)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
199 put_byte(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
200 put_be16(s1->pb, s->seq); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
201 put_be32(s1->pb, s->timestamp); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
202 put_be32(s1->pb, s->ssrc); |
885 | 203 |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
204 put_buffer(s1->pb, buf1, len); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
205 put_flush_packet(s1->pb); |
885 | 206 |
0 | 207 s->seq++; |
208 s->octet_count += len; | |
209 s->packet_count++; | |
210 } | |
211 | |
212 /* send an integer number of samples and compute time stamp and fill | |
213 the rtp send buffer before sending. */ | |
214 static void rtp_send_samples(AVFormatContext *s1, | |
241 | 215 const uint8_t *buf1, int size, int sample_size) |
0 | 216 { |
4388 | 217 RTPMuxContext *s = s1->priv_data; |
0 | 218 int len, max_packet_size, n; |
219 | |
220 max_packet_size = (s->max_payload_size / sample_size) * sample_size; | |
221 /* not needed, but who nows */ | |
222 if ((size % sample_size) != 0) | |
223 av_abort(); | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
224 n = 0; |
0 | 225 while (size > 0) { |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
226 s->buf_ptr = s->buf; |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
227 len = FFMIN(max_packet_size, size); |
0 | 228 |
229 /* copy data */ | |
230 memcpy(s->buf_ptr, buf1, len); | |
231 s->buf_ptr += len; | |
232 buf1 += len; | |
233 size -= len; | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
234 s->timestamp = s->cur_timestamp + n / sample_size; |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
235 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0); |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
236 n += (s->buf_ptr - s->buf); |
0 | 237 } |
885 | 238 } |
0 | 239 |
240 static void rtp_send_mpegaudio(AVFormatContext *s1, | |
241 | 241 const uint8_t *buf1, int size) |
0 | 242 { |
4388 | 243 RTPMuxContext *s = s1->priv_data; |
0 | 244 int len, count, max_packet_size; |
245 | |
246 max_packet_size = s->max_payload_size; | |
247 | |
248 /* test if we must flush because not enough space */ | |
249 len = (s->buf_ptr - s->buf); | |
250 if ((len + size) > max_packet_size) { | |
251 if (len > 4) { | |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
252 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0); |
0 | 253 s->buf_ptr = s->buf + 4; |
254 } | |
255 } | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
256 if (s->buf_ptr == s->buf + 4) { |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
257 s->timestamp = s->cur_timestamp; |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
258 } |
0 | 259 |
260 /* add the packet */ | |
261 if (size > max_packet_size) { | |
262 /* big packet: fragment */ | |
263 count = 0; | |
264 while (size > 0) { | |
265 len = max_packet_size - 4; | |
266 if (len > size) | |
267 len = size; | |
268 /* build fragmented packet */ | |
269 s->buf[0] = 0; | |
270 s->buf[1] = 0; | |
271 s->buf[2] = count >> 8; | |
272 s->buf[3] = count; | |
273 memcpy(s->buf + 4, buf1, len); | |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
274 ff_rtp_send_data(s1, s->buf, len + 4, 0); |
0 | 275 size -= len; |
276 buf1 += len; | |
277 count += len; | |
278 } | |
279 } else { | |
280 if (s->buf_ptr == s->buf + 4) { | |
281 /* no fragmentation possible */ | |
282 s->buf[0] = 0; | |
283 s->buf[1] = 0; | |
284 s->buf[2] = 0; | |
285 s->buf[3] = 0; | |
286 } | |
287 memcpy(s->buf_ptr, buf1, size); | |
288 s->buf_ptr += size; | |
289 } | |
290 } | |
291 | |
292 static void rtp_send_raw(AVFormatContext *s1, | |
241 | 293 const uint8_t *buf1, int size) |
0 | 294 { |
4388 | 295 RTPMuxContext *s = s1->priv_data; |
0 | 296 int len, max_packet_size; |
297 | |
298 max_packet_size = s->max_payload_size; | |
299 | |
300 while (size > 0) { | |
301 len = max_packet_size; | |
302 if (len > size) | |
303 len = size; | |
304 | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
305 s->timestamp = s->cur_timestamp; |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
306 ff_rtp_send_data(s1, buf1, len, (len == size)); |
0 | 307 |
308 buf1 += len; | |
309 size -= len; | |
310 } | |
311 } | |
312 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
313 /* 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
|
314 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
|
315 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
|
316 { |
4388 | 317 RTPMuxContext *s = s1->priv_data; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
318 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
|
319 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
320 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
|
321 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
|
322 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
|
323 len = size; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
324 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
|
325 buf1 += len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
326 size -= len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
327 s->buf_ptr += len; |
885 | 328 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
329 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
|
330 if (out_len >= s->max_payload_size) { |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
331 ff_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
|
332 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
|
333 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
334 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
335 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
336 |
468 | 337 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) |
0 | 338 { |
4388 | 339 RTPMuxContext *s = s1->priv_data; |
0 | 340 AVStream *st = s1->streams[0]; |
341 int rtcp_bytes; | |
468 | 342 int size= pkt->size; |
885 | 343 |
3579 | 344 dprintf(s1, "%d: write len=%d\n", pkt->stream_index, size); |
0 | 345 |
885 | 346 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) / |
0 | 347 RTCP_TX_RATIO_DEN; |
2706
b1723b8da595
Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents:
2705
diff
changeset
|
348 if (s->first_packet || ((rtcp_bytes >= RTCP_SR_SIZE) && |
3057
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
349 (ntp_time() - s->last_rtcp_ntp_time > 5000000))) { |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
350 rtcp_send_sr(s1, ntp_time()); |
0 | 351 s->last_octet_count = s->octet_count; |
352 s->first_packet = 0; | |
353 } | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
354 s->cur_timestamp = s->base_timestamp + pkt->pts; |
0 | 355 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
777
diff
changeset
|
356 switch(st->codec->codec_id) { |
0 | 357 case CODEC_ID_PCM_MULAW: |
358 case CODEC_ID_PCM_ALAW: | |
359 case CODEC_ID_PCM_U8: | |
360 case CODEC_ID_PCM_S8: | |
5479 | 361 rtp_send_samples(s1, pkt->data, size, 1 * st->codec->channels); |
0 | 362 break; |
363 case CODEC_ID_PCM_U16BE: | |
364 case CODEC_ID_PCM_U16LE: | |
365 case CODEC_ID_PCM_S16BE: | |
366 case CODEC_ID_PCM_S16LE: | |
5479 | 367 rtp_send_samples(s1, pkt->data, size, 2 * st->codec->channels); |
0 | 368 break; |
369 case CODEC_ID_MP2: | |
232 | 370 case CODEC_ID_MP3: |
5479 | 371 rtp_send_mpegaudio(s1, pkt->data, size); |
0 | 372 break; |
373 case CODEC_ID_MPEG1VIDEO: | |
2760 | 374 case CODEC_ID_MPEG2VIDEO: |
5479 | 375 ff_rtp_send_mpegvideo(s1, pkt->data, size); |
0 | 376 break; |
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
377 case CODEC_ID_AAC: |
5479 | 378 ff_rtp_send_aac(s1, pkt->data, size); |
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
379 break; |
4836 | 380 case CODEC_ID_AMR_NB: |
381 case CODEC_ID_AMR_WB: | |
5479 | 382 ff_rtp_send_amr(s1, pkt->data, size); |
4836 | 383 break; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
384 case CODEC_ID_MPEG2TS: |
5479 | 385 rtp_send_mpegts_raw(s1, pkt->data, size); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
386 break; |
2960 | 387 case CODEC_ID_H264: |
5479 | 388 ff_rtp_send_h264(s1, pkt->data, size); |
2960 | 389 break; |
4814 | 390 case CODEC_ID_H263: |
391 case CODEC_ID_H263P: | |
5479 | 392 ff_rtp_send_h263(s1, pkt->data, size); |
4814 | 393 break; |
0 | 394 default: |
395 /* better than nothing : send the codec raw data */ | |
5479 | 396 rtp_send_raw(s1, pkt->data, size); |
0 | 397 break; |
398 } | |
399 return 0; | |
400 } | |
401 | |
4391 | 402 static int rtp_write_trailer(AVFormatContext *s1) |
403 { | |
404 RTPMuxContext *s = s1->priv_data; | |
405 | |
406 av_freep(&s->buf); | |
407 | |
408 return 0; | |
409 } | |
410 | |
1167 | 411 AVOutputFormat rtp_muxer = { |
0 | 412 "rtp", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3286
diff
changeset
|
413 NULL_IF_CONFIG_SMALL("RTP output format"), |
0 | 414 NULL, |
415 NULL, | |
4388 | 416 sizeof(RTPMuxContext), |
0 | 417 CODEC_ID_PCM_MULAW, |
418 CODEC_ID_NONE, | |
419 rtp_write_header, | |
420 rtp_write_packet, | |
4391 | 421 rtp_write_trailer, |
0 | 422 }; |