]> git.sesse.net Git - vlc/blob - modules/stream_out/standard.c
09fa0448e72ddb0dc804075d13754adb3204227d
[vlc] / modules / stream_out / standard.c
1 /*****************************************************************************
2  * standard.c: standard stream output module
3  *****************************************************************************
4  * Copyright (C) 2003-2007 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #ifdef WIN32
32 # define _WIN32_WINNT 0x0501
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_sout.h>
38
39 #include <vlc_network.h>
40 #include "vlc_url.h"
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 #define ACCESS_TEXT N_("Output access method")
46 #define ACCESS_LONGTEXT N_( \
47     "Output method to use for the stream." )
48 #define MUX_TEXT N_("Output muxer")
49 #define MUX_LONGTEXT N_( \
50     "Muxer to use for the stream." )
51 #define DEST_TEXT N_("Output destination")
52 #define DEST_LONGTEXT N_( \
53     "Destination (URL) to use for the stream. Overrides path and bind parameters" )
54 #define BIND_TEXT N_("address to bind to (helper setting for dst)")
55 #define BIND_LONGTEXT N_( \
56   "address:port to bind vlc to listening incoming streams "\
57   "helper setting for dst,dst=bind+'/'+path. dst-parameter overrides this" )
58 #define PATH_TEXT N_("filename for stream (helper setting for dst)")
59 #define PATH_LONGTEXT N_( \
60   "Filename for stream "\
61   "helper setting for dst, dst=bind+'/'+path, dst-parameter overrides this" )
62 #define NAME_TEXT N_("Session name")
63 #define NAME_LONGTEXT N_( \
64     "This is the name of the session that will be announced in the SDP " \
65     "(Session Descriptor)." )
66
67 #define GROUP_TEXT N_("Session groupname")
68 #define GROUP_LONGTEXT N_( \
69   "This allows you to specify a group for the session, that will be announced "\
70   "if you choose to use SAP." )
71
72 #define DESC_TEXT N_("Session description")
73 #define DESC_LONGTEXT N_( \
74     "This allows you to give a short description with details about the stream, " \
75     "that will be announced in the SDP (Session Descriptor)." )
76 #define URL_TEXT N_("Session URL")
77 #define URL_LONGTEXT N_( \
78     "This allows you to give an URL with more details about the stream " \
79     "(often the website of the streaming organization), that will " \
80     "be announced in the SDP (Session Descriptor)." )
81 #define EMAIL_TEXT N_("Session email")
82 #define EMAIL_LONGTEXT N_( \
83     "This allows you to give a contact mail address for the stream, that will " \
84     "be announced in the SDP (Session Descriptor)." )
85 #define PHONE_TEXT N_("Session phone number")
86 #define PHONE_LONGTEXT N_( \
87     "This allows you to give a contact telephone number for the stream, that will " \
88     "be announced in the SDP (Session Descriptor)." )
89
90
91 #define SAP_TEXT N_("SAP announcing")
92 #define SAP_LONGTEXT N_("Announce this session with SAP.")
93
94 static int      Open    ( vlc_object_t * );
95 static void     Close   ( vlc_object_t * );
96
97 #define SOUT_CFG_PREFIX "sout-standard-"
98
99 vlc_module_begin();
100     set_shortname( N_("Standard"));
101     set_description( N_("Standard stream output") );
102     set_capability( "sout stream", 50 );
103     add_shortcut( "standard" );
104     add_shortcut( "std" );
105     set_category( CAT_SOUT );
106     set_subcategory( SUBCAT_SOUT_STREAM );
107
108     add_string( SOUT_CFG_PREFIX "access", "", NULL, ACCESS_TEXT,
109                 ACCESS_LONGTEXT, false );
110     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
111                 MUX_LONGTEXT, false );
112     add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT,
113                 DEST_LONGTEXT, false );
114     add_string( SOUT_CFG_PREFIX "bind", "", NULL, BIND_TEXT,
115                 BIND_LONGTEXT, false );
116     add_string( SOUT_CFG_PREFIX "path", "", NULL, PATH_TEXT,
117                 PATH_LONGTEXT, false );
118         change_unsafe();
119
120     add_bool( SOUT_CFG_PREFIX "sap", false, NULL, SAP_TEXT, SAP_LONGTEXT,
121               true );
122     add_string( SOUT_CFG_PREFIX "name", "", NULL, NAME_TEXT, NAME_LONGTEXT,
123                                         true );
124     add_string( SOUT_CFG_PREFIX "group", "", NULL, GROUP_TEXT, GROUP_LONGTEXT,
125                                         true );
126     add_string( SOUT_CFG_PREFIX "description", "", NULL, DESC_TEXT, DESC_LONGTEXT,
127                                         true );
128     add_string( SOUT_CFG_PREFIX "url", "", NULL, URL_TEXT, URL_LONGTEXT,
129                                         true );
130     add_string( SOUT_CFG_PREFIX "email", "", NULL, EMAIL_TEXT, EMAIL_LONGTEXT,
131                                         true );
132     add_string( SOUT_CFG_PREFIX "phone", "", NULL, PHONE_TEXT, PHONE_LONGTEXT,
133                                         true );
134     add_obsolete_bool( SOUT_CFG_PREFIX "sap-ipv6" );
135
136     set_callbacks( Open, Close );
137 vlc_module_end();
138
139
140 /*****************************************************************************
141  * Exported prototypes
142  *****************************************************************************/
143 static const char *const ppsz_sout_options[] = {
144     "access", "mux", "url", "dst",
145     "sap", "name", "group", "description", "url", "email", "phone",
146     "bind", "path", NULL
147 };
148
149 #define DEFAULT_PORT 1234
150
151 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
152 static int               Del ( sout_stream_t *, sout_stream_id_t * );
153 static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
154
155 struct sout_stream_sys_t
156 {
157     sout_mux_t           *p_mux;
158     session_descriptor_t *p_session;
159 };
160
161 /*****************************************************************************
162  * Open:
163  *****************************************************************************/
164 static int Open( vlc_object_t *p_this )
165 {
166     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
167     sout_instance_t     *p_sout = p_stream->p_sout;
168     sout_stream_sys_t   *p_sys;
169
170     char *psz_mux;
171     char *psz_access;
172     char *psz_url=NULL;
173     char *psz_bind;
174     char *psz_path;
175
176     vlc_value_t val;
177
178     sout_access_out_t   *p_access;
179     sout_mux_t          *p_mux;
180
181     const char          *psz_mux_byext = NULL;
182
183     config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
184                    p_stream->p_cfg );
185
186     var_Get( p_stream, SOUT_CFG_PREFIX "access", &val );
187     psz_access = *val.psz_string ? val.psz_string : NULL;
188     if( !*val.psz_string ) free( val.psz_string );
189
190     var_Get( p_stream, SOUT_CFG_PREFIX "mux", &val );
191     psz_mux = *val.psz_string ? val.psz_string : NULL;
192     if( !*val.psz_string ) free( val.psz_string );
193
194     var_Get( p_stream, SOUT_CFG_PREFIX "bind", &val );
195     psz_bind = *val.psz_string ? val.psz_string : NULL;
196     if( !*val.psz_string ) free( val.psz_string);
197
198     var_Get( p_stream, SOUT_CFG_PREFIX "path", &val );
199     psz_path = *val.psz_string ? val.psz_string : NULL;
200     if( !*val.psz_string ) free( val.psz_string);
201
202     if( psz_bind ) psz_url = psz_bind;
203     if( psz_url && psz_path ) 
204     {
205         if( asprintf( &psz_url,"%s/%s",psz_url,psz_path ) == -1 )
206             psz_url = NULL;
207         free( psz_path );
208     }
209
210     var_Get( p_stream, SOUT_CFG_PREFIX "dst", &val );
211     if( *val.psz_string ) 
212     {
213         free( psz_url);
214         psz_url = val.psz_string;
215     }
216     else
217         free( val.psz_string );
218
219     p_sys = p_stream->p_sys = malloc( sizeof( sout_stream_sys_t) );
220     if( !p_sys ) return VLC_ENOMEM;
221     p_stream->p_sys->p_session = NULL;
222
223     msg_Dbg( p_this, "creating `%s/%s://%s'", psz_access, psz_mux, psz_url );
224
225     /* ext -> muxer name */
226     if( psz_url && strrchr( psz_url, '.' ) )
227     {
228         /* by extension */
229         static struct { const char ext[6]; const char mux[32]; } exttomux[] =
230         {
231             { "avi", "avi" },
232             { "ogg", "ogg" },
233             { "ogm", "ogg" },
234             { "mp4", "mp4" },
235             { "mov", "mov" },
236             { "moov","mov" },
237             { "asf", "asf" },
238             { "wma", "asf" },
239             { "wmv", "asf" },
240             { "trp", "ts" },
241             { "ts",  "ts" },
242             { "mpg", "ps" },
243             { "mpeg","ps" },
244             { "ps",  "ps" },
245             { "mpeg1","mpeg1" },
246             { "wav", "wav" },
247             { "flv", "ffmpeg{mux=flv}" },
248             { "mkv", "ffmpeg{mux=matroska}"},
249             { "",    "" }
250         };
251         const char *psz_ext = strrchr( psz_url, '.' ) + 1;
252         int  i;
253
254         msg_Dbg( p_this, "extension is %s", psz_ext );
255         for( i = 0; exttomux[i].ext[0]; i++ )
256         {
257             if( !strcasecmp( psz_ext, exttomux[i].ext ) )
258             {
259                 psz_mux_byext = exttomux[i].mux;
260                 break;
261             }
262         }
263         msg_Dbg( p_this, "extension -> mux=%s", psz_mux_byext );
264     }
265
266     /* We fix access/mux to valid couple */
267
268     if( !psz_access && !psz_mux )
269     {
270         if( psz_mux_byext )
271         {
272             msg_Warn( p_stream,
273                       "no access _and_ no muxer, extension gives file/%s",
274                       psz_mux_byext );
275             psz_access = strdup("file");
276             psz_mux    = strdup(psz_mux_byext);
277         }
278         else
279         {
280             msg_Err( p_stream, "no access _and_ no muxer (fatal error)" );
281             return VLC_EGENERIC;
282         }
283     }
284
285     if( psz_access && !psz_mux )
286     {
287         /* access given, no mux */
288         if( !strncmp( psz_access, "mmsh", 4 ) )
289         {
290             psz_mux = strdup("asfh");
291         }
292         else if (!strcmp (psz_access, "udp"))
293         {
294             psz_mux = strdup("ts");
295         }
296         else if( psz_mux_byext )
297         {
298             psz_mux = strdup(psz_mux_byext);
299         }
300         else
301         {
302             msg_Err( p_stream, "no mux specified or found by extension" );
303             return VLC_EGENERIC;
304         }
305     }
306     else if( psz_mux && !psz_access )
307     {
308         /* mux given, no access */
309         if( !strncmp( psz_mux, "asfh", 4 ) )
310         {
311             psz_access = strdup("mmsh");
312         }
313         else
314         {
315             /* default file */
316             psz_access = strdup("file");
317         }
318     }
319
320     /* fix or warn of incompatible couple */
321     if( !strncmp( psz_access, "mmsh", 4 ) &&
322         strncmp( psz_mux, "asfh", 4 ) )
323     {
324         char *p = strchr( psz_mux,'{' );
325
326         msg_Warn( p_stream, "fixing to mmsh/asfh" );
327         if( p )
328         {
329             if( asprintf( &p, "asfh%s", p ) == -1 )
330                 p = NULL;
331             free( psz_mux );
332             psz_mux = p;
333         }
334         else
335         {
336             free( psz_mux );
337             psz_mux = strdup("asfh");
338         }
339     }
340     else if( !strncmp( psz_access, "udp", 3 ) )
341     {
342         if( !strncmp( psz_mux, "ffmpeg", 6 ) )
343         {   /* why would you use ffmpeg's ts muxer ? YOU DON'T LOVE VLC ??? */
344             char *psz_ffmpeg_mux = var_CreateGetString( p_this, "ffmpeg-mux" );
345             if( !psz_ffmpeg_mux || strncmp( psz_ffmpeg_mux, "mpegts", 6 ) )
346                 msg_Err( p_stream, "UDP is only valid with TS" );
347             free( psz_ffmpeg_mux );
348         }
349         else if( strncmp( psz_mux, "ts", 2 ) )
350         {
351             msg_Err( p_stream, "UDP is only valid with TS" );
352         }
353     }
354     else if( strncmp( psz_access, "file", 4 ) &&
355              ( !strncmp( psz_mux, "mov", 3 ) ||
356                !strncmp( psz_mux, "mp4", 3 ) ) )
357     {
358         msg_Err( p_stream, "mov and mp4 work only with file output" );
359     }
360
361     msg_Dbg( p_this, "using `%s/%s://%s'", psz_access, psz_mux, psz_url );
362
363     /* *** find and open appropriate access module *** */
364     p_access = sout_AccessOutNew( p_sout, psz_access, psz_url );
365     if( p_access == NULL )
366     {
367         msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'",
368                  psz_access, psz_mux, psz_url );
369         free( psz_access );
370         free( psz_mux );
371         return VLC_EGENERIC;
372     }
373     msg_Dbg( p_stream, "access opened" );
374
375     /* *** find and open appropriate mux module *** */
376     p_mux = sout_MuxNew( p_sout, psz_mux, p_access );
377     if( p_mux == NULL )
378     {
379         msg_Err( p_stream, "no suitable sout mux module for `%s/%s://%s'",
380                  psz_access, psz_mux, psz_url );
381
382         sout_AccessOutDelete( p_access );
383         free( psz_access );
384         free( psz_mux );
385         return VLC_EGENERIC;
386     }
387     msg_Dbg( p_stream, "mux opened" );
388
389     /* *** Create the SAP Session structure *** */
390     if( var_GetBool( p_stream, SOUT_CFG_PREFIX"sap" ) )
391     {
392         /* Create the SDP */
393         static const struct addrinfo hints = {
394             .ai_family = AF_UNSPEC,
395             .ai_socktype = SOCK_DGRAM,
396             .ai_protocol = 0,
397             .ai_flags = AI_NUMERICHOST | AI_NUMERICSERV
398         };
399         char *shost = var_GetNonEmptyString (p_access, "src-addr");
400         char *dhost = var_GetNonEmptyString (p_access, "dst-addr");
401         int sport = var_GetInteger (p_access, "src-port");
402         int dport = var_GetInteger (p_access, "dst-port");
403         char port[6];
404         struct sockaddr_storage src, dst;
405         socklen_t srclen = 0, dstlen = 0;
406         struct addrinfo *res;
407
408         snprintf (port, sizeof (port), "%d", dport);
409         if (getaddrinfo (dhost, port, &hints, &res) == 0)
410         {
411             memcpy (&dst, res->ai_addr, dstlen = res->ai_addrlen);
412             freeaddrinfo (res);
413         }
414
415         snprintf (port, sizeof (port), "%d", sport);
416         if (getaddrinfo (shost, port, &hints, &res) == 0)
417         {
418             memcpy (&src, res->ai_addr, srclen = res->ai_addrlen);
419             freeaddrinfo (res);
420         }
421
422         char *head = vlc_sdp_Start (VLC_OBJECT (p_stream), SOUT_CFG_PREFIX,
423                                     (struct sockaddr *)&src, srclen,
424                                     (struct sockaddr *)&dst, dstlen);
425         free (shost);
426
427         char *psz_sdp = NULL;
428         if (head != NULL)
429         {
430             if (asprintf (&psz_sdp, "%s"
431                           "m=video %d udp mpeg\r\n", head, dport) == -1)
432                 psz_sdp = NULL;
433             free (head);
434         }
435
436         /* Register the SDP with the SAP thread */
437         if (psz_sdp != NULL)
438         {
439             announce_method_t *p_method = sout_SAPMethod ();
440             msg_Dbg (p_stream, "Generated SDP:\n%s", psz_sdp);
441
442             p_sys->p_session =
443                 sout_AnnounceRegisterSDP (p_sout, psz_sdp, dhost, p_method);
444             sout_MethodRelease (p_method);
445             free( psz_sdp );
446         }
447         free (dhost);
448     }
449
450     p_stream->pf_add    = Add;
451     p_stream->pf_del    = Del;
452     p_stream->pf_send   = Send;
453
454     p_sys->p_mux = p_mux;
455
456     free( psz_access );
457     free( psz_mux );
458     free( psz_url );
459
460     return VLC_SUCCESS;
461 }
462
463 /*****************************************************************************
464  * Close:
465  *****************************************************************************/
466 static void Close( vlc_object_t * p_this )
467 {
468     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
469     sout_stream_sys_t *p_sys    = p_stream->p_sys;
470     sout_access_out_t *p_access = p_sys->p_mux->p_access;
471
472     if( p_sys->p_session != NULL )
473         sout_AnnounceUnRegister( p_stream->p_sout, p_sys->p_session );
474
475     sout_MuxDelete( p_sys->p_mux );
476     sout_AccessOutDelete( p_access );
477
478     free( p_sys );
479 }
480
481 struct sout_stream_id_t
482 {
483     sout_input_t *p_input;
484 };
485
486
487 static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
488 {
489     sout_stream_sys_t *p_sys = p_stream->p_sys;
490     sout_stream_id_t  *id;
491
492     id = malloc( sizeof( sout_stream_id_t ) );
493     if( ( id->p_input = sout_MuxAddStream( p_sys->p_mux, p_fmt ) ) == NULL )
494     {
495         free( id );
496
497         return NULL;
498     }
499
500     return id;
501 }
502
503 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
504 {
505     sout_stream_sys_t *p_sys = p_stream->p_sys;
506
507     sout_MuxDeleteStream( p_sys->p_mux, id->p_input );
508
509     free( id );
510
511     return VLC_SUCCESS;
512 }
513
514 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
515                  block_t *p_buffer )
516 {
517     sout_stream_sys_t *p_sys = p_stream->p_sys;
518
519     sout_MuxSendBuffer( p_sys->p_mux, id->p_input, p_buffer );
520
521     return VLC_SUCCESS;
522 }