]> git.sesse.net Git - vlc/blob - include/vlc_streaming.h
7a97b8d76f3d2d63dcad79d4f77771c0fbae629d
[vlc] / include / vlc_streaming.h
1 /*****************************************************************************
2  * vlc_streaming.h: Methods and descriptions for Streaming profiles
3  *****************************************************************************
4  * Copyright (C) 2002-2005 the VideoLAN team
5  * $Id: stream_output.h 14151 2006-02-04 00:08:50Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_STREAMING_H_
25 #define _VLC_STREAMING_H_
26
27 #include <vlc/vlc.h>
28
29 /***********************************************************************
30  * Predefined lists of streaming data
31  ***********************************************************************/
32
33 #ifdef WIN32
34 #define VCODECS_NUMBER 13
35 #else
36 #define VCODECS_NUMBER 12
37 #endif
38
39 #define ACODECS_NUMBER 9
40
41 /// Keep this up to date !
42 #define MUXERS_NUMBER 10
43 enum
44 {
45     MUX_PS, MUX_TS, MUX_MPEG, MUX_OGG, MUX_RAW,
46     MUX_ASF, MUX_AVI, MUX_MP4, MUX_MOV, MUX_WAV,
47 };
48
49 enum { ACCESS_HTTP, ACCESS_UDP, ACCESS_MMS, ACCESS_RTP, ACCESS_FILE };
50
51 struct codec_desc_t {
52     char *psz_display;
53     char *psz_codec;
54     char *psz_descr;
55     int muxers[MUXERS_NUMBER];
56 };
57 //extern const struct codec vcodecs_array[];
58 //extern const struct codec acodecs_array[];
59
60 struct method_desc_t {
61     char *psz_access;
62     char *psz_method;
63     char *psz_descr;
64     char *psz_address;
65     int   muxers[MUXERS_NUMBER];
66 };
67 //xtern const struct method methods_array[];
68
69 struct mux_desc_t {
70     int   id;
71     char *psz_mux;
72     char *psz_encap;
73     char *psz_descr;
74 };
75 //extern const struct mux_desc_t muxers_array[];
76
77
78 /* Standard bitrates arrays */
79 //static const char * vbitrates_array[] =
80 //{ "3072", "2048", "1024", "768", "512", "384", "256", "192", "128", "96",
81 //  "64" };
82
83 //static const char *abitrates_array[] =
84 //{ "512", "256", "192", "128", "96", "64", "32", "16" } ;
85 //
86
87
88 /***********************************************************************
89  * Streaming profiles
90  ***********************************************************************/
91
92 /****************** Parameters handling *********************/
93 struct sout_param_t
94 {
95     int i_type;
96     int i_element;
97     char *psz_id;
98     char *psz_string;
99     vlc_value_t value;
100 };
101
102 struct sout_pcat_t
103 {
104     char *psz_name;
105     int i_params;
106     sout_param_t **pp_params;
107 };
108
109 void streaming_ParameterApply( sout_param_t *p_param, char **ppsz_dest,
110                            int *pi_dest, float *pf_dest, vlc_bool_t *pb_dest );
111
112
113 /******** Module types definitions and parametrable elements ***************/
114
115 /* Transcode */
116 enum { I_VB, I_AB, I_CHANNELS, F_SCALE, B_SOVERLAY, PSZ_VC, PSZ_AC, PSZ_SC,
117        PSZ_VE, PSZ_AE };
118 struct sout_transcode_t
119 {
120     int i_vb, i_ab, i_channels;
121     float f_scale;
122     vlc_bool_t b_soverlay;
123     char *psz_vcodec, *psz_acodec, *psz_scodec, *psz_venc, *psz_aenc;
124     char *psz_additional;
125
126     int i_params; sout_param_t **pp_params;
127 };
128 void streaming_TranscodeParametersApply( sout_transcode_t *p_module );
129
130 /* Standard */
131 enum { PSZ_MUX, PSZ_ACCESS, PSZ_URL, PSZ_NAME, PSZ_GROUP };
132 struct sout_std_t
133 {
134     char *psz_mux, *psz_access;
135     char *psz_url, *psz_name, *psz_group;
136     int i_params; sout_param_t **pp_params;
137 };
138 void streaming_StdParametersApply( sout_std_t *p_module );
139
140 /* Display */
141 struct sout_display_t
142 {
143 };
144
145 /* Duplicate */
146 struct sout_duplicate_t
147 {
148     int i_children, i_conditions;
149     sout_chain_t **pp_children;
150     char **ppsz_conditions;
151 };
152
153 /******* Generic profile structures and manipulation functions ********/
154 typedef union
155 {
156     sout_transcode_t *p_transcode;
157     sout_std_t       *p_std;
158     sout_duplicate_t *p_duplicate;
159     sout_display_t   *p_display;
160 } sout_module_type_t;
161
162 struct sout_module_t
163 {
164     int i_type;
165     sout_module_type_t typed;
166     sout_module_t *p_parent;
167 };
168
169 enum { SOUT_MOD_TRANSCODE, SOUT_MOD_STD, SOUT_MOD_RTP, SOUT_MOD_DUPLICATE,
170        SOUT_MOD_DISPLAY };
171
172 struct sout_chain_t
173 {
174     int i_modules;
175     sout_module_t **pp_modules;
176
177     int i_options;
178     char **ppsz_options;
179
180     int i_pcats;
181     sout_pcat_t **pp_pcats;
182 };
183
184 static inline sout_chain_t *streaming_ChainNew(void)
185 {
186     DECMALLOC_NULL( p_chain, sout_chain_t );
187     memset( p_chain, 0, sizeof( sout_chain_t ) );
188     p_chain->i_options = 0;
189     return p_chain;
190 }
191
192 struct streaming_profile_t
193 {
194     char *psz_title;
195     char *psz_description;
196     sout_chain_t *p_chain;
197 };
198
199 /**************** GUI interaction *****************/
200 struct sout_gui_descr_t
201 {
202     /* Access */
203     vlc_bool_t b_local, b_file, b_http, b_mms, b_rtp, b_udp, b_dump;
204     char *psz_file, *psz_http, *psz_mms, *psz_rtp, *psz_udp;
205     int i_http, i_mms, i_rtp, i_udp;
206
207     /* Mux */
208     char *psz_mux;
209
210     /* Transcode */
211     vlc_bool_t b_soverlay;
212     char *psz_vcodec, *psz_acodec, *psz_scodec;
213     int i_vb, i_ab, i_channels;
214     float f_scale;
215
216     /* Misc */
217     vlc_bool_t b_sap, b_all_es;
218     char *psz_group, *psz_name;
219     int i_ttl;
220 };
221
222 /***************** Profile parsing ***********************/
223
224 struct profile_parser_t
225 {
226     char *psz_profile;
227     streaming_profile_t *p_profile;
228 };
229
230 #endif