Mercurial > libavformat.hg
annotate rtsp.h @ 3870:97a01cb166f5 libavformat
Remove pointless #ifdef CONFIG_VHOOK from the code.
The file is only ever compiled if CONFIG_VHOOK is set.
author | diego |
---|---|
date | Tue, 02 Sep 2008 22:31:41 +0000 |
parents | c9550824fd1c |
children | 9f943bb755f9 |
rev | line source |
---|---|
0 | 1 /* |
2 * RTSP definitions | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
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 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1167
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
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 | 20 */ |
3853 | 21 #ifndef FFMPEG_RTSP_H |
22 #define FFMPEG_RTSP_H | |
0 | 23 |
2171 | 24 #include <stdint.h> |
25 #include "avformat.h" | |
0 | 26 #include "rtspcodes.h" |
27 | |
28 enum RTSPProtocol { | |
29 RTSP_PROTOCOL_RTP_UDP = 0, | |
30 RTSP_PROTOCOL_RTP_TCP = 1, | |
31 RTSP_PROTOCOL_RTP_UDP_MULTICAST = 2, | |
3149
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
32 /** |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
33 * This is not part of public API and shouldn't be used outside of ffmpeg. |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
34 */ |
5a7a7406ab1f
Allow cycling between different protocols (TCP, UDP or multicast) so that if
rbultje
parents:
2884
diff
changeset
|
35 RTSP_PROTOCOL_RTP_LAST |
0 | 36 }; |
37 | |
38 #define RTSP_DEFAULT_PORT 554 | |
39 #define RTSP_MAX_TRANSPORTS 8 | |
179 | 40 #define RTSP_TCP_MAX_PACKET_SIZE 1472 |
774 | 41 #define RTSP_DEFAULT_NB_AUDIO_CHANNELS 2 |
42 #define RTSP_DEFAULT_AUDIO_SAMPLERATE 44100 | |
43 #define RTSP_RTP_PORT_MIN 5000 | |
44 #define RTSP_RTP_PORT_MAX 10000 | |
0 | 45 |
46 typedef struct RTSPTransportField { | |
1871 | 47 int interleaved_min, interleaved_max; /**< interleave ids, if TCP transport */ |
48 int port_min, port_max; /**< RTP ports */ | |
49 int client_port_min, client_port_max; /**< RTP ports */ | |
50 int server_port_min, server_port_max; /**< RTP ports */ | |
51 int ttl; /**< ttl value */ | |
52 uint32_t destination; /**< destination IP address */ | |
0 | 53 enum RTSPProtocol protocol; |
54 } RTSPTransportField; | |
55 | |
56 typedef struct RTSPHeader { | |
57 int content_length; | |
1871 | 58 enum RTSPStatusCode status_code; /**< response code from server */ |
0 | 59 int nb_transports; |
1871 | 60 /** in AV_TIME_BASE unit, AV_NOPTS_VALUE if not used */ |
885 | 61 int64_t range_start, range_end; |
0 | 62 RTSPTransportField transports[RTSP_MAX_TRANSPORTS]; |
1871 | 63 int seq; /**< sequence number */ |
0 | 64 char session_id[512]; |
3855 | 65 char real_challenge[64]; /**< the RealChallenge1 field from the server */ |
0 | 66 } RTSPHeader; |
67 | |
1871 | 68 /** the callback can be used to extend the connection setup/teardown step */ |
0 | 69 enum RTSPCallbackAction { |
70 RTSP_ACTION_SERVER_SETUP, | |
71 RTSP_ACTION_SERVER_TEARDOWN, | |
72 RTSP_ACTION_CLIENT_SETUP, | |
73 RTSP_ACTION_CLIENT_TEARDOWN, | |
74 }; | |
75 | |
76 typedef struct RTSPActionServerSetup { | |
65 | 77 uint32_t ipaddr; |
0 | 78 char transport_option[512]; |
79 } RTSPActionServerSetup; | |
80 | |
885 | 81 typedef int FFRTSPCallback(enum RTSPCallbackAction action, |
0 | 82 const char *session_id, |
83 char *buf, int buf_size, | |
84 void *arg); | |
85 | |
86 int rtsp_init(void); | |
87 void rtsp_parse_line(RTSPHeader *reply, const char *buf); | |
88 | |
2884 | 89 #if LIBAVFORMAT_VERSION_INT < (53 << 16) |
0 | 90 extern int rtsp_default_protocols; |
2884 | 91 #endif |
0 | 92 extern int rtsp_rtp_port_min; |
93 extern int rtsp_rtp_port_max; | |
179 | 94 |
95 int rtsp_pause(AVFormatContext *s); | |
96 int rtsp_resume(AVFormatContext *s); | |
0 | 97 |
3853 | 98 #endif /* FFMPEG_RTSP_H */ |