Mercurial > libavformat.hg
annotate rtpenc.c @ 2892:0d82fdf4fa94 libavformat
Split the RTP muxer out of rtp.c, to simplify the RTSP demuxer's dependencies
| author | lucabe |
|---|---|
| date | Fri, 04 Jan 2008 20:09:48 +0000 |
| parents | rtp.c@a6c922b05571 |
| children | e5d44127b182 |
| 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 |
| 0 | 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> | |
| 1754 | 26 #include "network.h" |
| 0 | 27 |
| 1419 | 28 #include "rtp_internal.h" |
|
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2274
diff
changeset
|
29 #include "rtp_mpv.h" |
|
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
30 #include "rtp_aac.h" |
| 1419 | 31 |
| 0 | 32 //#define DEBUG |
| 33 | |
|
2705
cc693f9e80ee
Use a symbolic name for the payload size of an RTCP Sender Report packet
lucabe
parents:
2587
diff
changeset
|
34 #define RTCP_SR_SIZE 28 |
| 0 | 35 |
| 36 static int rtp_write_header(AVFormatContext *s1) | |
| 37 { | |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
38 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
|
39 int payload_type, max_packet_size, n; |
| 0 | 40 AVStream *st; |
| 41 | |
| 42 if (s1->nb_streams != 1) | |
| 43 return -1; | |
| 44 st = s1->streams[0]; | |
| 45 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
777
diff
changeset
|
46 payload_type = rtp_get_payload_type(st->codec); |
| 0 | 47 if (payload_type < 0) |
| 48 payload_type = RTP_PT_PRIVATE; /* private payload type */ | |
| 49 s->payload_type = payload_type; | |
| 50 | |
| 2790 | 51 // 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
|
52 s->base_timestamp = 0; /* FIXME: was random(), what should this be? */ |
| 0 | 53 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
|
54 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
|
55 s->ssrc = 0; /* FIXME: was random(), what should this be? */ |
| 0 | 56 s->first_packet = 1; |
|
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
57 s->first_rtcp_ntp_time = AV_NOPTS_VALUE; |
| 0 | 58 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
59 max_packet_size = url_fget_max_packet_size(s1->pb); |
| 0 | 60 if (max_packet_size <= 12) |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2222
diff
changeset
|
61 return AVERROR(EIO); |
| 0 | 62 s->max_payload_size = max_packet_size - 12; |
| 63 | |
|
2587
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
64 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
|
65 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
|
66 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
|
67 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
|
68 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
|
69 } else { |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
70 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
|
71 } |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
72 } |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
73 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
|
74 /* FIXME: We should round down here... */ |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
75 s->max_frames_per_packet = av_rescale_q(s1->max_delay, AV_TIME_BASE_Q, st->codec->time_base); |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
76 } |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
77 } |
|
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2569
diff
changeset
|
78 |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
79 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
|
80 switch(st->codec->codec_id) { |
| 0 | 81 case CODEC_ID_MP2: |
| 232 | 82 case CODEC_ID_MP3: |
| 0 | 83 s->buf_ptr = s->buf + 4; |
| 84 break; | |
| 85 case CODEC_ID_MPEG1VIDEO: | |
| 2760 | 86 case CODEC_ID_MPEG2VIDEO: |
| 0 | 87 break; |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
88 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
|
89 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
|
90 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
|
91 n = 1; |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
92 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
|
93 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
|
94 break; |
|
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
95 case CODEC_ID_AAC: |
|
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
96 s->read_buf_index = 0; |
| 0 | 97 default: |
|
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
98 if (st->codec->codec_type == CODEC_TYPE_AUDIO) { |
|
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
99 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
|
100 } |
| 0 | 101 s->buf_ptr = s->buf; |
| 102 break; | |
| 103 } | |
| 104 | |
| 105 return 0; | |
| 106 } | |
| 107 | |
| 108 /* send an rtcp sender report packet */ | |
| 65 | 109 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time) |
| 0 | 110 { |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
111 RTPDemuxContext *s = s1->priv_data; |
|
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
112 uint32_t rtp_ts; |
|
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
113 |
| 0 | 114 #if defined(DEBUG) |
|
1443
404048ea11bc
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
1431
diff
changeset
|
115 printf("RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp); |
| 0 | 116 #endif |
|
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
117 |
|
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
118 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
|
119 s->last_rtcp_ntp_time = ntp_time; |
|
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
120 rtp_ts = av_rescale_q(ntp_time - s->first_rtcp_ntp_time, AV_TIME_BASE_Q, |
|
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
121 s1->streams[0]->time_base) + s->base_timestamp; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
122 put_byte(s1->pb, (RTP_VERSION << 6)); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
123 put_byte(s1->pb, 200); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
124 put_be16(s1->pb, 6); /* length in words - 1 */ |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
125 put_be32(s1->pb, s->ssrc); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
126 put_be32(s1->pb, ntp_time / 1000000); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
127 put_be32(s1->pb, ((ntp_time % 1000000) << 32) / 1000000); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
128 put_be32(s1->pb, rtp_ts); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
129 put_be32(s1->pb, s->packet_count); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
130 put_be32(s1->pb, s->octet_count); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
131 put_flush_packet(s1->pb); |
| 0 | 132 } |
| 133 | |
| 134 /* send an rtp packet. sequence number is incremented, but the caller | |
| 135 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
|
136 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m) |
| 0 | 137 { |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
138 RTPDemuxContext *s = s1->priv_data; |
| 0 | 139 |
| 140 #ifdef DEBUG | |
| 141 printf("rtp_send_data size=%d\n", len); | |
| 142 #endif | |
| 143 | |
| 144 /* build the RTP header */ | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
145 put_byte(s1->pb, (RTP_VERSION << 6)); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
146 put_byte(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7)); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
147 put_be16(s1->pb, s->seq); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
148 put_be32(s1->pb, s->timestamp); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
149 put_be32(s1->pb, s->ssrc); |
| 885 | 150 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
151 put_buffer(s1->pb, buf1, len); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2760
diff
changeset
|
152 put_flush_packet(s1->pb); |
| 885 | 153 |
| 0 | 154 s->seq++; |
| 155 s->octet_count += len; | |
| 156 s->packet_count++; | |
| 157 } | |
| 158 | |
| 159 /* send an integer number of samples and compute time stamp and fill | |
| 160 the rtp send buffer before sending. */ | |
| 161 static void rtp_send_samples(AVFormatContext *s1, | |
| 241 | 162 const uint8_t *buf1, int size, int sample_size) |
| 0 | 163 { |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
164 RTPDemuxContext *s = s1->priv_data; |
| 0 | 165 int len, max_packet_size, n; |
| 166 | |
| 167 max_packet_size = (s->max_payload_size / sample_size) * sample_size; | |
| 168 /* not needed, but who nows */ | |
| 169 if ((size % sample_size) != 0) | |
| 170 av_abort(); | |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
171 n = 0; |
| 0 | 172 while (size > 0) { |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
173 s->buf_ptr = s->buf; |
|
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
174 len = FFMIN(max_packet_size, size); |
| 0 | 175 |
| 176 /* copy data */ | |
| 177 memcpy(s->buf_ptr, buf1, len); | |
| 178 s->buf_ptr += len; | |
| 179 buf1 += len; | |
| 180 size -= len; | |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
181 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
|
182 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
|
183 n += (s->buf_ptr - s->buf); |
| 0 | 184 } |
| 885 | 185 } |
| 0 | 186 |
| 187 /* NOTE: we suppose that exactly one frame is given as argument here */ | |
| 188 /* XXX: test it */ | |
| 189 static void rtp_send_mpegaudio(AVFormatContext *s1, | |
| 241 | 190 const uint8_t *buf1, int size) |
| 0 | 191 { |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
192 RTPDemuxContext *s = s1->priv_data; |
| 0 | 193 int len, count, max_packet_size; |
| 194 | |
| 195 max_packet_size = s->max_payload_size; | |
| 196 | |
| 197 /* test if we must flush because not enough space */ | |
| 198 len = (s->buf_ptr - s->buf); | |
| 199 if ((len + size) > max_packet_size) { | |
| 200 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
|
201 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0); |
| 0 | 202 s->buf_ptr = s->buf + 4; |
| 203 } | |
| 204 } | |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
205 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
|
206 s->timestamp = s->cur_timestamp; |
|
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
207 } |
| 0 | 208 |
| 209 /* add the packet */ | |
| 210 if (size > max_packet_size) { | |
| 211 /* big packet: fragment */ | |
| 212 count = 0; | |
| 213 while (size > 0) { | |
| 214 len = max_packet_size - 4; | |
| 215 if (len > size) | |
| 216 len = size; | |
| 217 /* build fragmented packet */ | |
| 218 s->buf[0] = 0; | |
| 219 s->buf[1] = 0; | |
| 220 s->buf[2] = count >> 8; | |
| 221 s->buf[3] = count; | |
| 222 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
|
223 ff_rtp_send_data(s1, s->buf, len + 4, 0); |
| 0 | 224 size -= len; |
| 225 buf1 += len; | |
| 226 count += len; | |
| 227 } | |
| 228 } else { | |
| 229 if (s->buf_ptr == s->buf + 4) { | |
| 230 /* no fragmentation possible */ | |
| 231 s->buf[0] = 0; | |
| 232 s->buf[1] = 0; | |
| 233 s->buf[2] = 0; | |
| 234 s->buf[3] = 0; | |
| 235 } | |
| 236 memcpy(s->buf_ptr, buf1, size); | |
| 237 s->buf_ptr += size; | |
| 238 } | |
| 239 } | |
| 240 | |
| 241 static void rtp_send_raw(AVFormatContext *s1, | |
| 241 | 242 const uint8_t *buf1, int size) |
| 0 | 243 { |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
244 RTPDemuxContext *s = s1->priv_data; |
| 0 | 245 int len, max_packet_size; |
| 246 | |
| 247 max_packet_size = s->max_payload_size; | |
| 248 | |
| 249 while (size > 0) { | |
| 250 len = max_packet_size; | |
| 251 if (len > size) | |
| 252 len = size; | |
| 253 | |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
254 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
|
255 ff_rtp_send_data(s1, buf1, len, (len == size)); |
| 0 | 256 |
| 257 buf1 += len; | |
| 258 size -= len; | |
| 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 /* 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
|
263 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
|
264 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
|
265 { |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
266 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
|
267 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
|
268 |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
269 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
|
270 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
|
271 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
|
272 len = size; |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
273 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
|
274 buf1 += len; |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
275 size -= len; |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
276 s->buf_ptr += len; |
| 885 | 277 |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
278 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
|
279 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
|
280 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
|
281 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
|
282 } |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
283 } |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
284 } |
|
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
285 |
| 0 | 286 /* write an RTP packet. 'buf1' must contain a single specific frame. */ |
| 468 | 287 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) |
| 0 | 288 { |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
289 RTPDemuxContext *s = s1->priv_data; |
| 0 | 290 AVStream *st = s1->streams[0]; |
| 291 int rtcp_bytes; | |
| 468 | 292 int size= pkt->size; |
| 293 uint8_t *buf1= pkt->data; | |
| 885 | 294 |
| 0 | 295 #ifdef DEBUG |
| 468 | 296 printf("%d: write len=%d\n", pkt->stream_index, size); |
| 0 | 297 #endif |
| 298 | |
| 299 /* XXX: mpeg pts hardcoded. RTCP send every 0.5 seconds */ | |
| 885 | 300 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) / |
| 0 | 301 RTCP_TX_RATIO_DEN; |
|
2706
b1723b8da595
Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents:
2705
diff
changeset
|
302 if (s->first_packet || ((rtcp_bytes >= RTCP_SR_SIZE) && |
|
b1723b8da595
Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents:
2705
diff
changeset
|
303 (av_gettime() - s->last_rtcp_ntp_time > 5000000))) { |
|
2539
ba933dfa4833
Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents:
2406
diff
changeset
|
304 rtcp_send_sr(s1, av_gettime()); |
| 0 | 305 s->last_octet_count = s->octet_count; |
| 306 s->first_packet = 0; | |
| 307 } | |
|
2540
ca3cba9c641f
Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents:
2539
diff
changeset
|
308 s->cur_timestamp = s->base_timestamp + pkt->pts; |
| 0 | 309 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
777
diff
changeset
|
310 switch(st->codec->codec_id) { |
| 0 | 311 case CODEC_ID_PCM_MULAW: |
| 312 case CODEC_ID_PCM_ALAW: | |
| 313 case CODEC_ID_PCM_U8: | |
| 314 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
|
315 rtp_send_samples(s1, buf1, size, 1 * st->codec->channels); |
| 0 | 316 break; |
| 317 case CODEC_ID_PCM_U16BE: | |
| 318 case CODEC_ID_PCM_U16LE: | |
| 319 case CODEC_ID_PCM_S16BE: | |
| 320 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
|
321 rtp_send_samples(s1, buf1, size, 2 * st->codec->channels); |
| 0 | 322 break; |
| 323 case CODEC_ID_MP2: | |
| 232 | 324 case CODEC_ID_MP3: |
| 0 | 325 rtp_send_mpegaudio(s1, buf1, size); |
| 326 break; | |
| 327 case CODEC_ID_MPEG1VIDEO: | |
| 2760 | 328 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
|
329 ff_rtp_send_mpegvideo(s1, buf1, size); |
| 0 | 330 break; |
|
2550
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
331 case CODEC_ID_AAC: |
|
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
332 ff_rtp_send_aac(s1, buf1, size); |
|
e9c34ec665c6
Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents:
2540
diff
changeset
|
333 break; |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
334 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
|
335 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
|
336 break; |
| 0 | 337 default: |
| 338 /* better than nothing : send the codec raw data */ | |
| 339 rtp_send_raw(s1, buf1, size); | |
| 340 break; | |
| 341 } | |
| 342 return 0; | |
| 343 } | |
| 344 | |
| 1167 | 345 AVOutputFormat rtp_muxer = { |
| 0 | 346 "rtp", |
| 347 "RTP output format", | |
| 348 NULL, | |
| 349 NULL, | |
|
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
241
diff
changeset
|
350 sizeof(RTPDemuxContext), |
| 0 | 351 CODEC_ID_PCM_MULAW, |
| 352 CODEC_ID_NONE, | |
| 353 rtp_write_header, | |
| 354 rtp_write_packet, | |
| 355 }; |
