standard.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:15k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * standard.c: standard stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 VideoLAN
  5.  * $Id: standard.c 9201 2004-11-06 16:51:46Z yoann $
  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.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/sout.h>
  30. #ifdef HAVE_UNISTD_H
  31. #    include <unistd.h>
  32. #endif
  33. #include "announce.h"
  34. #include "network.h"
  35. /*****************************************************************************
  36.  * Module descriptor
  37.  *****************************************************************************/
  38. #define ACCESS_TEXT N_("Output access method")
  39. #define ACCESS_LONGTEXT N_( 
  40.     "Allows you to specify the output access method used for the streaming " 
  41.     "output." )
  42. #define MUX_TEXT N_("Output muxer")
  43. #define MUX_LONGTEXT N_( 
  44.     "Allows you to specify the output muxer method used for the streaming " 
  45.     "output." )
  46. #define URL_TEXT N_("Output URL")
  47. #define URL_LONGTEXT N_( 
  48.     "Allows you to specify the output URL used for the streaming output." )
  49. #define NAME_TEXT N_("Session name")
  50. #define NAME_LONGTEXT N_( 
  51.     "Name of the session that will be announced with SAP or SLP" )
  52. #define GROUP_TEXT N_("Session groupname")
  53. #define GROUP_LONGTEXT N_( 
  54.     "Name of the group that will be announced for the session" )
  55. #define SAP_TEXT N_("SAP announcing")
  56. #define SAP_LONGTEXT N_("Announce this session with SAP")
  57. #define SAPv6_TEXT N_("SAP IPv6 announcing")
  58. #define SAPv6_LONGTEXT N_("Use IPv6 to announce this session with SAP")
  59. #define SLP_TEXT N_("SLP announcing")
  60. #define SLP_LONGTEXT N_("Announce this session with SLP")
  61. static int      Open    ( vlc_object_t * );
  62. static void     Close   ( vlc_object_t * );
  63. #define SOUT_CFG_PREFIX "sout-standard-"
  64. vlc_module_begin();
  65.     set_description( _("Standard stream output") );
  66.     set_capability( "sout stream", 50 );
  67.     add_shortcut( "standard" );
  68.     add_shortcut( "std" );
  69.     add_string( SOUT_CFG_PREFIX "access", "", NULL, ACCESS_TEXT,
  70.                 ACCESS_LONGTEXT, VLC_FALSE );
  71.     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
  72.                 MUX_LONGTEXT, VLC_FALSE );
  73.     add_string( SOUT_CFG_PREFIX "url", "", NULL, URL_TEXT,
  74.                 URL_LONGTEXT, VLC_FALSE );
  75.     add_bool( SOUT_CFG_PREFIX "sap", 0, NULL, SAP_TEXT, SAP_LONGTEXT, VLC_TRUE );
  76.     add_string( SOUT_CFG_PREFIX "name", "", NULL, NAME_TEXT, NAME_LONGTEXT,
  77.                                         VLC_TRUE );
  78.     add_string( SOUT_CFG_PREFIX "group", "", NULL, GROUP_TEXT, GROUP_LONGTEXT,
  79.                                         VLC_TRUE );
  80.     add_bool( SOUT_CFG_PREFIX "sap-ipv6", 0, NULL, SAPv6_TEXT, SAPv6_LONGTEXT,
  81.                                         VLC_TRUE );
  82.     add_bool( SOUT_CFG_PREFIX "slp", 0, NULL, SLP_TEXT, SLP_LONGTEXT, VLC_TRUE );
  83.     set_callbacks( Open, Close );
  84. vlc_module_end();
  85. /*****************************************************************************
  86.  * Exported prototypes
  87.  *****************************************************************************/
  88. static const char *ppsz_sout_options[] = {
  89.     "access", "mux", "url",
  90.     "sap", "name", "sap-ipv6", "group",
  91.     "slp", NULL
  92. };
  93. #define DEFAULT_IPV6_SCOPE '8'
  94. #define DEFAULT_PORT 1234
  95. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  96. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  97. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  98. struct sout_stream_sys_t
  99. {
  100.     sout_mux_t           *p_mux;
  101.     slp_session_t        *p_slp;
  102.     session_descriptor_t *p_session;
  103. };
  104. /*****************************************************************************
  105.  * Open:
  106.  *****************************************************************************/
  107. static int Open( vlc_object_t *p_this )
  108. {
  109.     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
  110.     sout_instance_t     *p_sout = p_stream->p_sout;
  111.     slp_session_t       *p_slp = NULL;
  112.     char *psz_mux;
  113.     char *psz_access;
  114.     char *psz_url;
  115.     vlc_value_t val;
  116.     sout_access_out_t   *p_access;
  117.     sout_mux_t          *p_mux;
  118.     char                *psz_mux_byext = NULL;
  119.     sout_CfgParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
  120.                    p_stream->p_cfg );
  121.     var_Get( p_stream, SOUT_CFG_PREFIX "access", &val );
  122.     psz_access = *val.psz_string ? val.psz_string : NULL;
  123.     if( val.psz_string && !*val.psz_string ) free( val.psz_string );
  124.     var_Get( p_stream, SOUT_CFG_PREFIX "mux", &val );
  125.     psz_mux = *val.psz_string ? val.psz_string : NULL;
  126.     if( val.psz_string && !*val.psz_string ) free( val.psz_string );
  127.     var_Get( p_stream, SOUT_CFG_PREFIX "url", &val );
  128.     psz_url = *val.psz_string ? val.psz_string : NULL;
  129.     if( val.psz_string && !*val.psz_string ) free( val.psz_string );
  130.     p_stream->p_sys = malloc( sizeof( sout_stream_sys_t) );
  131.     p_stream->p_sys->p_session = NULL;
  132.     msg_Dbg( p_this, "creating `%s/%s://%s'", psz_access, psz_mux, psz_url );
  133.     /* ext -> muxer name */
  134.     if( psz_url && strrchr( psz_url, '.' ) )
  135.     {
  136.         /* by extention */
  137.         static struct { char *ext; char *mux; } exttomux[] =
  138.         {
  139.             { "avi", "avi" },
  140.             { "ogg", "ogg" },
  141.             { "ogm", "ogg" },
  142.             { "mp4", "mp4" },
  143.             { "mov", "mov" },
  144.             { "moov","mov" },
  145.             { "asf", "asf" },
  146.             { "wma", "asf" },
  147.             { "wmv", "asf" },
  148.             { "trp", "ts" },
  149.             { "ts",  "ts" },
  150.             { "mpg", "ps" },
  151.             { "mpeg","ps" },
  152.             { "ps",  "ps" },
  153.             { "mpeg1","mpeg1" },
  154.             { NULL,  NULL }
  155.         };
  156.         char *psz_ext = strrchr( psz_url, '.' ) + 1;
  157.         int  i;
  158.         msg_Dbg( p_this, "extention is %s", psz_ext );
  159.         for( i = 0; exttomux[i].ext != NULL; i++ )
  160.         {
  161.             if( !strcasecmp( psz_ext, exttomux[i].ext ) )
  162.             {
  163.                 psz_mux_byext = exttomux[i].mux;
  164.                 break;
  165.             }
  166.         }
  167.         msg_Dbg( p_this, "extention -> mux=%s", psz_mux_byext );
  168.     }
  169.     /* We fix access/mux to valid couple */
  170.     if( !psz_access && !psz_mux )
  171.     {
  172.         if( psz_mux_byext )
  173.         {
  174.             msg_Warn( p_stream,
  175.                       "no access _and_ no muxer, extention gives file/%s",
  176.                       psz_mux_byext );
  177.             psz_access = strdup("file");
  178.             psz_mux    = strdup(psz_mux_byext);
  179.         }
  180.         else
  181.         {
  182.             msg_Err( p_stream, "no access _and_ no muxer (fatal error)" );
  183.             return VLC_EGENERIC;
  184.         }
  185.     }
  186.     if( psz_access && !psz_mux )
  187.     {
  188.         /* access given, no mux */
  189.         if( !strncmp( psz_access, "mmsh", 4 ) )
  190.         {
  191.             psz_mux = strdup("asfh");
  192.         }
  193.         else if( !strncmp( psz_access, "udp", 3 ) )
  194.         {
  195.             psz_mux = strdup("ts");
  196.         }
  197.         else if( psz_mux_byext )
  198.         {
  199.             psz_mux = strdup(psz_mux_byext);
  200.         }
  201.         else
  202.         {
  203.             msg_Err( p_stream, "no mux specified or found by extention" );
  204.             return VLC_EGENERIC;
  205.         }
  206.     }
  207.     else if( psz_mux && !psz_access )
  208.     {
  209.         /* mux given, no access */
  210.         if( !strncmp( psz_mux, "asfh", 4 ) )
  211.         {
  212.             psz_access = strdup("mmsh");
  213.         }
  214.         else
  215.         {
  216.             /* default file */
  217.             psz_access = strdup("file");
  218.         }
  219.     }
  220.     /* fix or warm of incompatible couple */
  221.     if( psz_mux && psz_access )
  222.     {
  223.         if( !strncmp( psz_access, "mmsh", 4 ) &&
  224.             strncmp( psz_mux, "asfh", 4 ) )
  225.         {
  226.             char *p = strchr( psz_mux,'{' );
  227.             msg_Warn( p_stream, "fixing to mmsh/asfh" );
  228.             if( p )
  229.             {
  230.                 /* -> a little memleak but ... */
  231.                 psz_mux = malloc( strlen( "asfh" ) + strlen( p ) + 1);
  232.                 sprintf( psz_mux, "asfh%s", p );
  233.             }
  234.             else
  235.             {
  236.                 psz_mux = strdup("asfh");
  237.             }
  238.         }
  239.         else if( ( !strncmp( psz_access, "rtp", 3 ) ||
  240.                    !strncmp( psz_access, "udp", 3 ) ) &&
  241.                  strncmp( psz_mux, "ts", 2 ) )
  242.         {
  243.             msg_Err( p_stream, "for now udp and rtp are only valid with TS" );
  244.         }
  245.         else if( strncmp( psz_access, "file", 4 ) &&
  246.                  ( !strncmp( psz_mux, "mov", 3 ) ||
  247.                    !strncmp( psz_mux, "mp4", 3 ) ) )
  248.         {
  249.             msg_Err( p_stream, "mov and mp4 work only with file output" );
  250.         }
  251.     }
  252.     msg_Dbg( p_this, "using `%s/%s://%s'", psz_access, psz_mux, psz_url );
  253.     /* *** find and open appropriate access module *** */
  254.     p_access = sout_AccessOutNew( p_sout, psz_access, psz_url );
  255.     if( p_access == NULL )
  256.     {
  257.         msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'",
  258.                  psz_access, psz_mux, psz_url );
  259.         if( psz_access ) free( psz_access );
  260.         if( psz_mux ) free( psz_mux );
  261.         return VLC_EGENERIC;
  262.     }
  263.     msg_Dbg( p_stream, "access opened" );
  264.     /* *** find and open appropriate mux module *** */
  265.     p_mux = sout_MuxNew( p_sout, psz_mux, p_access );
  266.     if( p_mux == NULL )
  267.     {
  268.         msg_Err( p_stream, "no suitable sout mux module for `%s/%s://%s'",
  269.                  psz_access, psz_mux, psz_url );
  270.         sout_AccessOutDelete( p_access );
  271.         if( psz_access ) free( psz_access );
  272.         if( psz_mux ) free( psz_mux );
  273.         return VLC_EGENERIC;
  274.     }
  275.     msg_Dbg( p_stream, "mux opened" );
  276.     /*  *** Create the SAP Session structure *** */
  277.     var_Get( p_stream, SOUT_CFG_PREFIX "sap", &val );
  278.     if( val.b_bool &&
  279.         ( strstr( psz_access, "udp" ) || strstr( psz_access , "rtp" ) ) )
  280.     {
  281.         session_descriptor_t *p_session = sout_AnnounceSessionCreate();
  282.         announce_method_t *p_method =
  283.             sout_AnnounceMethodCreate( METHOD_TYPE_SAP );
  284.         vlc_url_t url;
  285.         var_Get( p_stream, SOUT_CFG_PREFIX "name", &val );
  286.         if( *val.psz_string )
  287.         {
  288.             p_session->psz_name = strdup( val.psz_string );
  289.         }
  290.         else
  291.         {
  292.             p_session->psz_name = strdup( psz_url );
  293.         }
  294.         free( val.psz_string );
  295.         var_Get( p_stream, SOUT_CFG_PREFIX "group", &val );
  296.         if( *val.psz_string )
  297.         {
  298.             p_session->psz_group = strdup( val.psz_string );
  299.         }
  300.         free( val.psz_string );
  301.         var_Get( p_stream, SOUT_CFG_PREFIX "sap-ipv6", &val );
  302.         p_method->i_ip_version = val.b_bool ? 6 : 4;
  303.         /* Now, parse the URL to extract host and port */
  304.         vlc_UrlParse( &url, psz_url , 0);
  305.         if( url.psz_host )
  306.         {
  307.             if( url.i_port == 0 ) url.i_port = DEFAULT_PORT;
  308.             p_session->psz_uri = url.psz_host;
  309.             p_session->i_port = url.i_port;
  310.             p_session->psz_sdp = NULL;
  311.             p_session->i_ttl = config_GetInt( p_sout, "ttl" );
  312.             p_session->i_payload = 33;
  313.             msg_Info( p_this, "SAP Enabled");
  314.             sout_AnnounceRegister( p_sout, p_session, p_method );
  315.             /* FIXME: Free p_method */
  316.             p_stream->p_sys->p_session = p_session;
  317.         }
  318.         vlc_UrlClean( &url );
  319.         if( p_method->psz_address) free( p_method->psz_address );
  320.         free( p_method );
  321.     }
  322.     /* *** Register with slp *** */
  323. #ifdef HAVE_SLP_H
  324.     var_Get( p_stream, SOUT_CFG_PREFIX "slp", &val );
  325.     if( val.b_bool &&
  326.         ( strstr( psz_access, "udp" ) || strstr( psz_access ,  "rtp" ) ) )
  327.     {
  328.         int i_ret;
  329.         msg_Info( p_this, "SLP Enabled");
  330.         var_Get( p_stream, SOUT_CFG_PREFIX "name", &val );
  331.         if( *val.psz_string )
  332.         {
  333.             i_ret = sout_SLPReg( p_sout, psz_url, val.psz_string );
  334.         }
  335.         else
  336.         {
  337.             i_ret = sout_SLPReg( p_sout, psz_url, psz_url );
  338.         }
  339.         if( i_ret )
  340.         {
  341.            msg_Warn( p_sout, "SLP Registering failed");
  342.         }
  343.         else
  344.         {
  345.             p_slp = malloc(sizeof(slp_session_t));
  346.             p_slp->psz_url = strdup( psz_url );
  347.             p_slp->psz_name =
  348.                 strdup( *val.psz_string ? val.psz_string : psz_url );
  349.         }
  350.         free( val.psz_string );
  351.     }
  352. #endif
  353.     p_stream->pf_add    = Add;
  354.     p_stream->pf_del    = Del;
  355.     p_stream->pf_send   = Send;
  356.     p_stream->p_sys->p_mux = p_mux;
  357.     p_stream->p_sys->p_slp = p_slp;
  358.     if( psz_access ) free( psz_access );
  359.     if( psz_mux ) free( psz_mux );
  360.     if( psz_url ) free( psz_url );
  361.     return VLC_SUCCESS;
  362. }
  363. /*****************************************************************************
  364.  * Close:
  365.  *****************************************************************************/
  366. static void Close( vlc_object_t * p_this )
  367. {
  368.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  369.     sout_stream_sys_t *p_sys    = p_stream->p_sys;
  370.     sout_access_out_t *p_access = p_sys->p_mux->p_access;
  371.     if( p_sys->p_session != NULL )
  372.     {
  373.         sout_AnnounceUnRegister( p_stream->p_sout, p_sys->p_session );
  374.         sout_AnnounceSessionDestroy( p_sys->p_session );
  375.     }
  376. #ifdef HAVE_SLP_H
  377.     if( p_sys->p_slp )
  378.     {
  379.             sout_SLPDereg( (sout_instance_t *)p_this,
  380.                         p_sys->p_slp->psz_url,
  381.                         p_sys->p_slp->psz_name);
  382.             free( p_sys->p_slp);
  383.     }
  384. #endif
  385.     sout_MuxDelete( p_sys->p_mux );
  386.     sout_AccessOutDelete( p_access );
  387.     free( p_sys );
  388. }
  389. struct sout_stream_id_t
  390. {
  391.     sout_input_t *p_input;
  392. };
  393. static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  394. {
  395.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  396.     sout_stream_id_t  *id;
  397.     id = malloc( sizeof( sout_stream_id_t ) );
  398.     if( ( id->p_input = sout_MuxAddStream( p_sys->p_mux, p_fmt ) ) == NULL )
  399.     {
  400.         free( id );
  401.         return NULL;
  402.     }
  403.     return id;
  404. }
  405. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  406. {
  407.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  408.     sout_MuxDeleteStream( p_sys->p_mux, id->p_input );
  409.     free( id );
  410.     return VLC_SUCCESS;
  411. }
  412. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  413.                  block_t *p_buffer )
  414. {
  415.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  416.     sout_MuxSendBuffer( p_sys->p_mux, id->p_input, p_buffer );
  417.     return VLC_SUCCESS;
  418. }