Mercurial > libavformat.hg
annotate rtpenc.c @ 4824:ef55a8830c20 libavformat
split mov_find_codec_tag in separate per format functions
author | bcoudurier |
---|---|
date | Tue, 07 Apr 2009 22:19:58 +0000 |
parents | 730b214077ca |
children | bf87d9ffb3ae |
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 |
22 #include "libavcodec/bitstream.h" | |
0 | 23 #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
|
24 #include "mpegts.h" |
0 | 25 |
26 #include <unistd.h> | |
1754 | 27 #include "network.h" |
0 | 28 |
4388 | 29 #include "rtpenc.h" |
1419 | 30 |
0 | 31 //#define DEBUG |
32 | |
2705
cc693f9e80ee
Use a symbolic name for the payload size of an RTCP Sender Report packet
lucabe
parents:
2587
diff
changeset
|
33 #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
|
34 #define NTP_OFFSET 2208988800ULL |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
35 #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
|
36 |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
37 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
|
38 { |
b2853b499660
Fix computation of the "NTP time" field in RTCP SR packets, and do not
lucabe
parents:
2960
diff
changeset
|
39 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
|
40 } |
0 | 41 |
4796
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
42 static int is_supported(enum CodecID id) |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
43 { |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
44 switch(id) { |
4814 | 45 case CODEC_ID_H263: |
46 case CODEC_ID_H263P: | |
4796
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
47 case CODEC_ID_H264: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
48 case CODEC_ID_MPEG1VIDEO: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
49 case CODEC_ID_MPEG2VIDEO: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
50 case CODEC_ID_MPEG4: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
51 case CODEC_ID_AAC: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
52 case CODEC_ID_MP2: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
53 case CODEC_ID_MP3: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
54 case CODEC_ID_PCM_ALAW: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
55 case CODEC_ID_PCM_MULAW: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
56 case CODEC_ID_PCM_S8: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
57 case CODEC_ID_PCM_S16BE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
58 case CODEC_ID_PCM_S16LE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
59 case CODEC_ID_PCM_U16BE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
60 case CODEC_ID_PCM_U16LE: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
61 case CODEC_ID_PCM_U8: |
f48c56ac46c2
Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents:
4502
diff
changeset
|
62 case CODEC_ID_MPEG2TS: |
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; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
72 int payload_type, 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 |
4502
daca5391106a
Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is not
lucabe
parents:
4391
diff
changeset
|
84 payload_type = ff_rtp_get_payload_type(st->codec); |
0 | 85 if (payload_type < 0) |
86 payload_type = RTP_PT_PRIVATE; /* private payload type */ | |
87 s->payload_type = payload_type; | |
88 | |
2790 | 89 // 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
|
90 s->base_timestamp = 0; /* FIXME: was random(), what should this be? */ |
0 | 91 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
|
92 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
|
93 s->ssrc = 0; /* FIXME: was random(), what should this be? */ |
0 | 94 s->first_packet = 1; |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
95 s->first_rtcp_ntp_time = AV_NOPTS_VALUE; |
0 | 96 |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
97 max_packet_size = url_fget_max_packet_size(s1->pb); |
0 | 98 if (max_packet_size <= 12) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2222
diff
changeset
|
99 return AVERROR(EIO); |
4391 | 100 s->buf = av_malloc(max_packet_size); |
101 if (s->buf == NULL) { | |
102 return AVERROR(ENOMEM); | |
103 } | |
0 | 104 s->max_payload_size = max_packet_size - 12; |
105 | |
2587
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
106 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
|
107 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
|
108 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
|
109 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
|
110 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
|
111 } else { |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
112 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
|
113 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
114 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
115 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
|
116 /* FIXME: We should round down here... */ |
3500 | 117 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
|
118 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
119 } |
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
120 |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
121 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
|
122 switch(st->codec->codec_id) { |
0 | 123 case CODEC_ID_MP2: |
232 | 124 case CODEC_ID_MP3: |
0 | 125 s->buf_ptr = s->buf + 4; |
126 break; | |
127 case CODEC_ID_MPEG1VIDEO: | |
2760 | 128 case CODEC_ID_MPEG2VIDEO: |
0 | 129 break; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
130 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
|
131 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
|
132 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
|
133 n = 1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
134 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
|
135 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
|
136 break; |
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
137 case CODEC_ID_AAC: |
4380
1b695f013cd3
Introduce a new num_frames field in RTPDemuxContext so that rtp_aac.c
lucabe
parents:
4291
diff
changeset
|
138 s->num_frames = 0; |
0 | 139 default: |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
140 if (st->codec->codec_type == CODEC_TYPE_AUDIO) { |
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
141 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
|
142 } |
0 | 143 s->buf_ptr = s->buf; |
144 break; | |
145 } | |
146 | |
147 return 0; | |
148 } | |
149 | |
150 /* send an rtcp sender report packet */ | |
65 | 151 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time) |
0 | 152 { |
4388 | 153 RTPMuxContext *s = s1->priv_data; |
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
154 uint32_t rtp_ts; |
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
155 |
3579 | 156 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
|
157 |
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
158 if (s->first_rtcp_ntp_time == AV_NOPTS_VALUE) s->first_rtcp_ntp_time = ntp_time; |
2706
b1723b8da595
Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents:
2705
diff
changeset
|
159 s->last_rtcp_ntp_time = ntp_time; |
3500 | 160 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
|
161 s1->streams[0]->time_base) + s->base_timestamp; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
162 put_byte(s1->pb, (RTP_VERSION << 6)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
163 put_byte(s1->pb, 200); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
164 put_be16(s1->pb, 6); /* length in words - 1 */ |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
165 put_be32(s1->pb, s->ssrc); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
166 put_be32(s1->pb, ntp_time / 1000000); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
167 put_be32(s1->pb, ((ntp_time % 1000000) << 32) / 1000000); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
168 put_be32(s1->pb, rtp_ts); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
169 put_be32(s1->pb, s->packet_count); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
170 put_be32(s1->pb, s->octet_count); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
171 put_flush_packet(s1->pb); |
0 | 172 } |
173 | |
174 /* send an rtp packet. sequence number is incremented, but the caller | |
175 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
|
176 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m) |
0 | 177 { |
4388 | 178 RTPMuxContext *s = s1->priv_data; |
0 | 179 |
3579 | 180 dprintf(s1, "rtp_send_data size=%d\n", len); |
0 | 181 |
182 /* build the RTP header */ | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
183 put_byte(s1->pb, (RTP_VERSION << 6)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
184 put_byte(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7)); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
185 put_be16(s1->pb, s->seq); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
186 put_be32(s1->pb, s->timestamp); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
187 put_be32(s1->pb, s->ssrc); |
885 | 188 |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
189 put_buffer(s1->pb, buf1, len); |
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
190 put_flush_packet(s1->pb); |
885 | 191 |
0 | 192 s->seq++; |
193 s->octet_count += len; | |
194 s->packet_count++; | |
195 } | |
196 | |
197 /* send an integer number of samples and compute time stamp and fill | |
198 the rtp send buffer before sending. */ | |
199 static void rtp_send_samples(AVFormatContext *s1, | |
241 | 200 const uint8_t *buf1, int size, int sample_size) |
0 | 201 { |
4388 | 202 RTPMuxContext *s = s1->priv_data; |
0 | 203 int len, max_packet_size, n; |
204 | |
205 max_packet_size = (s->max_payload_size / sample_size) * sample_size; | |
206 /* not needed, but who nows */ | |
207 if ((size % sample_size) != 0) | |
208 av_abort(); | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
209 n = 0; |
0 | 210 while (size > 0) { |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
211 s->buf_ptr = s->buf; |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
212 len = FFMIN(max_packet_size, size); |
0 | 213 |
214 /* copy data */ | |
215 memcpy(s->buf_ptr, buf1, len); | |
216 s->buf_ptr += len; | |
217 buf1 += len; | |
218 size -= len; | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
219 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
|
220 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
|
221 n += (s->buf_ptr - s->buf); |
0 | 222 } |
885 | 223 } |
0 | 224 |
225 /* NOTE: we suppose that exactly one frame is given as argument here */ | |
226 /* XXX: test it */ | |
227 static void rtp_send_mpegaudio(AVFormatContext *s1, | |
241 | 228 const uint8_t *buf1, int size) |
0 | 229 { |
4388 | 230 RTPMuxContext *s = s1->priv_data; |
0 | 231 int len, count, max_packet_size; |
232 | |
233 max_packet_size = s->max_payload_size; | |
234 | |
235 /* test if we must flush because not enough space */ | |
236 len = (s->buf_ptr - s->buf); | |
237 if ((len + size) > max_packet_size) { | |
238 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
|
239 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0); |
0 | 240 s->buf_ptr = s->buf + 4; |
241 } | |
242 } | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
243 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
|
244 s->timestamp = s->cur_timestamp; |
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
245 } |
0 | 246 |
247 /* add the packet */ | |
248 if (size > max_packet_size) { | |
249 /* big packet: fragment */ | |
250 count = 0; | |
251 while (size > 0) { | |
252 len = max_packet_size - 4; | |
253 if (len > size) | |
254 len = size; | |
255 /* build fragmented packet */ | |
256 s->buf[0] = 0; | |
257 s->buf[1] = 0; | |
258 s->buf[2] = count >> 8; | |
259 s->buf[3] = count; | |
260 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
|
261 ff_rtp_send_data(s1, s->buf, len + 4, 0); |
0 | 262 size -= len; |
263 buf1 += len; | |
264 count += len; | |
265 } | |
266 } else { | |
267 if (s->buf_ptr == s->buf + 4) { | |
268 /* no fragmentation possible */ | |
269 s->buf[0] = 0; | |
270 s->buf[1] = 0; | |
271 s->buf[2] = 0; | |
272 s->buf[3] = 0; | |
273 } | |
274 memcpy(s->buf_ptr, buf1, size); | |
275 s->buf_ptr += size; | |
276 } | |
277 } | |
278 | |
279 static void rtp_send_raw(AVFormatContext *s1, | |
241 | 280 const uint8_t *buf1, int size) |
0 | 281 { |
4388 | 282 RTPMuxContext *s = s1->priv_data; |
0 | 283 int len, max_packet_size; |
284 | |
285 max_packet_size = s->max_payload_size; | |
286 | |
287 while (size > 0) { | |
288 len = max_packet_size; | |
289 if (len > size) | |
290 len = size; | |
291 | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
292 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
|
293 ff_rtp_send_data(s1, buf1, len, (len == size)); |
0 | 294 |
295 buf1 += len; | |
296 size -= len; | |
297 } | |
298 } | |
299 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
300 /* 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
|
301 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
|
302 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
|
303 { |
4388 | 304 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
|
305 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
|
306 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
307 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
|
308 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
|
309 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
|
310 len = size; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
311 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
|
312 buf1 += len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
313 size -= len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
314 s->buf_ptr += len; |
885 | 315 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
316 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
|
317 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
|
318 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
|
319 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
|
320 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
321 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
322 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
323 |
0 | 324 /* write an RTP packet. 'buf1' must contain a single specific frame. */ |
468 | 325 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) |
0 | 326 { |
4388 | 327 RTPMuxContext *s = s1->priv_data; |
0 | 328 AVStream *st = s1->streams[0]; |
329 int rtcp_bytes; | |
468 | 330 int size= pkt->size; |
331 uint8_t *buf1= pkt->data; | |
885 | 332 |
3579 | 333 dprintf(s1, "%d: write len=%d\n", pkt->stream_index, size); |
0 | 334 |
885 | 335 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) / |
0 | 336 RTCP_TX_RATIO_DEN; |
2706
b1723b8da595
Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents:
2705
diff
changeset
|
337 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
|
338 (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
|
339 rtcp_send_sr(s1, ntp_time()); |
0 | 340 s->last_octet_count = s->octet_count; |
341 s->first_packet = 0; | |
342 } | |
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
343 s->cur_timestamp = s->base_timestamp + pkt->pts; |
0 | 344 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
777
diff
changeset
|
345 switch(st->codec->codec_id) { |
0 | 346 case CODEC_ID_PCM_MULAW: |
347 case CODEC_ID_PCM_ALAW: | |
348 case CODEC_ID_PCM_U8: | |
349 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
|
350 rtp_send_samples(s1, buf1, size, 1 * st->codec->channels); |
0 | 351 break; |
352 case CODEC_ID_PCM_U16BE: | |
353 case CODEC_ID_PCM_U16LE: | |
354 case CODEC_ID_PCM_S16BE: | |
355 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
|
356 rtp_send_samples(s1, buf1, size, 2 * st->codec->channels); |
0 | 357 break; |
358 case CODEC_ID_MP2: | |
232 | 359 case CODEC_ID_MP3: |
0 | 360 rtp_send_mpegaudio(s1, buf1, size); |
361 break; | |
362 case CODEC_ID_MPEG1VIDEO: | |
2760 | 363 case CODEC_ID_MPEG2VIDEO: |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
364 ff_rtp_send_mpegvideo(s1, buf1, size); |
0 | 365 break; |
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
366 case CODEC_ID_AAC: |
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
367 ff_rtp_send_aac(s1, buf1, size); |
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
368 break; |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
369 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
|
370 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
|
371 break; |
2960 | 372 case CODEC_ID_H264: |
373 ff_rtp_send_h264(s1, buf1, size); | |
374 break; | |
4814 | 375 case CODEC_ID_H263: |
376 case CODEC_ID_H263P: | |
377 ff_rtp_send_h263(s1, buf1, size); | |
378 break; | |
0 | 379 default: |
380 /* better than nothing : send the codec raw data */ | |
381 rtp_send_raw(s1, buf1, size); | |
382 break; | |
383 } | |
384 return 0; | |
385 } | |
386 | |
4391 | 387 static int rtp_write_trailer(AVFormatContext *s1) |
388 { | |
389 RTPMuxContext *s = s1->priv_data; | |
390 | |
391 av_freep(&s->buf); | |
392 | |
393 return 0; | |
394 } | |
395 | |
1167 | 396 AVOutputFormat rtp_muxer = { |
0 | 397 "rtp", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3286
diff
changeset
|
398 NULL_IF_CONFIG_SMALL("RTP output format"), |
0 | 399 NULL, |
400 NULL, | |
4388 | 401 sizeof(RTPMuxContext), |
0 | 402 CODEC_ID_PCM_MULAW, |
403 CODEC_ID_NONE, | |
404 rtp_write_header, | |
405 rtp_write_packet, | |
4391 | 406 rtp_write_trailer, |
0 | 407 }; |