annotate rtp.h @ 3852:1b6245500d8c libavformat

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 74fbde8871c4
children 1f1c4535f421
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 definitions
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: 1167
diff changeset
5 * This file is part of FFmpeg.
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1167
diff changeset
6 *
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1167
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: 1167
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: 1167
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: 1167
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 */
3852
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3617
diff changeset
21 #ifndef AVFORMAT_RTP_H
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3617
diff changeset
22 #define AVFORMAT_RTP_H
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23
3286
6f61c3b36632 Use full path for #includes from another directory.
diego
parents: 2901
diff changeset
24 #include "libavcodec/avcodec.h"
2171
a6d6b2b19341 include all prerequisites in header files
mru
parents: 1869
diff changeset
25 #include "avformat.h"
a6d6b2b19341 include all prerequisites in header files
mru
parents: 1869
diff changeset
26
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
27 #define RTP_MIN_PACKET_LENGTH 12
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
28 #define RTP_MAX_PACKET_LENGTH 1500 /* XXX: suppress this define */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
29
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
30 int rtp_get_codec_info(AVCodecContext *codec, int payload_type);
1856
99d50be70d9a Move rtp_get_payload_type()'s unaltered comments to the header file.
takis
parents: 1807
diff changeset
31
1866
8d7a19c937dc Doxygenize the existing comments without altering the actual contents of the
takis
parents: 1857
diff changeset
32 /** return < 0 if unknown payload type */
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
33 int rtp_get_payload_type(AVCodecContext *codec);
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 0
diff changeset
34
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 0
diff changeset
35 typedef struct RTPDemuxContext RTPDemuxContext;
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
36 typedef struct rtp_payload_data_s rtp_payload_data_s;
1425
00d9393a126f make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents: 1419
diff changeset
37 RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, rtp_payload_data_s *rtp_payload_data);
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 803
diff changeset
38 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: 0
diff changeset
39 const uint8_t *buf, int len);
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 0
diff changeset
40 void rtp_parse_close(RTPDemuxContext *s);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
41
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
42 int rtp_get_local_port(URLContext *h);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
43 int rtp_set_remote_url(URLContext *h, const char *uri);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
44 void rtp_get_file_handles(URLContext *h, int *prtp_fd, int *prtcp_fd);
1857
17893fe08372 Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.
takis
parents: 1856
diff changeset
45
17893fe08372 Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.
takis
parents: 1856
diff changeset
46 /**
17893fe08372 Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.
takis
parents: 1856
diff changeset
47 * some rtp servers assume client is dead if they don't hear from them...
17893fe08372 Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.
takis
parents: 1856
diff changeset
48 * so we send a Receiver Report to the provided ByteIO context
17893fe08372 Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.
takis
parents: 1856
diff changeset
49 * (we don't have access to the rtcp handle from here)
17893fe08372 Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.
takis
parents: 1856
diff changeset
50 */
1745
699a422bca90 Missing prototype added
lu_zero
parents: 1425
diff changeset
51 int rtp_check_and_send_back_rr(RTPDemuxContext *s, int count);
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
52
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
53 #define RTP_PT_PRIVATE 96
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
54 #define RTP_VERSION 2
1867
04f5cfe20a92 Doxygenize the unaltered comments for the RTP_MAX_SDES definition.
takis
parents: 1866
diff changeset
55 #define RTP_MAX_SDES 256 /**< maximum text length for SDES */
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
56
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
57 /* RTCP paquets use 0.5 % of the bandwidth */
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
58 #define RTCP_TX_RATIO_NUM 5
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
59 #define RTCP_TX_RATIO_DEN 1000
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
60
1868
b92a67b0b4bd Doxygenize the unaltered comments for the rtp_payload_data_s struct.
takis
parents: 1867
diff changeset
61 /** Structure listing useful vars to parse RTP packet payload*/
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
62 typedef struct rtp_payload_data_s
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
63 {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
64 int sizelength;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
65 int indexlength;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
66 int indexdeltalength;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
67 int profile_level_id;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
68 int streamtype;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
69 int objecttype;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
70 char *mode;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
71
1869
48b1d0b70e09 Doxygenize the unaltered comments for the AUHeaders structure.
takis
parents: 1868
diff changeset
72 /** mpeg 4 AU headers */
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
73 struct AUHeaders {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
74 int size;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
75 int index;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
76 int cts_flag;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
77 int cts;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
78 int dts_flag;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
79 int dts;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
80 int rap_flag;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
81 int streamstate;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
82 } *au_headers;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
83 int nb_au_headers;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
84 int au_headers_length_bytes;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
85 int cur_au_index;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
86 } rtp_payload_data_t;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
87
803
021c8bf015c2 RTCP_* conflict with live.com and they seem not to be used anywhere so commenting them out
michael
parents: 774
diff changeset
88 #if 0
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
89 typedef enum {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
90 RTCP_SR = 200,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
91 RTCP_RR = 201,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
92 RTCP_SDES = 202,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
93 RTCP_BYE = 203,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
94 RTCP_APP = 204
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
95 } rtcp_type_t;
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
96
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
97 typedef enum {
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
98 RTCP_SDES_END = 0,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
99 RTCP_SDES_CNAME = 1,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
100 RTCP_SDES_NAME = 2,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
101 RTCP_SDES_EMAIL = 3,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
102 RTCP_SDES_PHONE = 4,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
103 RTCP_SDES_LOC = 5,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
104 RTCP_SDES_TOOL = 6,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
105 RTCP_SDES_NOTE = 7,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
106 RTCP_SDES_PRIV = 8,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
107 RTCP_SDES_IMG = 9,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
108 RTCP_SDES_DOOR = 10,
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
109 RTCP_SDES_SOURCE = 11
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
110 } rtcp_sdes_type_t;
803
021c8bf015c2 RTCP_* conflict with live.com and they seem not to be used anywhere so commenting them out
michael
parents: 774
diff changeset
111 #endif
774
820863425158 RTP/RTSP and MPEG4-AAC audio
michael
parents: 294
diff changeset
112
3852
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3617
diff changeset
113 #endif /* AVFORMAT_RTP_H */