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