standard.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:17k
源码类别:

midi

开发平台:

Unix_Linux

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