annotate rtp.c @ 2760:034925441d67 libavformat

Add MPEG2 support to the RTP muxer
author lucabe
date Fri, 16 Nov 2007 13:13:53 +0000
parents b252e318023a
children d52c718e83f9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 /*
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
2 * RTP input/output format
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 * Copyright (c) 2002 Fabrice Bellard.
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 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
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
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
23 #include "bitstream.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
24
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
25 #include <unistd.h>
1754
1f7a6dc01100 move networking #includes into separate file
mru
parents: 1673
diff changeset
26 #include "network.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
27
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
28 #include "rtp_internal.h"
1460
234a04b906f9 add support for rtp/h264 streaming
gpoirier
parents: 1445
diff changeset
29 #include "rtp_h264.h"
2406
18e94e5989d8 Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents: 2274
diff changeset
30 #include "rtp_mpv.h"
2550
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
31 #include "rtp_aac.h"
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
32
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 //#define DEBUG
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
34
2705
cc693f9e80ee Use a symbolic name for the payload size of an RTCP Sender Report packet
lucabe
parents: 2587
diff changeset
35 #define RTCP_SR_SIZE 28
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
36
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
37 /* TODO: - add RTCP statistics reporting (should be optional).
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
38
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
39 - add support for h263/mpeg4 packetized output : IDEA: send a
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
40 buffer to 'rtp_write_packet' contains all the packets for ONE
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
41 frame. Each packet should have a four byte header containing
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
42 the length in big endian format (same trick as
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
43 'url_open_dyn_packet_buf')
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
44 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
45
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
46 /* from http://www.iana.org/assignments/rtp-parameters last updated 05 January 2005 */
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
47 AVRtpPayloadType_t AVRtpPayloadTypes[]=
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
48 {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
49 {0, "PCMU", CODEC_TYPE_AUDIO, CODEC_ID_PCM_MULAW, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
50 {1, "Reserved", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
51 {2, "Reserved", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
52 {3, "GSM", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
53 {4, "G723", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
54 {5, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
55 {6, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 16000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
56 {7, "LPC", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
57 {8, "PCMA", CODEC_TYPE_AUDIO, CODEC_ID_PCM_ALAW, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
58 {9, "G722", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
59 {10, "L16", CODEC_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 2},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
60 {11, "L16", CODEC_TYPE_AUDIO, CODEC_ID_PCM_S16BE, 44100, 1},
1259
874dcd428a17 Added codec id for QCELP.
banan
parents: 1169
diff changeset
61 {12, "QCELP", CODEC_TYPE_AUDIO, CODEC_ID_QCELP, 8000, 1},
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
62 {13, "CN", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
63 {14, "MPA", CODEC_TYPE_AUDIO, CODEC_ID_MP2, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
64 {15, "G728", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
65 {16, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 11025, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
66 {17, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 22050, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
67 {18, "G729", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
68 {19, "reserved", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
69 {20, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
70 {21, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
71 {22, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
72 {23, "unassigned", CODEC_TYPE_AUDIO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
73 {24, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
74 {25, "CelB", CODEC_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
75 {26, "JPEG", CODEC_TYPE_VIDEO, CODEC_ID_MJPEG, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
76 {27, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
77 {28, "nv", CODEC_TYPE_VIDEO, CODEC_ID_NONE, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
78 {29, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
79 {30, "unassigned", CODEC_TYPE_VIDEO, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
80 {31, "H261", CODEC_TYPE_VIDEO, CODEC_ID_H261, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
81 {32, "MPV", CODEC_TYPE_VIDEO, CODEC_ID_MPEG1VIDEO, 90000, -1},
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
82 {32, "MPV", CODEC_TYPE_VIDEO, CODEC_ID_MPEG2VIDEO, 90000, -1},
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
83 {33, "MP2T", CODEC_TYPE_DATA, CODEC_ID_MPEG2TS, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
84 {34, "H263", CODEC_TYPE_VIDEO, CODEC_ID_H263, 90000, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
85 {35, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
86 {36, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
87 {37, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
88 {38, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
89 {39, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
90 {40, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
91 {41, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
92 {42, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
93 {43, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
94 {44, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
95 {45, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
96 {46, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
97 {47, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
98 {48, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
99 {49, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
100 {50, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
101 {51, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
102 {52, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
103 {53, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
104 {54, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
105 {55, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
106 {56, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
107 {57, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
108 {58, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
109 {59, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
110 {60, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
111 {61, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
112 {62, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
113 {63, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
114 {64, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
115 {65, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
116 {66, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
117 {67, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
118 {68, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
119 {69, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
120 {70, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
121 {71, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
122 {72, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
123 {73, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
124 {74, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
125 {75, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
126 {76, "reserved for RTCP conflict avoidance", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
127 {77, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
128 {78, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
129 {79, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
130 {80, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
131 {81, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
132 {82, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
133 {83, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
134 {84, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
135 {85, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
136 {86, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
137 {87, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
138 {88, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
139 {89, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
140 {90, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
141 {91, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
142 {92, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
143 {93, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
144 {94, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
145 {95, "unassigned", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
146 {96, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
147 {97, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
148 {98, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
149 {99, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
150 {100, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
151 {101, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
152 {102, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
153 {103, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
154 {104, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
155 {105, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
156 {106, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
157 {107, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
158 {108, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
159 {109, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
160 {110, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
161 {111, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
162 {112, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
163 {113, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
164 {114, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
165 {115, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
166 {116, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
167 {117, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
168 {118, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
169 {119, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
170 {120, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
171 {121, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
172 {122, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
173 {123, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
174 {124, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
175 {125, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
176 {126, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
177 {127, "dynamic", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1},
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
178 {-1, "", CODEC_TYPE_UNKNOWN, CODEC_ID_NONE, -1, -1}
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
179 };
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
180
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
181 /* statistics functions */
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
182 RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler= NULL;
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
183
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
184 static RTPDynamicProtocolHandler mp4v_es_handler= {"MP4V-ES", CODEC_TYPE_VIDEO, CODEC_ID_MPEG4};
1472
49d5a5ca2987 get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to CODEC_ID_AAC where used
bcoudurier
parents: 1460
diff changeset
185 static RTPDynamicProtocolHandler mpeg4_generic_handler= {"mpeg4-generic", CODEC_TYPE_AUDIO, CODEC_ID_AAC};
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
186
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
187 static void register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler)
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
188 {
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
189 handler->next= RTPFirstDynamicPayloadHandler;
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
190 RTPFirstDynamicPayloadHandler= handler;
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
191 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
192
1983
fbc66bf1f15d changes some function declarations from () to (void) as per ansi c.
gpoirier
parents: 1857
diff changeset
193 void av_register_rtp_dynamic_payload_handlers(void)
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
194 {
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
195 register_dynamic_payload_handler(&mp4v_es_handler);
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
196 register_dynamic_payload_handler(&mpeg4_generic_handler);
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
197 register_dynamic_payload_handler(&ff_h264_dynamic_handler);
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
198 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
199
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
200 int rtp_get_codec_info(AVCodecContext *codec, int payload_type)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
201 {
2759
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
202 int i = 0;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
203
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
204 for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
205 if (AVRtpPayloadTypes[i].pt == payload_type) {
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
206 if (AVRtpPayloadTypes[i].codec_id != CODEC_ID_NONE) {
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
207 codec->codec_type = AVRtpPayloadTypes[i].codec_type;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
208 codec->codec_id = AVRtpPayloadTypes[i].codec_id;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
209 if (AVRtpPayloadTypes[i].audio_channels > 0)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
210 codec->channels = AVRtpPayloadTypes[i].audio_channels;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
211 if (AVRtpPayloadTypes[i].clock_rate > 0)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
212 codec->sample_rate = AVRtpPayloadTypes[i].clock_rate;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
213 return 0;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
214 }
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
215 }
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
216 return -1;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
217 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
218
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
219 int rtp_get_payload_type(AVCodecContext *codec)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
220 {
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
221 int i, payload_type;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
222
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
223 /* compute the payload type */
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
224 for (payload_type = -1, i = 0; AVRtpPayloadTypes[i].pt >= 0; ++i)
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
225 if (AVRtpPayloadTypes[i].codec_id == codec->codec_id) {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
226 if (codec->codec_id == CODEC_ID_PCM_S16BE)
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
227 if (codec->channels != AVRtpPayloadTypes[i].audio_channels)
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
228 continue;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
229 payload_type = AVRtpPayloadTypes[i].pt;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
230 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
231 return payload_type;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
232 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
233
2759
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
234 const char *ff_rtp_enc_name(int payload_type)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
235 {
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
236 int i;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
237
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
238 for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
239 if (AVRtpPayloadTypes[i].pt == payload_type) {
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
240 return AVRtpPayloadTypes[i].enc_name;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
241 }
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
242
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
243 return "";
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
244 }
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
245
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
246 enum CodecID ff_rtp_codec_id(const char *buf, enum CodecType codec_type)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
247 {
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
248 int i;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
249
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
250 for (i = 0; AVRtpPayloadTypes[i].pt >= 0; i++)
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
251 if (!strcmp(buf, AVRtpPayloadTypes[i].enc_name) && (codec_type == AVRtpPayloadTypes[i].codec_type)){
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
252 return AVRtpPayloadTypes[i].codec_id;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
253 }
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
254
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
255 return CODEC_ID_NONE;
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
256 }
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
257
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
258 static int rtcp_parse_packet(RTPDemuxContext *s, const unsigned char *buf, int len)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
259 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
260 if (buf[1] != 200)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
261 return -1;
2167
c4244900f986 remove decode_be32/64 and replace them by AV_RB32/64
benoit
parents: 2164
diff changeset
262 s->last_rtcp_ntp_time = AV_RB64(buf + 8);
173
38f64fabb24b fixed NTP generation for mpeg
bellard
parents: 85
diff changeset
263 if (s->first_rtcp_ntp_time == AV_NOPTS_VALUE)
38f64fabb24b fixed NTP generation for mpeg
bellard
parents: 85
diff changeset
264 s->first_rtcp_ntp_time = s->last_rtcp_ntp_time;
2167
c4244900f986 remove decode_be32/64 and replace them by AV_RB32/64
benoit
parents: 2164
diff changeset
265 s->last_rtcp_timestamp = AV_RB32(buf + 16);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
266 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
267 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
268
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
269 #define RTP_SEQ_MOD (1<<16)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
270
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
271 /**
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
272 * called on parse open packet
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
273 */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
274 static void rtp_init_statistics(RTPStatistics *s, uint16_t base_sequence) // called on parse open packet.
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
275 {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
276 memset(s, 0, sizeof(RTPStatistics));
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
277 s->max_seq= base_sequence;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
278 s->probation= 1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
279 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
280
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
281 /**
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
282 * called whenever there is a large jump in sequence numbers, or when they get out of probation...
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
283 */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
284 static void rtp_init_sequence(RTPStatistics *s, uint16_t seq)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
285 {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
286 s->max_seq= seq;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
287 s->cycles= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
288 s->base_seq= seq -1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
289 s->bad_seq= RTP_SEQ_MOD + 1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
290 s->received= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
291 s->expected_prior= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
292 s->received_prior= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
293 s->jitter= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
294 s->transit= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
295 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
296
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
297 /**
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
298 * returns 1 if we should handle this packet.
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
299 */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
300 static int rtp_valid_packet_in_sequence(RTPStatistics *s, uint16_t seq)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
301 {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
302 uint16_t udelta= seq - s->max_seq;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
303 const int MAX_DROPOUT= 3000;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
304 const int MAX_MISORDER = 100;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
305 const int MIN_SEQUENTIAL = 2;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
306
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
307 /* source not valid until MIN_SEQUENTIAL packets with sequence seq. numbers have been received */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
308 if(s->probation)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
309 {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
310 if(seq==s->max_seq + 1) {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
311 s->probation--;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
312 s->max_seq= seq;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
313 if(s->probation==0) {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
314 rtp_init_sequence(s, seq);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
315 s->received++;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
316 return 1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
317 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
318 } else {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
319 s->probation= MIN_SEQUENTIAL - 1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
320 s->max_seq = seq;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
321 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
322 } else if (udelta < MAX_DROPOUT) {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
323 // in order, with permissible gap
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
324 if(seq < s->max_seq) {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
325 //sequence number wrapped; count antother 64k cycles
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
326 s->cycles += RTP_SEQ_MOD;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
327 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
328 s->max_seq= seq;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
329 } else if (udelta <= RTP_SEQ_MOD - MAX_MISORDER) {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
330 // sequence made a large jump...
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
331 if(seq==s->bad_seq) {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
332 // two sequential packets-- assume that the other side restarted without telling us; just resync.
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
333 rtp_init_sequence(s, seq);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
334 } else {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
335 s->bad_seq= (seq + 1) & (RTP_SEQ_MOD-1);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
336 return 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
337 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
338 } else {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
339 // duplicate or reordered packet...
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
340 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
341 s->received++;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
342 return 1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
343 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
344
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
345 #if 0
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
346 /**
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
347 * This function is currently unused; without a valid local ntp time, I don't see how we could calculate the
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
348 * difference between the arrival and sent timestamp. As a result, the jitter and transit statistics values
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
349 * never change. I left this in in case someone else can see a way. (rdm)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
350 */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
351 static void rtcp_update_jitter(RTPStatistics *s, uint32_t sent_timestamp, uint32_t arrival_timestamp)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
352 {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
353 uint32_t transit= arrival_timestamp - sent_timestamp;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
354 int d;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
355 s->transit= transit;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
356 d= FFABS(transit - s->transit);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
357 s->jitter += d - ((s->jitter + 8)>>4);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
358 }
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
359 #endif
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
360
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
361 int rtp_check_and_send_back_rr(RTPDemuxContext *s, int count)
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
362 {
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
363 ByteIOContext pb;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
364 uint8_t *buf;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
365 int len;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
366 int rtcp_bytes;
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
367 RTPStatistics *stats= &s->statistics;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
368 uint32_t lost;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
369 uint32_t extended_max;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
370 uint32_t expected_interval;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
371 uint32_t received_interval;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
372 uint32_t lost_interval;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
373 uint32_t expected;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
374 uint32_t fraction;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
375 uint64_t ntp_time= s->last_rtcp_ntp_time; // TODO: Get local ntp time?
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
376
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
377 if (!s->rtp_ctx || (count < 1))
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
378 return -1;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
379
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
380 /* TODO: I think this is way too often; RFC 1889 has algorithm for this */
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
381 /* XXX: mpeg pts hardcoded. RTCP send every 0.5 seconds */
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
382 s->octet_count += count;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
383 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) /
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
384 RTCP_TX_RATIO_DEN;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
385 rtcp_bytes /= 50; // mmu_man: that's enough for me... VLC sends much less btw !?
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
386 if (rtcp_bytes < 28)
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
387 return -1;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
388 s->last_octet_count = s->octet_count;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
389
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
390 if (url_open_dyn_buf(&pb) < 0)
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
391 return -1;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
392
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
393 // Receiver Report
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
394 put_byte(&pb, (RTP_VERSION << 6) + 1); /* 1 report block */
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
395 put_byte(&pb, 201);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
396 put_be16(&pb, 7); /* length in words - 1 */
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
397 put_be32(&pb, s->ssrc); // our own SSRC
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
398 put_be32(&pb, s->ssrc); // XXX: should be the server's here!
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
399 // some placeholders we should really fill...
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
400 // RFC 1889/p64
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
401 extended_max= stats->cycles + stats->max_seq;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
402 expected= extended_max - stats->base_seq + 1;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
403 lost= expected - stats->received;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
404 lost= FFMIN(lost, 0xffffff); // clamp it since it's only 24 bits...
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
405 expected_interval= expected - stats->expected_prior;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
406 stats->expected_prior= expected;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
407 received_interval= stats->received - stats->received_prior;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
408 stats->received_prior= stats->received;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
409 lost_interval= expected_interval - received_interval;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
410 if (expected_interval==0 || lost_interval<=0) fraction= 0;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
411 else fraction = (lost_interval<<8)/expected_interval;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
412
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
413 fraction= (fraction<<24) | lost;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
414
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
415 put_be32(&pb, fraction); /* 8 bits of fraction, 24 bits of total packets lost */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
416 put_be32(&pb, extended_max); /* max sequence received */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
417 put_be32(&pb, stats->jitter>>4); /* jitter */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
418
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
419 if(s->last_rtcp_ntp_time==AV_NOPTS_VALUE)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
420 {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
421 put_be32(&pb, 0); /* last SR timestamp */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
422 put_be32(&pb, 0); /* delay since last SR */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
423 } else {
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
424 uint32_t middle_32_bits= s->last_rtcp_ntp_time>>16; // this is valid, right? do we need to handle 64 bit values special?
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
425 uint32_t delay_since_last= ntp_time - s->last_rtcp_ntp_time;
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
426
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
427 put_be32(&pb, middle_32_bits); /* last SR timestamp */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
428 put_be32(&pb, delay_since_last); /* delay since last SR */
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
429 }
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
430
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
431 // CNAME
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
432 put_byte(&pb, (RTP_VERSION << 6) + 1); /* 1 report block */
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
433 put_byte(&pb, 202);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
434 len = strlen(s->hostname);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
435 put_be16(&pb, (6 + len + 3) / 4); /* length in words - 1 */
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
436 put_be32(&pb, s->ssrc);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
437 put_byte(&pb, 0x01);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
438 put_byte(&pb, len);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
439 put_buffer(&pb, s->hostname, len);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
440 // padding
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
441 for (len = (6 + len) % 4; len % 4; len++) {
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
442 put_byte(&pb, 0);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
443 }
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
444
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
445 put_flush_packet(&pb);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
446 len = url_close_dyn_buf(&pb, &buf);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
447 if ((len > 0) && buf) {
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
448 int result;
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
449 #if defined(DEBUG)
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
450 printf("sending %d bytes of RR\n", len);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
451 #endif
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
452 result= url_write(s->rtp_ctx, buf, len);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
453 #if defined(DEBUG)
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
454 printf("result from url_write: %d\n", result);
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
455 #endif
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
456 av_free(buf);
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
457 }
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
458 return 0;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
459 }
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
460
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
461 /**
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
462 * open a new RTP parse context for stream 'st'. 'st' can be NULL for
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
463 * MPEG2TS streams to indicate that they should be demuxed inside the
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
464 * rtp demux (otherwise CODEC_ID_MPEG2TS packets are returned)
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
465 * TODO: change this to not take rtp_payload data, and use the new dynamic payload system.
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
466 */
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
467 RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, rtp_payload_data_t *rtp_payload_data)
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
468 {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
469 RTPDemuxContext *s;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
470
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
471 s = av_mallocz(sizeof(RTPDemuxContext));
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
472 if (!s)
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
473 return NULL;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
474 s->payload_type = payload_type;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
475 s->last_rtcp_ntp_time = AV_NOPTS_VALUE;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
476 s->first_rtcp_ntp_time = AV_NOPTS_VALUE;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
477 s->ic = s1;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
478 s->st = st;
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
479 s->rtp_payload_data = rtp_payload_data;
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
480 rtp_init_statistics(&s->statistics, 0); // do we know the initial sequence from sdp?
2759
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
481 if (!strcmp(ff_rtp_enc_name(payload_type), "MP2T")) {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
482 s->ts = mpegts_parse_open(s->ic);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
483 if (s->ts == NULL) {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
484 av_free(s);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
485 return NULL;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
486 }
305
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
487 } else {
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 777
diff changeset
488 switch(st->codec->codec_id) {
305
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
489 case CODEC_ID_MPEG1VIDEO:
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
490 case CODEC_ID_MPEG2VIDEO:
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
491 case CODEC_ID_MP2:
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
492 case CODEC_ID_MP3:
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
493 case CODEC_ID_MPEG4:
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
494 case CODEC_ID_H264:
2023
a3e79d6e4e3c add an enum for need_parsing
aurel
parents: 1983
diff changeset
495 st->need_parsing = AVSTREAM_PARSE_FULL;
305
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
496 break;
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
497 default:
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
498 break;
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
499 }
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
500 }
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
501 // needed to send back RTCP RR in RTSP sessions
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
502 s->rtp_ctx = rtpc;
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
503 gethostname(s->hostname, sizeof(s->hostname));
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
504 return s;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
505 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
506
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
507 static int rtp_parse_mp4_au(RTPDemuxContext *s, const uint8_t *buf)
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
508 {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
509 int au_headers_length, au_header_size, i;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
510 GetBitContext getbitcontext;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
511 rtp_payload_data_t *infos;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
512
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
513 infos = s->rtp_payload_data;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
514
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
515 if (infos == NULL)
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
516 return -1;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
517
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
518 /* decode the first 2 bytes where are stored the AUHeader sections
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
519 length in bits */
1673
a782462e2497 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 1670
diff changeset
520 au_headers_length = AV_RB16(buf);
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
521
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
522 if (au_headers_length > RTP_MAX_PACKET_LENGTH)
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
523 return -1;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
524
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
525 infos->au_headers_length_bytes = (au_headers_length + 7) / 8;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
526
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
527 /* skip AU headers length section (2 bytes) */
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
528 buf += 2;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
529
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
530 init_get_bits(&getbitcontext, buf, infos->au_headers_length_bytes * 8);
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
531
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
532 /* XXX: Wrong if optionnal additional sections are present (cts, dts etc...) */
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
533 au_header_size = infos->sizelength + infos->indexlength;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
534 if (au_header_size <= 0 || (au_headers_length % au_header_size != 0))
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
535 return -1;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
536
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
537 infos->nb_au_headers = au_headers_length / au_header_size;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
538 infos->au_headers = av_malloc(sizeof(struct AUHeaders) * infos->nb_au_headers);
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
539
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
540 /* XXX: We handle multiple AU Section as only one (need to fix this for interleaving)
2164
3804e39efbfd misc spelling fixes
diego
parents: 2023
diff changeset
541 In my test, the FAAD decoder does not behave correctly when sending each AU one by one
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
542 but does when sending the whole as one big packet... */
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
543 infos->au_headers[0].size = 0;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
544 infos->au_headers[0].index = 0;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
545 for (i = 0; i < infos->nb_au_headers; ++i) {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
546 infos->au_headers[0].size += get_bits_long(&getbitcontext, infos->sizelength);
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
547 infos->au_headers[0].index = get_bits_long(&getbitcontext, infos->indexlength);
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
548 }
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
549
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
550 infos->nb_au_headers = 1;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
551
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
552 return 0;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
553 }
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 743
diff changeset
554
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
555 /**
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
556 * This was the second switch in rtp_parse packet. Normalizes time, if required, sets stream_index, etc.
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
557 */
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
558 static void finalize_packet(RTPDemuxContext *s, AVPacket *pkt, uint32_t timestamp)
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
559 {
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
560 switch(s->st->codec->codec_id) {
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
561 case CODEC_ID_MP2:
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
562 case CODEC_ID_MPEG1VIDEO:
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
563 case CODEC_ID_MPEG2VIDEO:
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
564 if (s->last_rtcp_ntp_time != AV_NOPTS_VALUE) {
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
565 int64_t addend;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
566
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
567 int delta_timestamp;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
568 /* XXX: is it really necessary to unify the timestamp base ? */
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
569 /* compute pts from timestamp with received ntp_time */
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
570 delta_timestamp = timestamp - s->last_rtcp_timestamp;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
571 /* convert to 90 kHz without overflow */
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
572 addend = (s->last_rtcp_ntp_time - s->first_rtcp_ntp_time) >> 14;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
573 addend = (addend * 5625) >> 14;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
574 pkt->pts = addend + delta_timestamp;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
575 }
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
576 break;
1472
49d5a5ca2987 get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to CODEC_ID_AAC where used
bcoudurier
parents: 1460
diff changeset
577 case CODEC_ID_AAC:
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
578 case CODEC_ID_H264:
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
579 case CODEC_ID_MPEG4:
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
580 pkt->pts = timestamp;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
581 break;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
582 default:
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
583 /* no timestamp info yet */
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
584 break;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
585 }
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
586 pkt->stream_index = s->st->index;
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
587 }
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
588
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
589 /**
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
590 * Parse an RTP or RTCP packet directly sent as a buffer.
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
591 * @param s RTP parse context.
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
592 * @param pkt returned packet
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
593 * @param buf input buffer or NULL to read the next packets
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
594 * @param len buffer len
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
595 * @return 0 if a packet is returned, 1 if a packet is returned and more can follow
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
596 * (use buf as NULL to read the next). -1 if no packet (error or no more packet).
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
597 */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
598 int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
599 const uint8_t *buf, int len)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
600 {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
601 unsigned int ssrc, h;
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
602 int payload_type, seq, ret;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
603 AVStream *st;
65
a58a8a53eb46 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 0
diff changeset
604 uint32_t timestamp;
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
605 int rv= 0;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
606
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
607 if (!buf) {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
608 /* return the next packets, if any */
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
609 if(s->st && s->parse_packet) {
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
610 timestamp= 0; ///< Should not be used if buf is NULL, but should be set to the timestamp of the packet returned....
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
611 rv= s->parse_packet(s, pkt, &timestamp, NULL, 0);
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
612 finalize_packet(s, pkt, timestamp);
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
613 return rv;
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
614 } else {
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
615 // TODO: Move to a dynamic packet handler (like above)
1424
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
616 if (s->read_buf_index >= s->read_buf_size)
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
617 return -1;
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
618 ret = mpegts_parse_packet(s->ts, pkt, s->buf + s->read_buf_index,
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
619 s->read_buf_size - s->read_buf_index);
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
620 if (ret < 0)
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
621 return -1;
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
622 s->read_buf_index += ret;
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
623 if (s->read_buf_index < s->read_buf_size)
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
624 return 1;
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
625 else
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
626 return 0;
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
627 }
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
628 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
629
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
630 if (len < 12)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
631 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
632
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
633 if ((buf[0] & 0xc0) != (RTP_VERSION << 6))
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
634 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
635 if (buf[1] >= 200 && buf[1] <= 204) {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
636 rtcp_parse_packet(s, buf, len);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
637 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
638 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
639 payload_type = buf[1] & 0x7f;
2222
3427d0c63a32 Use AV_RB* macros where appropriate.
diego
parents: 2210
diff changeset
640 seq = AV_RB16(buf + 2);
2167
c4244900f986 remove decode_be32/64 and replace them by AV_RB32/64
benoit
parents: 2164
diff changeset
641 timestamp = AV_RB32(buf + 4);
c4244900f986 remove decode_be32/64 and replace them by AV_RB32/64
benoit
parents: 2164
diff changeset
642 ssrc = AV_RB32(buf + 8);
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
643 /* store the ssrc in the RTPDemuxContext */
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1424
diff changeset
644 s->ssrc = ssrc;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
645
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
646 /* NOTE: we can handle only one payload type */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
647 if (s->payload_type != payload_type)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
648 return -1;
986
f5194ed612b5 fix debug code: do not try to take st->codec if st is NULL. This makes ffplay give me pics from FreeBoxTV \o/
mmu_man
parents: 896
diff changeset
649
f5194ed612b5 fix debug code: do not try to take st->codec if st is NULL. This makes ffplay give me pics from FreeBoxTV \o/
mmu_man
parents: 896
diff changeset
650 st = s->st;
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
651 // only do something with this if all the rtp checks pass...
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
652 if(!rtp_valid_packet_in_sequence(&s->statistics, seq))
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
653 {
986
f5194ed612b5 fix debug code: do not try to take st->codec if st is NULL. This makes ffplay give me pics from FreeBoxTV \o/
mmu_man
parents: 896
diff changeset
654 av_log(st?st->codec:NULL, AV_LOG_ERROR, "RTP: PT=%02x: bad cseq %04x expected=%04x\n",
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
655 payload_type, seq, ((s->seq + 1) & 0xffff));
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
656 return -1;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
657 }
1445
db97355877b1 add valid statistics for the RTCP receiver report.
gpoirier
parents: 1443
diff changeset
658
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
659 s->seq = seq;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
660 len -= 12;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
661 buf += 12;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
662
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
663 if (!st) {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
664 /* specific MPEG2TS demux support */
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
665 ret = mpegts_parse_packet(s->ts, pkt, buf, len);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
666 if (ret < 0)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
667 return -1;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
668 if (ret < len) {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
669 s->read_buf_size = len - ret;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
670 memcpy(s->buf, buf + ret, s->read_buf_size);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
671 s->read_buf_index = 0;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
672 return 1;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
673 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
674 } else {
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
675 // at this point, the RTP header has been stripped; This is ASSUMING that there is only 1 CSRC, which in't wise.
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 777
diff changeset
676 switch(st->codec->codec_id) {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
677 case CODEC_ID_MP2:
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
678 /* better than nothing: skip mpeg audio RTP header */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
679 if (len <= 4)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
680 return -1;
2167
c4244900f986 remove decode_be32/64 and replace them by AV_RB32/64
benoit
parents: 2164
diff changeset
681 h = AV_RB32(buf);
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
682 len -= 4;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
683 buf += 4;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
684 av_new_packet(pkt, len);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
685 memcpy(pkt->data, buf, len);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
686 break;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
687 case CODEC_ID_MPEG1VIDEO:
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
688 case CODEC_ID_MPEG2VIDEO:
305
ef53bff8bf23 use parsers
bellard
parents: 294
diff changeset
689 /* better than nothing: skip mpeg video RTP header */
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
690 if (len <= 4)
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
691 return -1;
2167
c4244900f986 remove decode_be32/64 and replace them by AV_RB32/64
benoit
parents: 2164
diff changeset
692 h = AV_RB32(buf);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
693 buf += 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
694 len -= 4;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
695 if (h & (1 << 26)) {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
696 /* mpeg2 */
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
697 if (len <= 4)
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
698 return -1;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
699 buf += 4;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
700 len -= 4;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
701 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
702 av_new_packet(pkt, len);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
703 memcpy(pkt->data, buf, len);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
704 break;
1427
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
705 // moved from below, verbatim. this is because this section handles packets, and the lower switch handles
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
706 // timestamps.
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
707 // TODO: Put this into a dynamic packet handler...
1472
49d5a5ca2987 get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to CODEC_ID_AAC where used
bcoudurier
parents: 1460
diff changeset
708 case CODEC_ID_AAC:
1427
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
709 if (rtp_parse_mp4_au(s, buf))
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
710 return -1;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
711 {
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
712 rtp_payload_data_t *infos = s->rtp_payload_data;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
713 if (infos == NULL)
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
714 return -1;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
715 buf += infos->au_headers_length_bytes + 2;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
716 len -= infos->au_headers_length_bytes + 2;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
717
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
718 /* XXX: Fixme we only handle the case where rtp_parse_mp4_au define
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
719 one au_header */
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
720 av_new_packet(pkt, infos->au_headers[0].size);
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
721 memcpy(pkt->data, buf, infos->au_headers[0].size);
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
722 buf += infos->au_headers[0].size;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
723 len -= infos->au_headers[0].size;
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
724 }
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
725 s->read_buf_size = len;
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
726 rv= 0;
1427
f1614c754d5b move up (in the file) AAC audio handling moved from below
gpoirier
parents: 1425
diff changeset
727 break;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
728 default:
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
729 if(s->parse_packet) {
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
730 rv= s->parse_packet(s, pkt, &timestamp, buf, len);
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
731 } else {
1424
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
732 av_new_packet(pkt, len);
1c39ce5c6a5d indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents: 1419
diff changeset
733 memcpy(pkt->data, buf, len);
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
734 }
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
735 break;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
736 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
737
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
738 // now perform timestamp things....
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
739 finalize_packet(s, pkt, timestamp);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
740 }
1431
2d8a17631520 fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents: 1427
diff changeset
741 return rv;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
742 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
743
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
744 void rtp_parse_close(RTPDemuxContext *s)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
745 {
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
746 // TODO: fold this into the protocol specific data fields.
2759
b252e318023a Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSP
lucabe
parents: 2706
diff changeset
747 if (!strcmp(ff_rtp_enc_name(s->payload_type), "MP2T")) {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
748 mpegts_parse_close(s->ts);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
749 }
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
750 av_free(s);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
751 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
752
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
753 /* rtp output */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
754
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
755 static int rtp_write_header(AVFormatContext *s1)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
756 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
757 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
758 int payload_type, max_packet_size, n;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
759 AVStream *st;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
760
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
761 if (s1->nb_streams != 1)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
762 return -1;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
763 st = s1->streams[0];
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
764
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 777
diff changeset
765 payload_type = rtp_get_payload_type(st->codec);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
766 if (payload_type < 0)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
767 payload_type = RTP_PT_PRIVATE; /* private payload type */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
768 s->payload_type = payload_type;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
769
1099
f05de60b531b suggest solution for 2 fixmies
michael
parents: 1045
diff changeset
770 // following 2 FIXMies could be set based on the current time, theres normaly no info leak, as rtp will likely be transmitted immedeatly
1045
7f1b7f811f01 fix constraint violation: libavformat is not allowed to modify state of caller, including rng state
rfelker
parents: 986
diff changeset
771 s->base_timestamp = 0; /* FIXME: was random(), what should this be? */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
772 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
773 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
774 s->ssrc = 0; /* FIXME: was random(), what should this be? */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
775 s->first_packet = 1;
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
776 s->first_rtcp_ntp_time = AV_NOPTS_VALUE;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
777
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
778 max_packet_size = url_fget_max_packet_size(&s1->pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
779 if (max_packet_size <= 12)
2274
b21c2af60bc9 Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents: 2222
diff changeset
780 return AVERROR(EIO);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
781 s->max_payload_size = max_packet_size - 12;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
782
2587
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
783 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
784 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
785 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
786 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
787 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
788 } else {
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
789 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
790 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
791 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
792 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
793 /* 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
794 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
795 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
796 }
d751acab2622 Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents: 2569
diff changeset
797
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
798 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
799 switch(st->codec->codec_id) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
800 case CODEC_ID_MP2:
232
eb90c0a5a1ba CODEC_ID_MP3LAME is obsolete
bellard
parents: 173
diff changeset
801 case CODEC_ID_MP3:
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
802 s->buf_ptr = s->buf + 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
803 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
804 case CODEC_ID_MPEG1VIDEO:
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
805 case CODEC_ID_MPEG2VIDEO:
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
806 break;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
807 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
808 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
809 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
810 n = 1;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
811 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
812 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
813 break;
2550
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
814 case CODEC_ID_AAC:
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
815 s->read_buf_index = 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
816 default:
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
817 if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
818 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
819 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
820 s->buf_ptr = s->buf;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
821 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
822 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
823
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
824 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
825 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
826
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
827 /* send an rtcp sender report packet */
65
a58a8a53eb46 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 0
diff changeset
828 static void rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
829 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
830 RTPDemuxContext *s = s1->priv_data;
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
831 uint32_t rtp_ts;
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
832
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
833 #if defined(DEBUG)
1443
404048ea11bc Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents: 1431
diff changeset
834 printf("RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
835 #endif
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
836
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
837 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
838 s->last_rtcp_ntp_time = ntp_time;
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
839 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
840 s1->streams[0]->time_base) + s->base_timestamp;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
841 put_byte(&s1->pb, (RTP_VERSION << 6));
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
842 put_byte(&s1->pb, 200);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
843 put_be16(&s1->pb, 6); /* length in words - 1 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
844 put_be32(&s1->pb, s->ssrc);
2539
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
845 put_be32(&s1->pb, ntp_time / 1000000);
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
846 put_be32(&s1->pb, ((ntp_time % 1000000) << 32) / 1000000);
ba933dfa4833 Properly set RTP and NTP timestamps in RTCP SR packets
lucabe
parents: 2406
diff changeset
847 put_be32(&s1->pb, rtp_ts);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
848 put_be32(&s1->pb, s->packet_count);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
849 put_be32(&s1->pb, s->octet_count);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
850 put_flush_packet(&s1->pb);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
851 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
852
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
853 /* send an rtp packet. sequence number is incremented, but the caller
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
854 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
855 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
856 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
857 RTPDemuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
858
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
859 #ifdef DEBUG
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
860 printf("rtp_send_data size=%d\n", len);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
861 #endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
862
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
863 /* build the RTP header */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
864 put_byte(&s1->pb, (RTP_VERSION << 6));
826
ee7ba4017c8d MPEG4 streaming over RTP patch by (Luca Abeni: lucabe72, email it)
michael
parents: 820
diff changeset
865 put_byte(&s1->pb, (s->payload_type & 0x7f) | ((m & 0x01) << 7));
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
866 put_be16(&s1->pb, s->seq);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
867 put_be32(&s1->pb, s->timestamp);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
868 put_be32(&s1->pb, s->ssrc);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
869
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
870 put_buffer(&s1->pb, buf1, len);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
871 put_flush_packet(&s1->pb);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
872
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
873 s->seq++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
874 s->octet_count += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
875 s->packet_count++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
876 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
877
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
878 /* send an integer number of samples and compute time stamp and fill
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
879 the rtp send buffer before sending. */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
880 static void rtp_send_samples(AVFormatContext *s1,
241
3d92f793fd67 64 bit pts for writing - more const usage
bellard
parents: 232
diff changeset
881 const uint8_t *buf1, int size, int sample_size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
882 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
883 RTPDemuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
884 int len, max_packet_size, n;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
885
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
886 max_packet_size = (s->max_payload_size / sample_size) * sample_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
887 /* not needed, but who nows */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
888 if ((size % sample_size) != 0)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
889 av_abort();
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
890 n = 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
891 while (size > 0) {
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
892 s->buf_ptr = s->buf;
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
893 len = FFMIN(max_packet_size, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
894
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
895 /* copy data */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
896 memcpy(s->buf_ptr, buf1, len);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
897 s->buf_ptr += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
898 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
899 size -= len;
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
900 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
901 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
902 n += (s->buf_ptr - s->buf);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
903 }
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
904 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
905
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
906 /* NOTE: we suppose that exactly one frame is given as argument here */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
907 /* XXX: test it */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
908 static void rtp_send_mpegaudio(AVFormatContext *s1,
241
3d92f793fd67 64 bit pts for writing - more const usage
bellard
parents: 232
diff changeset
909 const uint8_t *buf1, int size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
910 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
911 RTPDemuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
912 int len, count, max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
913
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
914 max_packet_size = s->max_payload_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
915
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
916 /* test if we must flush because not enough space */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
917 len = (s->buf_ptr - s->buf);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
918 if ((len + size) > max_packet_size) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
919 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
920 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
921 s->buf_ptr = s->buf + 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
922 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
923 }
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
924 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
925 s->timestamp = s->cur_timestamp;
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
926 }
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
927
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
928 /* add the packet */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
929 if (size > max_packet_size) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
930 /* big packet: fragment */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
931 count = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
932 while (size > 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
933 len = max_packet_size - 4;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
934 if (len > size)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
935 len = size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
936 /* build fragmented packet */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
937 s->buf[0] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
938 s->buf[1] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
939 s->buf[2] = count >> 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
940 s->buf[3] = count;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
941 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
942 ff_rtp_send_data(s1, s->buf, len + 4, 0);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
943 size -= len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
944 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
945 count += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
946 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
947 } else {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
948 if (s->buf_ptr == s->buf + 4) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
949 /* no fragmentation possible */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
950 s->buf[0] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
951 s->buf[1] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
952 s->buf[2] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
953 s->buf[3] = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
954 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
955 memcpy(s->buf_ptr, buf1, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
956 s->buf_ptr += size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
957 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
958 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
959
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
960 static void rtp_send_raw(AVFormatContext *s1,
241
3d92f793fd67 64 bit pts for writing - more const usage
bellard
parents: 232
diff changeset
961 const uint8_t *buf1, int size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
962 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
963 RTPDemuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
964 int len, max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
965
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
966 max_packet_size = s->max_payload_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
967
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
968 while (size > 0) {
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
969 len = max_packet_size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
970 if (len > size)
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
971 len = size;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
972
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
973 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
974 ff_rtp_send_data(s1, buf1, len, (len == size));
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
975
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
976 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
977 size -= len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
978 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
979 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
980
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
981 /* 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
982 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
983 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
984 {
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
985 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
986 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
987
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
988 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
989 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
990 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
991 len = size;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
992 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
993 buf1 += len;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
994 size -= len;
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
995 s->buf_ptr += len;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
996
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
997 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
998 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
999 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
1000 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
1001 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
1002 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
1003 }
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
1004
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1005 /* write an RTP packet. 'buf1' must contain a single specific frame. */
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 370
diff changeset
1006 static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1007 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
1008 RTPDemuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1009 AVStream *st = s1->streams[0];
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1010 int rtcp_bytes;
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 370
diff changeset
1011 int size= pkt->size;
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 370
diff changeset
1012 uint8_t *buf1= pkt->data;
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
1013
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1014 #ifdef DEBUG
468
60f897e8dd2d pass AVPacket into av_write_frame()
michael
parents: 370
diff changeset
1015 printf("%d: write len=%d\n", pkt->stream_index, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1016 #endif
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1017
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1018 /* XXX: mpeg pts hardcoded. RTCP send every 0.5 seconds */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
1019 rtcp_bytes = ((s->octet_count - s->last_octet_count) * RTCP_TX_RATIO_NUM) /
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1020 RTCP_TX_RATIO_DEN;
2706
b1723b8da595 Do not send too many RTCP packets (according to RFC 3550, the minimum
lucabe
parents: 2705
diff changeset
1021 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
1022 (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
1023 rtcp_send_sr(s1, av_gettime());
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1024 s->last_octet_count = s->octet_count;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1025 s->first_packet = 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1026 }
2540
ca3cba9c641f Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)
lucabe
parents: 2539
diff changeset
1027 s->cur_timestamp = s->base_timestamp + pkt->pts;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1028
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 777
diff changeset
1029 switch(st->codec->codec_id) {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1030 case CODEC_ID_PCM_MULAW:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1031 case CODEC_ID_PCM_ALAW:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1032 case CODEC_ID_PCM_U8:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1033 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
1034 rtp_send_samples(s1, buf1, size, 1 * st->codec->channels);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1035 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1036 case CODEC_ID_PCM_U16BE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1037 case CODEC_ID_PCM_U16LE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1038 case CODEC_ID_PCM_S16BE:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1039 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
1040 rtp_send_samples(s1, buf1, size, 2 * st->codec->channels);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1041 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1042 case CODEC_ID_MP2:
232
eb90c0a5a1ba CODEC_ID_MP3LAME is obsolete
bellard
parents: 173
diff changeset
1043 case CODEC_ID_MP3:
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1044 rtp_send_mpegaudio(s1, buf1, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1045 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1046 case CODEC_ID_MPEG1VIDEO:
2760
034925441d67 Add MPEG2 support to the RTP muxer
lucabe
parents: 2759
diff changeset
1047 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
1048 ff_rtp_send_mpegvideo(s1, buf1, size);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1049 break;
2550
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
1050 case CODEC_ID_AAC:
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
1051 ff_rtp_send_aac(s1, buf1, size);
e9c34ec665c6 Support for AAC streaming over RTP. Fragmentation is not implemented yet
lucabe
parents: 2540
diff changeset
1052 break;
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
1053 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
1054 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
1055 break;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1056 default:
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1057 /* better than nothing : send the codec raw data */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1058 rtp_send_raw(s1, buf1, size);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1059 break;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1060 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1061 return 0;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1062 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1063
1167
d89d7ef290da give AVInput/OutputFormat structs consistent names
mru
parents: 1116
diff changeset
1064 AVOutputFormat rtp_muxer = {
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1065 "rtp",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1066 "RTP output format",
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1067 NULL,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1068 NULL,
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
1069 sizeof(RTPDemuxContext),
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1070 CODEC_ID_PCM_MULAW,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1071 CODEC_ID_NONE,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1072 rtp_write_header,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1073 rtp_write_packet,
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1074 };