annotate rtpenc.c @ 5910:536e5527c1e0 libavformat

Define AVMediaType enum, and use it instead of enum CodecType, which is deprecated and will be dropped at the next major bump.
author stefano
date Tue, 30 Mar 2010 23:30:55 +0000
parents 7028f9476da4
children 201152a121b5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 */
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 3057
diff changeset
21
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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"
5807
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5646
diff changeset
24 #include "internal.h"
5901
7028f9476da4 Initialize ssrc and base_timestamp using ff_random_get_seed()
mstorsjo
parents: 5842
diff changeset
25 #include "libavutil/random_seed.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
26
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
27 #include <unistd.h>
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
28
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
29 #include "rtpenc.h"
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
30
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
31 //#define DEBUG
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34
4796
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
35 static int is_supported(enum CodecID id)
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
36 {
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
37 switch(id) {
4814
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4796
diff changeset
38 case CODEC_ID_H263:
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4796
diff changeset
39 case CODEC_ID_H263P:
4796
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
40 case CODEC_ID_H264:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
41 case CODEC_ID_MPEG1VIDEO:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
42 case CODEC_ID_MPEG2VIDEO:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
43 case CODEC_ID_MPEG4:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
44 case CODEC_ID_AAC:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
45 case CODEC_ID_MP2:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
46 case CODEC_ID_MP3:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
47 case CODEC_ID_PCM_ALAW:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
48 case CODEC_ID_PCM_MULAW:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
49 case CODEC_ID_PCM_S8:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
50 case CODEC_ID_PCM_S16BE:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
51 case CODEC_ID_PCM_S16LE:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
52 case CODEC_ID_PCM_U16BE:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
53 case CODEC_ID_PCM_U16LE:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
54 case CODEC_ID_PCM_U8:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
55 case CODEC_ID_MPEG2TS:
4836
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
56 case CODEC_ID_AMR_NB:
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
57 case CODEC_ID_AMR_WB:
4796
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
58 return 1;
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
59 default:
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
60 return 0;
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
61 }
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
62 }
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
63
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
64 static int rtp_write_header(AVFormatContext *s1)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
65 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
66 RTPMuxContext *s = s1->priv_data;
5477
2ba624c6c869 Remove an unneeded local variable.
lucabe
parents: 5476
diff changeset
67 int max_packet_size, n;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
68 AVStream *st;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
69
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
70 if (s1->nb_streams != 1)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
71 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
72 st = s1->streams[0];
4796
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
73 if (!is_supported(st->codec->codec_id)) {
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
74 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
75
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
76 return -1;
f48c56ac46c2 Make rtp_write_header() fail in case of unsupported payload type
lucabe
parents: 4502
diff changeset
77 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
78
5477
2ba624c6c869 Remove an unneeded local variable.
lucabe
parents: 5476
diff changeset
79 s->payload_type = ff_rtp_get_payload_type(st->codec);
2ba624c6c869 Remove an unneeded local variable.
lucabe
parents: 5476
diff changeset
80 if (s->payload_type < 0)
5910
536e5527c1e0 Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 5901
diff changeset
81 s->payload_type = RTP_PT_PRIVATE + (st->codec->codec_type == AVMEDIA_TYPE_AUDIO);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
82
5901
7028f9476da4 Initialize ssrc and base_timestamp using ff_random_get_seed()
mstorsjo
parents: 5842
diff changeset
83 s->base_timestamp = ff_random_get_seed();
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
84 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
85 s->cur_timestamp = 0;
5901
7028f9476da4 Initialize ssrc and base_timestamp using ff_random_get_seed()
mstorsjo
parents: 5842
diff changeset
86 s->ssrc = ff_random_get_seed();
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
87 s->first_packet = 1;
5807
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5646
diff changeset
88 s->first_rtcp_ntp_time = ff_ntp_time();
5842
cc35562d3747 Use AVFormatContext.start_time_realtime in the RTP muxer
mstorsjo
parents: 5807
diff changeset
89 if (s1->start_time_realtime)
cc35562d3747 Use AVFormatContext.start_time_realtime in the RTP muxer
mstorsjo
parents: 5807
diff changeset
90 /* Round the NTP time to whole milliseconds. */
cc35562d3747 Use AVFormatContext.start_time_realtime in the RTP muxer
mstorsjo
parents: 5807
diff changeset
91 s->first_rtcp_ntp_time = (s1->start_time_realtime / 1000) * 1000 +
cc35562d3747 Use AVFormatContext.start_time_realtime in the RTP muxer
mstorsjo
parents: 5807
diff changeset
92 NTP_OFFSET_US;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
93
2771
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
94 max_packet_size = url_fget_max_packet_size(s1->pb);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 if (max_packet_size <= 12)
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2222
diff changeset
96 return AVERROR(EIO);
4391
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
97 s->buf = av_malloc(max_packet_size);
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
98 if (s->buf == NULL) {
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
99 return AVERROR(ENOMEM);
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
100 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
101 s->max_payload_size = max_packet_size - 12;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
102
2587
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
103 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
104 if (s1->max_delay) {
5910
536e5527c1e0 Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 5901
diff changeset
105 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
2587
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
106 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
107 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
108 } else {
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
109 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
110 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
111 }
5910
536e5527c1e0 Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 5901
diff changeset
112 if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2587
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
113 /* FIXME: We should round down here... */
3500
102f7d89c2c8 Remove improper usage of AV_TIME_BASE_Q
lucabe
parents: 3424
diff changeset
114 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
115 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
116 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
117
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
118 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
119 switch(st->codec->codec_id) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
120 case CODEC_ID_MP2:
232
eb90c0a5a1ba CODEC_ID_MP3LAME is obsolete
bellard
parents: 173
diff changeset
121 case CODEC_ID_MP3:
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
122 s->buf_ptr = s->buf + 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
123 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
124 case CODEC_ID_MPEG1VIDEO:
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
125 case CODEC_ID_MPEG2VIDEO:
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
126 break;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
127 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
128 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
129 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
130 n = 1;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
131 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
132 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
133 break;
4836
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
134 case CODEC_ID_AMR_NB:
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
135 case CODEC_ID_AMR_WB:
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
136 if (!s->max_frames_per_packet)
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
137 s->max_frames_per_packet = 12;
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
138 if (st->codec->codec_id == CODEC_ID_AMR_NB)
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
139 n = 31;
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
140 else
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
141 n = 61;
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
142 /* max_header_toc_size + the largest AMR payload must fit */
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
143 if (1 + s->max_frames_per_packet + n > s->max_payload_size) {
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
144 av_log(s1, AV_LOG_ERROR, "RTP max payload size too small for AMR\n");
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
145 return -1;
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
146 }
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
147 if (st->codec->channels != 1) {
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
148 av_log(s1, AV_LOG_ERROR, "Only mono is supported\n");
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
149 return -1;
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
150 }
2550
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
151 case CODEC_ID_AAC:
4380
1b695f013cd3 Introduce a new num_frames field in RTPDemuxContext so that rtp_aac.c
lucabe
parents: 4291
diff changeset
152 s->num_frames = 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
153 default:
5910
536e5527c1e0 Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 5901
diff changeset
154 if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
155 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
156 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
157 s->buf_ptr = s->buf;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
158 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
159 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
160
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
161 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
162 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
163
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
164 /* send an rtcp sender report packet */
65
a58a8a53eb46 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 0
diff changeset
165 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
166 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
167 RTPMuxContext *s = s1->priv_data;
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
168 uint32_t rtp_ts;
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
169
3579
e6a42f4e5429 RTP: use dprintf(), allow compilation with -DDEBUG
mru
parents: 3549
diff changeset
170 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
171
2706
b1723b8da595 Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents: 2705
diff changeset
172 s->last_rtcp_ntp_time = ntp_time;
3500
102f7d89c2c8 Remove improper usage of AV_TIME_BASE_Q
lucabe
parents: 3424
diff changeset
173 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
174 s1->streams[0]->time_base) + s->base_timestamp;
2771
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
175 put_byte(s1->pb, (RTP_VERSION << 6));
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
176 put_byte(s1->pb, 200);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
177 put_be16(s1->pb, 6); /* length in words - 1 */
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
178 put_be32(s1->pb, s->ssrc);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
179 put_be32(s1->pb, ntp_time / 1000000);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
180 put_be32(s1->pb, ((ntp_time % 1000000) << 32) / 1000000);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
181 put_be32(s1->pb, rtp_ts);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
182 put_be32(s1->pb, s->packet_count);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
183 put_be32(s1->pb, s->octet_count);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
184 put_flush_packet(s1->pb);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
185 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
186
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
187 /* send an rtp packet. sequence number is incremented, but the caller
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
188 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
189 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
190 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
191 RTPMuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
192
3579
e6a42f4e5429 RTP: use dprintf(), allow compilation with -DDEBUG
mru
parents: 3549
diff changeset
193 dprintf(s1, "rtp_send_data size=%d\n", len);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
194
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
195 /* build the RTP header */
2771
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
196 put_byte(s1->pb, (RTP_VERSION << 6));
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
197 put_byte(s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7));
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
198 put_be16(s1->pb, s->seq);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
199 put_be32(s1->pb, s->timestamp);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
200 put_be32(s1->pb, s->ssrc);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
201
2771
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
202 put_buffer(s1->pb, buf1, len);
d52c718e83f9 Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents: 2760
diff changeset
203 put_flush_packet(s1->pb);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
204
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
205 s->seq++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
206 s->octet_count += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
207 s->packet_count++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
208 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
209
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
210 /* send an integer number of samples and compute time stamp and fill
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
211 the rtp send buffer before sending. */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
212 static void rtp_send_samples(AVFormatContext *s1,
241
3d92f793fd67 64 bit pts for writing - more const usage
bellard
parents: 232
diff changeset
213 const uint8_t *buf1, int size, int sample_size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
214 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
215 RTPMuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
216 int len, max_packet_size, n;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
217
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
218 max_packet_size = (s->max_payload_size / sample_size) * sample_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
219 /* not needed, but who nows */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
220 if ((size % sample_size) != 0)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
221 av_abort();
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
222 n = 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
223 while (size > 0) {
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
224 s->buf_ptr = s->buf;
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
225 len = FFMIN(max_packet_size, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
226
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
227 /* copy data */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
228 memcpy(s->buf_ptr, buf1, len);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
229 s->buf_ptr += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
230 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
231 size -= len;
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
232 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
233 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
234 n += (s->buf_ptr - s->buf);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
235 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
236 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
237
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
238 static void rtp_send_mpegaudio(AVFormatContext *s1,
241
3d92f793fd67 64 bit pts for writing - more const usage
bellard
parents: 232
diff changeset
239 const uint8_t *buf1, int size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
240 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
241 RTPMuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
242 int len, count, max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
243
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
244 max_packet_size = s->max_payload_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
245
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
246 /* test if we must flush because not enough space */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
247 len = (s->buf_ptr - s->buf);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
248 if ((len + size) > max_packet_size) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
249 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
250 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
251 s->buf_ptr = s->buf + 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
252 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
253 }
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
254 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
255 s->timestamp = s->cur_timestamp;
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
256 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
257
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
258 /* add the packet */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
259 if (size > max_packet_size) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
260 /* big packet: fragment */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
261 count = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
262 while (size > 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
263 len = max_packet_size - 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
264 if (len > size)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
265 len = size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
266 /* build fragmented packet */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
267 s->buf[0] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
268 s->buf[1] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
269 s->buf[2] = count >> 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
270 s->buf[3] = count;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
271 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
272 ff_rtp_send_data(s1, s->buf, len + 4, 0);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
273 size -= len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
274 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
275 count += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
276 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
277 } else {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
278 if (s->buf_ptr == s->buf + 4) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
279 /* no fragmentation possible */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
280 s->buf[0] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
281 s->buf[1] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
282 s->buf[2] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
283 s->buf[3] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
284 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
285 memcpy(s->buf_ptr, buf1, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
286 s->buf_ptr += size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
287 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
288 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
289
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
290 static void rtp_send_raw(AVFormatContext *s1,
241
3d92f793fd67 64 bit pts for writing - more const usage
bellard
parents: 232
diff changeset
291 const uint8_t *buf1, int size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
292 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
293 RTPMuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
294 int len, max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
295
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
296 max_packet_size = s->max_payload_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
297
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
298 while (size > 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
299 len = max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
300 if (len > size)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
301 len = size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
302
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
303 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
304 ff_rtp_send_data(s1, buf1, len, (len == size));
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
305
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
306 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
307 size -= len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
308 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
309 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
310
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
311 /* 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
312 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
313 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
314 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
315 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
316 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
317
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
318 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
319 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
320 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
321 len = size;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
322 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
323 buf1 += len;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
324 size -= len;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
325 s->buf_ptr += len;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
326
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
327 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
328 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
329 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
330 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
331 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
332 }
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
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 370
diff changeset
335 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
336 {
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
337 RTPMuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
338 AVStream *st = s1->streams[0];
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
339 int rtcp_bytes;
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 370
diff changeset
340 int size= pkt->size;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
341
3579
e6a42f4e5429 RTP: use dprintf(), allow compilation with -DDEBUG
mru
parents: 3549
diff changeset
342 dprintf(s1, "%d: write len=%d\n", pkt->stream_index, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
343
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
344 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) /
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
345 RTCP_TX_RATIO_DEN;
2706
b1723b8da595 Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents: 2705
diff changeset
346 if (s->first_packet || ((rtcp_bytes >= RTCP_SR_SIZE) &&
5807
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5646
diff changeset
347 (ff_ntp_time() - s->last_rtcp_ntp_time > 5000000))) {
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5646
diff changeset
348 rtcp_send_sr(s1, ff_ntp_time());
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
349 s->last_octet_count = s->octet_count;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
350 s->first_packet = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
351 }
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
352 s->cur_timestamp = s->base_timestamp + pkt->pts;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
353
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 777
diff changeset
354 switch(st->codec->codec_id) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
355 case CODEC_ID_PCM_MULAW:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
356 case CODEC_ID_PCM_ALAW:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
357 case CODEC_ID_PCM_U8:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
358 case CODEC_ID_PCM_S8:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
359 rtp_send_samples(s1, pkt->data, size, 1 * st->codec->channels);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
360 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
361 case CODEC_ID_PCM_U16BE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
362 case CODEC_ID_PCM_U16LE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
363 case CODEC_ID_PCM_S16BE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
364 case CODEC_ID_PCM_S16LE:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
365 rtp_send_samples(s1, pkt->data, size, 2 * st->codec->channels);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
366 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
367 case CODEC_ID_MP2:
232
eb90c0a5a1ba CODEC_ID_MP3LAME is obsolete
bellard
parents: 173
diff changeset
368 case CODEC_ID_MP3:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
369 rtp_send_mpegaudio(s1, pkt->data, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
370 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
371 case CODEC_ID_MPEG1VIDEO:
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
372 case CODEC_ID_MPEG2VIDEO:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
373 ff_rtp_send_mpegvideo(s1, pkt->data, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
374 break;
2550
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
375 case CODEC_ID_AAC:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
376 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
377 break;
4836
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
378 case CODEC_ID_AMR_NB:
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
379 case CODEC_ID_AMR_WB:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
380 ff_rtp_send_amr(s1, pkt->data, size);
4836
bf87d9ffb3ae Add support for AMR audio in the RTP muxer
lucabe
parents: 4814
diff changeset
381 break;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
382 case CODEC_ID_MPEG2TS:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
383 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
384 break;
2960
e5d44127b182 Add support for H.264 video in the RTP muxer
lucabe
parents: 2892
diff changeset
385 case CODEC_ID_H264:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
386 ff_rtp_send_h264(s1, pkt->data, size);
2960
e5d44127b182 Add support for H.264 video in the RTP muxer
lucabe
parents: 2892
diff changeset
387 break;
4814
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4796
diff changeset
388 case CODEC_ID_H263:
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4796
diff changeset
389 case CODEC_ID_H263P:
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
390 ff_rtp_send_h263(s1, pkt->data, size);
4814
730b214077ca Add support for H.263 video in the RTP muxer
lucabe
parents: 4796
diff changeset
391 break;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
392 default:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
393 /* better than nothing : send the codec raw data */
5479
17744e7f9e4c Remove a useless local variable.
lucabe
parents: 5478
diff changeset
394 rtp_send_raw(s1, pkt->data, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
395 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
396 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
397 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
398 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
399
4391
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
400 static int rtp_write_trailer(AVFormatContext *s1)
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
401 {
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
402 RTPMuxContext *s = s1->priv_data;
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
403
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
404 av_freep(&s->buf);
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
405
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
406 return 0;
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
407 }
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
408
1167
d89d7ef290da give AVInput/OutputFormat structs consistent names
mru
parents: 1116
diff changeset
409 AVOutputFormat rtp_muxer = {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
410 "rtp",
3424
7a0230981402 Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents: 3286
diff changeset
411 NULL_IF_CONFIG_SMALL("RTP output format"),
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
412 NULL,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
413 NULL,
4388
80f21f72d7d6 Split rtp.h in rtp.h, rtpdec.h, and rtpenc.h
lucabe
parents: 4380
diff changeset
414 sizeof(RTPMuxContext),
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
415 CODEC_ID_PCM_MULAW,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
416 CODEC_ID_NONE,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
417 rtp_write_header,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
418 rtp_write_packet,
4391
3c0d674bd232 Do not use RTP_MAX_PACKET_LENGTH in the RTP muxer
lucabe
parents: 4389
diff changeset
419 rtp_write_trailer,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
420 };