Real rstp:// streaming support, ported from xine
[mplayer/greg.git] / libmpdemux / realrtsp / sdpplin.h
blob9fc363964c2982f4869a127908030a739b7f18e5
1 /*
2 * This file was ported to MPlayer from xine CVS sdpplin.h,v 1.1 2002/12/24 01:30:22
3 */
5 /*
6 * Copyright (C) 2002 the xine project
8 * This file is part of xine, a free video player.
10 * xine is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * xine is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
25 * sdp/sdpplin parser.
29 #ifndef HAVE_SDPPLIN_H
30 #define HAVE_SDPPLIN_H
32 #include "rmff.h"
33 #include "rtsp.h"
35 #ifdef __CYGWIN__
36 #define uint32_t unsigned int
37 #define uint16_t unsigned short int
38 #define uint8_t unsigned char
39 #endif
41 typedef struct {
43 char *id;
44 char *bandwidth;
46 int stream_id;
47 char *range;
48 char *length;
49 char *rtpmap;
50 char *mimetype;
51 int min_switch_overlap;
52 int start_time;
53 int end_one_rule_end_all;
54 int avg_bit_rate;
55 int max_bit_rate;
56 int avg_packet_size;
57 int max_packet_size;
58 int end_time;
59 int seek_greater_on_switch;
60 int preroll;
62 int duration;
63 char *stream_name;
64 int stream_name_size;
65 char *mime_type;
66 int mime_type_size;
67 char *mlti_data;
68 int mlti_data_size;
69 int rmff_flags_length;
70 char *rmff_flags;
71 int asm_rule_book_length;
72 char *asm_rule_book;
74 } sdpplin_stream_t;
76 typedef struct {
78 int sdp_version, sdpplin_version;
79 char *owner;
80 char *session_name;
81 char *session_info;
82 char *uri;
83 char *email;
84 char *phone;
85 char *connection;
86 char *bandwidth;
88 int flags;
89 int is_real_data_type;
90 int stream_count;
91 char *title;
92 char *author;
93 char *copyright;
94 char *keywords;
95 int asm_rule_book_length;
96 char *asm_rule_book;
97 char *abstract;
98 char *range;
99 int avg_bit_rate;
100 int max_bit_rate;
101 int avg_packet_size;
102 int max_packet_size;
103 int preroll;
104 int duration;
106 sdpplin_stream_t **stream;
108 } sdpplin_t;
110 sdpplin_t *sdpplin_parse(char *data);
112 void sdpplin_free(sdpplin_t *description);
114 #endif