Mercurial > libavformat.hg
annotate rtp_internal.h @ 2702:6a7b82888880 libavformat
Enable debug variable only when debug code is enabled, fixes the warning:
rtp_h264.c: In function ¡Æh264_handle_packet¡Ç:
rtp_h264.c:168: warning: unused variable ¡Ædata¡Ç
author | diego |
---|---|
date | Sun, 04 Nov 2007 12:46:16 +0000 |
parents | 792383dd085e |
children | b252e318023a |
rev | line source |
---|---|
1419 | 1 /* |
2 * RTP definitions | |
3 * Copyright (c) 2006 Ryan Martell <rdm4@martellventures.com> | |
4 * | |
1421 | 5 * This file is part of FFmpeg. |
6 * | |
7 * FFmpeg is free software; you can redistribute it and/or | |
1419 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1420 | 10 * version 2.1 of the License, or (at your option) any later version. |
1419 | 11 * |
1420 | 12 * FFmpeg is distributed in the hope that it will be useful, |
1419 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
1422 | 18 * License along with FFmpeg; if not, write to the Free Software |
1419 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 */ | |
21 | |
22 // this is a bit of a misnomer, because rtp & rtsp internal structures and prototypes are in here. | |
2620
792383dd085e
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
2587
diff
changeset
|
23 #ifndef FFMPEG_RTP_INTERNAL_H |
792383dd085e
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
2587
diff
changeset
|
24 #define FFMPEG_RTP_INTERNAL_H |
1419 | 25 |
2171 | 26 #include <stdint.h> |
27 #include "avcodec.h" | |
28 #include "rtp.h" | |
29 | |
1445
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
30 // these statistics are used for rtcp receiver reports... |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
31 typedef struct { |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
32 uint16_t max_seq; ///< highest sequence number seen |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
33 uint32_t cycles; ///< shifted count of sequence number cycles |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
34 uint32_t base_seq; ///< base sequence number |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
35 uint32_t bad_seq; ///< last bad sequence number + 1 |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
36 int probation; ///< sequence packets till source is valid |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
37 int received; ///< packets received |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
38 int expected_prior; ///< packets expected in last interval |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
39 int received_prior; ///< packets received in last interval |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
40 uint32_t transit; ///< relative transit time for previous packet |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
41 uint32_t jitter; ///< estimated jitter. |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
42 } RTPStatistics; |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
43 |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
44 |
1419 | 45 typedef int (*DynamicPayloadPacketHandlerProc) (struct RTPDemuxContext * s, |
46 AVPacket * pkt, | |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
47 uint32_t *timestamp, |
1419 | 48 const uint8_t * buf, |
49 int len); | |
50 | |
51 typedef struct RTPDynamicProtocolHandler_s { | |
52 // fields from AVRtpDynamicPayloadType_s | |
53 const char enc_name[50]; /* XXX: still why 50 ? ;-) */ | |
54 enum CodecType codec_type; | |
55 enum CodecID codec_id; | |
56 | |
57 // may be null | |
58 int (*parse_sdp_a_line) (AVStream * stream, | |
59 void *protocol_data, | |
60 const char *line); ///< Parse the a= line from the sdp field | |
61 void *(*open) (); ///< allocate any data needed by the rtp parsing for this dynamic data. | |
62 void (*close)(void *protocol_data); ///< free any data needed by the rtp parsing for this dynamic data. | |
63 DynamicPayloadPacketHandlerProc parse_packet; ///< parse handler for this dynamic packet. | |
64 | |
65 struct RTPDynamicProtocolHandler_s *next; | |
66 } RTPDynamicProtocolHandler; | |
67 | |
68 // moved out of rtp.c, because the h264 decoder needs to know about this structure.. | |
69 struct RTPDemuxContext { | |
70 AVFormatContext *ic; | |
71 AVStream *st; | |
72 int payload_type; | |
73 uint32_t ssrc; | |
74 uint16_t seq; | |
75 uint32_t timestamp; | |
76 uint32_t base_timestamp; | |
77 uint32_t cur_timestamp; | |
78 int max_payload_size; | |
79 struct MpegTSContext *ts; /* only used for MP2T payloads */ | |
80 int read_buf_index; | |
81 int read_buf_size; | |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1422
diff
changeset
|
82 /* used to send back RTCP RR */ |
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1422
diff
changeset
|
83 URLContext *rtp_ctx; |
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1422
diff
changeset
|
84 char hostname[256]; |
1419 | 85 |
1445
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
86 RTPStatistics statistics; ///< Statistics for this stream (used by RTCP receiver reports) |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
87 |
1419 | 88 /* rtcp sender statistics receive */ |
89 int64_t last_rtcp_ntp_time; // TODO: move into statistics | |
90 int64_t first_rtcp_ntp_time; // TODO: move into statistics | |
91 uint32_t last_rtcp_timestamp; // TODO: move into statistics | |
92 | |
93 /* rtcp sender statistics */ | |
94 unsigned int packet_count; // TODO: move into statistics (outgoing) | |
95 unsigned int octet_count; // TODO: move into statistics (outgoing) | |
96 unsigned int last_octet_count; // TODO: move into statistics (outgoing) | |
97 int first_packet; | |
98 /* buffer for output */ | |
99 uint8_t buf[RTP_MAX_PACKET_LENGTH]; | |
100 uint8_t *buf_ptr; | |
101 | |
102 /* special infos for au headers parsing */ | |
103 rtp_payload_data_t *rtp_payload_data; // TODO: Move into dynamic payload handlers | |
104 | |
105 /* dynamic payload stuff */ | |
106 DynamicPayloadPacketHandlerProc parse_packet; ///< This is also copied from the dynamic protocol handler structure | |
107 void *dynamic_protocol_context; ///< This is a copy from the values setup from the sdp parsing, in rtsp.c don't free me. | |
2587
d751acab2622
Allow to set the maximum number of frames per RTP packet (and add support for
lucabe
parents:
2545
diff
changeset
|
108 int max_frames_per_packet; |
1419 | 109 }; |
110 | |
111 extern RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler; | |
1445
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
112 |
db97355877b1
add valid statistics for the RTCP receiver report.
gpoirier
parents:
1431
diff
changeset
|
113 int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size); ///< from rtsp.c, but used by rtp dynamic protocol handlers. |
2406
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2171
diff
changeset
|
114 |
18e94e5989d8
Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents:
2171
diff
changeset
|
115 void ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m); |
2545
213268d7594e
move unrelated functions declarations out of allformats.h
aurel
parents:
2406
diff
changeset
|
116 |
213268d7594e
move unrelated functions declarations out of allformats.h
aurel
parents:
2406
diff
changeset
|
117 void av_register_rtp_dynamic_payload_handlers(void); |
213268d7594e
move unrelated functions declarations out of allformats.h
aurel
parents:
2406
diff
changeset
|
118 |
2620
792383dd085e
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
2587
diff
changeset
|
119 #endif /* FFMPEG_RTP_INTERNAL_H */ |
1419 | 120 |