]> git.sesse.net Git - vlc/blob - include/vlc_sout.h
A bit of vlc/libvlc cleanup:
[vlc] / include / vlc_sout.h
1 /*****************************************************************************
2  * stream_output.h : stream output module
3  *****************************************************************************
4  * Copyright (C) 2002-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Eric Petit <titer@videolan.org>
10  *          Jean-Paul Saman <jpsaman #_at_# m2x.nl>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #if !defined( __LIBVLC__ )
28   #error You are not libvlc or one of its plugins. You cannot include this file
29 #endif
30
31 #ifndef _VLC_SOUT_H_
32 #define _VLC_SOUT_H_
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 #include <vlc_es.h>
39
40 /** Stream output instance */
41 struct sout_instance_t
42 {
43     VLC_COMMON_MEMBERS
44
45     char *psz_sout;
46     char *psz_chain;
47
48     /* meta data (Read only) XXX it won't be set before the first packet received */
49     vlc_meta_t          *p_meta;
50
51     /** count of output that can't control the space */
52     int                 i_out_pace_nocontrol;
53
54     vlc_mutex_t         lock;
55     sout_stream_t       *p_stream;
56
57     /** Private */
58     sout_instance_sys_t *p_sys;
59 };
60
61 /****************************************************************************
62  * sout_stream_id_t: opaque (private for all sout_stream_t)
63  ****************************************************************************/
64 typedef struct sout_stream_id_t  sout_stream_id_t;
65
66 /** Stream output access_output */
67 struct sout_access_out_t
68 {
69     VLC_COMMON_MEMBERS
70
71     module_t                *p_module;
72
73     sout_instance_t         *p_sout;
74
75     char                    *psz_access;
76     config_chain_t              *p_cfg;
77
78     int                      i_writes;
79     /** Local counter reset each time it is transferred to stats */
80     int64_t                  i_sent_bytes;
81
82     char                    *psz_name;
83     sout_access_out_sys_t   *p_sys;
84     int                     (*pf_seek)( sout_access_out_t *, off_t );
85     int                     (*pf_read)( sout_access_out_t *, block_t * );
86     int                     (*pf_write)( sout_access_out_t *, block_t * );
87 };
88
89 VLC_EXPORT( sout_access_out_t *,sout_AccessOutNew, ( sout_instance_t *, char *psz_access, char *psz_name ) );
90 VLC_EXPORT( void,               sout_AccessOutDelete, ( sout_access_out_t * ) );
91 VLC_EXPORT( int,                sout_AccessOutSeek,   ( sout_access_out_t *, off_t ) );
92 VLC_EXPORT( int,                sout_AccessOutRead,   ( sout_access_out_t *, block_t * ) );
93 VLC_EXPORT( int,                sout_AccessOutWrite,  ( sout_access_out_t *, block_t * ) );
94
95 /** Muxer structure */
96 struct  sout_mux_t
97 {
98     VLC_COMMON_MEMBERS
99     module_t            *p_module;
100
101     sout_instance_t     *p_sout;
102
103     char                *psz_mux;
104     config_chain_t          *p_cfg;
105
106     sout_access_out_t   *p_access;
107
108     int                 (*pf_addstream)( sout_mux_t *, sout_input_t * );
109     int                 (*pf_delstream)( sout_mux_t *, sout_input_t * );
110     int                 (*pf_mux)      ( sout_mux_t * );
111     int                 (*pf_control)  ( sout_mux_t *, int, va_list );
112
113     /* here are all inputs accepted by muxer */
114     int                 i_nb_inputs;
115     sout_input_t        **pp_inputs;
116
117     /* mux private */
118     sout_mux_sys_t      *p_sys;
119
120     /* XXX private to stream_output.c */
121     /* if muxer doesn't support adding stream at any time then we first wait
122      *  for stream then we refuse all stream and start muxing */
123     vlc_bool_t  b_add_stream_any_time;
124     vlc_bool_t  b_waiting_stream;
125     /* we wait one second after first stream added */
126     mtime_t     i_add_stream_start;
127 };
128
129 enum sout_mux_query_e
130 {
131     /* capabilities */
132     MUX_CAN_ADD_STREAM_WHILE_MUXING,    /* arg1= vlc_bool_t *,      res=cannot fail */
133     /* properties */
134     MUX_GET_ADD_STREAM_WAIT,            /* arg1= vlc_bool_t *,      res=cannot fail */
135     MUX_GET_MIME,                       /* arg1= char **            res=can fail    */
136 };
137
138 struct sout_input_t
139 {
140     sout_instance_t *p_sout;
141
142     es_format_t     *p_fmt;
143     block_fifo_t    *p_fifo;
144
145     void            *p_sys;
146 };
147
148
149 VLC_EXPORT( sout_mux_t *,   sout_MuxNew,          ( sout_instance_t*, char *, sout_access_out_t * ) );
150 VLC_EXPORT( sout_input_t *, sout_MuxAddStream,    ( sout_mux_t *, es_format_t * ) );
151 VLC_EXPORT( void,           sout_MuxDeleteStream, ( sout_mux_t *, sout_input_t * ) );
152 VLC_EXPORT( void,           sout_MuxDelete,       ( sout_mux_t * ) );
153 VLC_EXPORT( void,           sout_MuxSendBuffer, ( sout_mux_t *, sout_input_t  *, block_t * ) );
154
155 static inline int sout_MuxControl( sout_mux_t *p_mux, int i_query, ... )
156 {
157     va_list args;
158     int     i_result;
159
160     va_start( args, i_query );
161     i_result = p_mux->pf_control( p_mux, i_query, args );
162     va_end( args );
163     return i_result;
164 }
165
166 /****************************************************************************
167  * sout_stream:
168  ****************************************************************************/
169 struct sout_stream_t
170 {
171     VLC_COMMON_MEMBERS
172
173     module_t          *p_module;
174     sout_instance_t   *p_sout;
175
176     char              *psz_name;
177     config_chain_t        *p_cfg;
178     char              *psz_next;
179
180     /* Subpicture unit */
181     spu_t             *p_spu;
182
183     /* add, remove a stream */
184     sout_stream_id_t *(*pf_add)( sout_stream_t *, es_format_t * );
185     int               (*pf_del)( sout_stream_t *, sout_stream_id_t * );
186     /* manage a packet */
187     int               (*pf_send)( sout_stream_t *, sout_stream_id_t *, block_t* );
188
189     /* private */
190     sout_stream_sys_t *p_sys;
191 };
192
193 VLC_EXPORT( sout_stream_t *, sout_StreamNew, ( sout_instance_t *, char *psz_chain ) );
194 VLC_EXPORT( void,            sout_StreamDelete, ( sout_stream_t * ) );
195
196 static inline sout_stream_id_t *sout_StreamIdAdd( sout_stream_t *s, es_format_t *fmt )
197 {
198     return s->pf_add( s, fmt );
199 }
200 static inline int sout_StreamIdDel( sout_stream_t *s, sout_stream_id_t *id )
201 {
202     return s->pf_del( s, id );
203 }
204 static inline int sout_StreamIdSend( sout_stream_t *s, sout_stream_id_t *id, block_t *b )
205 {
206     return s->pf_send( s, id, b );
207 }
208
209 /****************************************************************************
210  * Announce handler mess
211  ****************************************************************************/
212 struct sap_session_t;
213
214 struct session_descriptor_t
215 {
216     char *psz_name;
217     char *psz_uri;
218     int i_port;
219     int i_ttl;
220     int i_payload;   /* SAP Payload type */
221
222     char *psz_group;
223
224     sap_session_t *p_sap; /* If we have a sap session, remember it */
225     char *psz_sdp;
226     vlc_bool_t b_rtp;
227 };
228
229 #define METHOD_TYPE_SAP 1
230
231 struct announce_method_t
232 {
233     int i_type;
234 };
235
236 VLC_EXPORT( int,                sout_AnnounceRegister, (sout_instance_t *,session_descriptor_t*, announce_method_t* ) );
237 VLC_EXPORT(session_descriptor_t*,sout_AnnounceRegisterSDP, (sout_instance_t *,const char *, const char *, announce_method_t* ) );
238 VLC_EXPORT( int,                sout_AnnounceUnRegister, (sout_instance_t *,session_descriptor_t* ) );
239
240 VLC_EXPORT(session_descriptor_t*,sout_AnnounceSessionCreate, (void) );
241 VLC_EXPORT(void,                 sout_AnnounceSessionDestroy, (session_descriptor_t *) );
242 VLC_EXPORT(announce_method_t*,   sout_AnnounceMethodCreate, (int) );
243
244 #ifdef __cplusplus
245 }
246 #endif
247
248 #endif