]> git.sesse.net Git - vlc/blob - modules/stream_out/standard.c
* modules/stream_out/transcode.c: bail out if we can't find an audio encoder.
[vlc] / modules / stream_out / standard.c
1 /*****************************************************************************
2  * standard.c
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id: standard.c,v 1.15 2003/09/13 17:44:13 fenrir Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28 #include <string.h>
29 #include <unistd.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/sout.h>
33 #include "announce.h"
34
35 #define DEFAULT_IPV6_SCOPE "8"
36
37 /*****************************************************************************
38  * Exported prototypes
39  *****************************************************************************/
40 static int      Open    ( vlc_object_t * );
41 static void     Close   ( vlc_object_t * );
42
43 static sout_stream_id_t *Add ( sout_stream_t *, sout_format_t * );
44 static int               Del ( sout_stream_t *, sout_stream_id_t * );
45 static int               Send( sout_stream_t *, sout_stream_id_t *, sout_buffer_t* );
46
47 /*****************************************************************************
48  * Module descriptor
49  *****************************************************************************/
50 vlc_module_begin();
51     set_description( _("Standard stream") );
52     set_capability( "sout stream", 50 );
53     add_shortcut( "standard" );
54     add_shortcut( "std" );
55     set_callbacks( Open, Close );
56 vlc_module_end();
57
58 struct sout_stream_sys_t
59 {
60     sout_mux_t           *p_mux;
61     slp_session_t        *p_slp;
62     sap_session_t        *p_sap;
63 };
64
65 /*****************************************************************************
66  * Open:
67  *****************************************************************************/
68 static int Open( vlc_object_t *p_this )
69 {
70     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
71     sout_instance_t     *p_sout = p_stream->p_sout;
72     sout_stream_sys_t   *p_sys = malloc( sizeof( sout_stream_sys_t) );
73
74     char *psz_mux      = sout_cfg_find_value( p_stream->p_cfg, "mux" );
75     char *psz_access   = sout_cfg_find_value( p_stream->p_cfg, "access" );
76     char *psz_url      = sout_cfg_find_value( p_stream->p_cfg, "url" );
77     char *psz_ipv      = sout_cfg_find_value( p_stream->p_cfg, "sap_ipv" );
78     char *psz_v6_scope = sout_cfg_find_value( p_stream->p_cfg, "sap_v6scope" );
79
80     sout_cfg_t *p_sap_cfg = sout_cfg_find( p_stream->p_cfg, "sap" );
81 #ifdef HAVE_SLP_H
82     sout_cfg_t *p_slp_cfg = sout_cfg_find( p_stream->p_cfg, "slp" );
83 #endif
84
85     sout_access_out_t   *p_access;
86     sout_mux_t          *p_mux;
87
88     char                *psz_mux_byext = NULL;
89
90     p_sys->p_sap = NULL;
91     p_sys->p_slp = NULL;
92
93     msg_Dbg( p_this, "creating `%s/%s://%s'",
94              psz_access, psz_mux, psz_url );
95
96     /* ext -> muxer name */
97     if( psz_url && strrchr( psz_url, '.' ) )
98     {
99         /* by extention */
100         static struct { char *ext; char *mux; } exttomux[] =
101         {
102             { "avi", "avi" },
103             { "ogg", "ogg" },
104             { "ogm", "ogg" },
105             { "mp4", "mp4" },
106             { "mov", "mov" },
107             { "moov","mov" },
108             { "asf", "asf" },
109             { "wma", "asf" },
110             { "wmv", "asf" },
111             { "trp", "ts" },
112             { "ts",  "ts" },
113             { "mpg", "ps" },
114             { "mpeg","ps" },
115             { "ps",  "ps" },
116             { "mpeg1","mpeg1" },
117             { NULL,  NULL }
118         };
119         char *psz_ext = strrchr( psz_url, '.' ) + 1;
120         int  i;
121
122         msg_Dbg( p_this, "extention is %s", psz_ext );
123         for( i = 0; exttomux[i].ext != NULL; i++ )
124         {
125             if( !strcasecmp( psz_ext, exttomux[i].ext ) )
126             {
127                 psz_mux_byext = exttomux[i].mux;
128                 break;
129             }
130         }
131         msg_Dbg( p_this, "extention -> mux=%s", psz_mux_byext );
132     }
133
134     /* We fix access/mux to valid couple */
135
136     if( ( psz_access == NULL || *psz_access == '\0' )&&
137         ( psz_mux == NULL ||  *psz_mux == '\0' ) )
138     {
139         if( psz_mux_byext )
140         {
141             msg_Warn( p_stream,
142                       "no access _and_ no muxer, extention gives file/%s",
143                       psz_mux_byext );
144             psz_access = "file";
145             psz_mux    = psz_mux_byext;
146         }
147         else
148         {
149             msg_Err( p_stream, "no access _and_ no muxer (fatal error)" );
150             return VLC_EGENERIC;
151         }
152     }
153
154     if( psz_access && *psz_access &&
155         ( psz_mux == NULL || *psz_mux == '\0' ) )
156     {
157         /* access given, no mux */
158         if( !strncmp( psz_access, "mmsh", 4 ) )
159         {
160             psz_mux = "asfh";
161         }
162         else if( !strncmp( psz_access, "udp", 3 ) )
163         {
164             psz_mux = "ts";
165         }
166         else
167         {
168             psz_mux = psz_mux_byext;
169         }
170     }
171     else if( psz_mux && *psz_mux &&
172              ( psz_access == NULL || *psz_access == '\0' ) )
173     {
174         /* mux given, no access */
175         if( !strncmp( psz_mux, "asfh", 4 ) )
176         {
177             psz_access = "mmsh";
178         }
179         else
180         {
181             /* default file */
182             psz_access = "file";
183         }
184     }
185
186     /* fix or warm of incompatible couple */
187     if( psz_mux && *psz_mux && psz_access && *psz_access )
188     {
189         if( !strncmp( psz_access, "mmsh", 4 ) && strncmp( psz_mux, "asfh", 4 ) )
190         {
191             char *p = strchr( psz_mux,'{' );
192
193             msg_Warn( p_stream, "fixing to mmsh/asfh" );
194             if( p )
195             {
196                 /* -> a little memleak but ... */
197                 psz_mux = malloc( strlen( "asfh" ) + strlen( p ) + 1);
198                 sprintf( psz_mux, "asfh%s", p );
199             }
200             else
201             {
202                 psz_mux = "asfh";
203             }
204         }
205         else if( ( !strncmp( psz_access, "rtp", 3 ) ||
206                    !strncmp( psz_access, "udp", 3 ) ) &&
207                  strncmp( psz_mux, "ts", 2 ) )
208         {
209             msg_Err( p_stream, "for now udp and rtp are only valid with TS" );
210         }
211         else if( strncmp( psz_access, "file", 4 ) &&
212                  ( !strncmp( psz_mux, "mov", 3 ) ||
213                    !strncmp( psz_mux, "mp4", 3 ) ) )
214         {
215             msg_Err( p_stream, "mov and mp4 work only with file output" );
216         }
217     }
218
219     msg_Dbg( p_this, "using `%s/%s://%s'", psz_access, psz_mux, psz_url );
220
221     /* *** find and open appropriate access module *** */
222     p_access = sout_AccessOutNew( p_sout, psz_access, psz_url );
223     if( p_access == NULL )
224     {
225         msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'",
226                  psz_access, psz_mux, psz_url );
227         return( VLC_EGENERIC );
228     }
229     msg_Dbg( p_stream, "access opened" );
230
231     /* *** find and open appropriate mux module *** */
232     p_mux = sout_MuxNew( p_sout, psz_mux, p_access );
233     if( p_mux == NULL )
234     {
235         msg_Err( p_stream, "no suitable sout mux module for `%s/%s://%s'",
236                  psz_access, psz_mux, psz_url );
237
238         sout_AccessOutDelete( p_access );
239         return( VLC_EGENERIC );
240     }
241     msg_Dbg( p_stream, "mux opened" );
242
243     /*  *** Create the SAP Session structure *** */
244     if( psz_access &&
245         p_sap_cfg &&
246         ( strstr( psz_access, "udp" ) || strstr( psz_access ,  "rtp" ) ) )
247     {
248         msg_Info( p_this, "SAP Enabled");
249
250         if( psz_ipv == NULL )
251         {
252             psz_ipv = "4";
253         }
254         if( psz_v6_scope == NULL )
255         {
256             psz_v6_scope = DEFAULT_IPV6_SCOPE;
257         }
258         msg_Dbg( p_sout , "Creating SAP with IPv%i", atoi(psz_ipv) );
259
260         p_sys->p_sap = sout_SAPNew( p_sout , psz_url ,
261             p_sap_cfg->psz_value ? p_sap_cfg->psz_value : psz_url,
262             atoi(psz_ipv), psz_v6_scope );
263
264         if( !p_sys->p_sap )
265             msg_Err( p_sout,"Unable to initialize SAP. SAP disabled");
266     }
267
268     /* *** Register with slp *** */
269 #ifdef HAVE_SLP_H
270     if( p_slp_cfg && ( strstr( psz_access, "udp" ) ||
271                        strstr( psz_access ,  "rtp" ) ) )
272     {
273         msg_Info( p_this, "SLP Enabled");
274         if( sout_SLPReg( p_sout, psz_url,
275             p_slp_cfg->psz_value ? p_slp_cfg->psz_value : psz_url) )
276         {
277            msg_Warn( p_sout, "SLP Registering failed");
278         }
279         else
280         {
281             p_sys->p_slp = (slp_session_t*)malloc(sizeof(slp_session_t));
282             if(!p_sys->p_slp)
283             {
284                 msg_Warn(p_sout,"Out of memory");
285                 return -1;
286             }
287             p_sys->p_slp->psz_url= strdup(psz_url);
288             p_sys->p_slp->psz_name = strdup(
289                     p_slp_cfg->psz_value ? p_slp_cfg->psz_value : psz_url);
290         }
291     }
292 #endif
293
294     /* XXX beurk */
295     p_sout->i_preheader = __MAX( p_sout->i_preheader, p_mux->i_preheader );
296
297
298     p_sys->p_mux = p_mux;
299
300     p_stream->pf_add    = Add;
301     p_stream->pf_del    = Del;
302     p_stream->pf_send   = Send;
303
304     p_stream->p_sys     = p_sys;
305     return VLC_SUCCESS;
306 }
307
308 /*****************************************************************************
309  * Close:
310  *****************************************************************************/
311
312 static void Close( vlc_object_t * p_this )
313 {
314     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
315     sout_stream_sys_t *p_sys    = p_stream->p_sys;
316     sout_access_out_t *p_access = p_sys->p_mux->p_access;
317
318     if( p_sys->p_sap )
319         sout_SAPDelete( (sout_instance_t *)p_this , p_sys->p_sap );
320
321 #ifdef HAVE_SLP_H
322     if( p_sys->p_slp )
323     {
324             sout_SLPDereg( (sout_instance_t *)p_this,
325                         p_sys->p_slp->psz_url,
326                         p_sys->p_slp->psz_name);
327             free( p_sys->p_slp);
328     }
329 #endif
330
331
332     sout_MuxDelete( p_sys->p_mux );
333     sout_AccessOutDelete( p_access );
334
335     free( p_sys );
336 }
337
338 struct sout_stream_id_t
339 {
340     sout_input_t *p_input;
341 };
342
343
344 static sout_stream_id_t * Add( sout_stream_t *p_stream, sout_format_t *p_fmt )
345 {
346     sout_stream_sys_t *p_sys = p_stream->p_sys;
347     sout_stream_id_t  *id;
348
349     id = malloc( sizeof( sout_stream_id_t ) );
350     if( ( id->p_input = sout_MuxAddStream( p_sys->p_mux, p_fmt ) ) == NULL )
351     {
352         free( id );
353
354         return NULL;
355     }
356
357     return id;
358 }
359
360 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
361 {
362     sout_stream_sys_t *p_sys = p_stream->p_sys;
363
364     sout_MuxDeleteStream( p_sys->p_mux, id->p_input );
365
366     free( id );
367
368     return VLC_SUCCESS;
369 }
370
371 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
372                  sout_buffer_t *p_buffer )
373 {
374     sout_stream_sys_t *p_sys = p_stream->p_sys;
375     sout_instance_t   *p_sout = p_stream->p_sout;
376
377     sout_MuxSendBuffer( p_sys->p_mux, id->p_input, p_buffer );
378
379     if( p_sys->p_sap )
380        sout_SAPSend( p_sout , p_sys->p_sap );
381
382     return VLC_SUCCESS;
383 }