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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * es.c: Elementary stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 VideoLAN
  5.  * $Id: es.c 8162 2004-07-10 17:20:59Z fenrir $
  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/input.h>
  30. #include <vlc/sout.h>
  31. /*****************************************************************************
  32.  * Module descriptor
  33.  *****************************************************************************/
  34. #define ACCESS_TEXT N_("Output access method")
  35. #define ACCESS_LONGTEXT N_( 
  36.     "Allows you to specify the output access method used for the streaming " 
  37.     "output." )
  38. #define ACCESSA_TEXT N_("Audio output access method")
  39. #define ACCESSA_LONGTEXT N_( 
  40.     "Allows you to specify the output access method used for the audio " 
  41.     "streaming output." )
  42. #define ACCESSV_TEXT N_("Video output access method")
  43. #define ACCESSV_LONGTEXT N_( 
  44.     "Allows you to specify the output access method used for the video " 
  45.     "streaming output." )
  46. #define MUX_TEXT N_("Output muxer")
  47. #define MUX_LONGTEXT N_( 
  48.     "Allows you to specify the muxer used for the streaming output." )
  49. #define MUXA_TEXT N_("Audio output muxer")
  50. #define MUXA_LONGTEXT N_( 
  51.     "Allows you to specify the muxer used for the audio streaming output." )
  52. #define MUXV_TEXT N_("Video output muxer")
  53. #define MUXV_LONGTEXT N_( 
  54.     "Allows you to specify the muxer used for the video streaming output." )
  55. #define DEST_TEXT N_("Output URL")
  56. #define DEST_LONGTEXT N_( 
  57.     "Allows you to specify the output URL used for the streaming output." )
  58. #define DESTA_TEXT N_("Audio output URL")
  59. #define DESTA_LONGTEXT N_( 
  60.     "Allows you to specify the output URL used for the audio streaming " 
  61.     "output." )
  62. #define DESTV_TEXT N_("Video output URL")
  63. #define DESTV_LONGTEXT N_( 
  64.     "Allows you to specify the output URL used for the video streaming " 
  65.     "output." )
  66. static int      Open    ( vlc_object_t * );
  67. static void     Close   ( vlc_object_t * );
  68. #define SOUT_CFG_PREFIX "sout-es-"
  69. vlc_module_begin();
  70.     set_description( _("Elementary stream output") );
  71.     set_capability( "sout stream", 50 );
  72.     add_shortcut( "es" );
  73.     add_string( SOUT_CFG_PREFIX "access", "", NULL, ACCESS_TEXT,
  74.                 ACCESS_LONGTEXT, VLC_TRUE );
  75.     add_string( SOUT_CFG_PREFIX "access-audio", "", NULL, ACCESSA_TEXT,
  76.                 ACCESSA_LONGTEXT, VLC_TRUE );
  77.     add_string( SOUT_CFG_PREFIX "access-video", "", NULL, ACCESSV_TEXT,
  78.                 ACCESSV_LONGTEXT, VLC_TRUE );
  79.     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
  80.                 MUX_LONGTEXT, VLC_TRUE );
  81.     add_string( SOUT_CFG_PREFIX "mux-audio", "", NULL, MUXA_TEXT,
  82.                 MUXA_LONGTEXT, VLC_TRUE );
  83.     add_string( SOUT_CFG_PREFIX "mux-video", "", NULL, MUXV_TEXT,
  84.                 MUXV_LONGTEXT, VLC_TRUE );
  85.     add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT,
  86.                 DEST_LONGTEXT, VLC_TRUE );
  87.     add_string( SOUT_CFG_PREFIX "dst-audio", "", NULL, DESTA_TEXT,
  88.                 DESTA_LONGTEXT, VLC_TRUE );
  89.     add_string( SOUT_CFG_PREFIX "dst-video", "", NULL, DESTV_TEXT,
  90.                 DESTV_LONGTEXT, VLC_TRUE );
  91.     set_callbacks( Open, Close );
  92. vlc_module_end();
  93. #define FREE( p ) if( p ) { free( p ); (p) = NULL; }
  94. /*****************************************************************************
  95.  * Exported prototypes
  96.  *****************************************************************************/
  97. static const char *ppsz_sout_options[] = {
  98.     "access", "access-audio", "access-video",
  99.     "mux", "mux-audio", "mux-video",
  100.     "dst", "dst-audio", "dst-video",
  101.     NULL
  102. };
  103. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  104. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  105. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  106. struct sout_stream_sys_t
  107. {
  108.     int  i_count_audio;
  109.     int  i_count_video;
  110.     int  i_count;
  111.     char *psz_mux;
  112.     char *psz_mux_audio;
  113.     char *psz_mux_video;
  114.     char *psz_access;
  115.     char *psz_access_audio;
  116.     char *psz_access_video;
  117.     char *psz_dst;
  118.     char *psz_dst_audio;
  119.     char *psz_dst_video;
  120. };
  121. /*****************************************************************************
  122.  * Open:
  123.  *****************************************************************************/
  124. static int Open( vlc_object_t *p_this )
  125. {
  126.     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
  127.     sout_stream_sys_t   *p_sys;
  128.     vlc_value_t         val;
  129.     sout_CfgParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, p_stream->p_cfg );
  130.     p_sys                   = malloc( sizeof( sout_stream_sys_t ) );
  131.     p_sys->i_count          = 0;
  132.     p_sys->i_count_audio    = 0;
  133.     p_sys->i_count_video    = 0;
  134.     var_Get( p_stream, SOUT_CFG_PREFIX "access", &val );
  135.     p_sys->psz_access       = val.psz_string;
  136.     var_Get( p_stream, SOUT_CFG_PREFIX "access-audio", &val );
  137.     p_sys->psz_access_audio = val.psz_string;
  138.     var_Get( p_stream, SOUT_CFG_PREFIX "access-video", &val );
  139.     p_sys->psz_access_video = val.psz_string;
  140.     var_Get( p_stream, SOUT_CFG_PREFIX "mux", &val );
  141.     p_sys->psz_mux       = val.psz_string;
  142.     var_Get( p_stream, SOUT_CFG_PREFIX "mux-audio", &val );
  143.     p_sys->psz_mux_audio = val.psz_string;
  144.     var_Get( p_stream, SOUT_CFG_PREFIX "mux-video", &val );
  145.     p_sys->psz_mux_video = val.psz_string;
  146.     var_Get( p_stream, SOUT_CFG_PREFIX "dst", &val );
  147.     p_sys->psz_dst       = val.psz_string;
  148.     var_Get( p_stream, SOUT_CFG_PREFIX "dst-audio", &val );
  149.     p_sys->psz_dst_audio = val.psz_string;
  150.     var_Get( p_stream, SOUT_CFG_PREFIX "dst-video", &val );
  151.     p_sys->psz_dst_video = val.psz_string;
  152.     p_stream->pf_add    = Add;
  153.     p_stream->pf_del    = Del;
  154.     p_stream->pf_send   = Send;
  155.     p_stream->p_sys     = p_sys;
  156.     return VLC_SUCCESS;
  157. }
  158. /*****************************************************************************
  159.  * Close:
  160.  *****************************************************************************/
  161. static void Close( vlc_object_t * p_this )
  162. {
  163.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  164.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  165.     free( p_sys->psz_access );
  166.     free( p_sys->psz_access_audio );
  167.     free( p_sys->psz_access_video );
  168.     free( p_sys->psz_mux );
  169.     free( p_sys->psz_mux_audio );
  170.     free( p_sys->psz_mux_video );
  171.     free( p_sys->psz_dst );
  172.     free( p_sys->psz_dst_audio );
  173.     free( p_sys->psz_dst_video );
  174.     free( p_sys );
  175. }
  176. struct sout_stream_id_t
  177. {
  178.     sout_input_t *p_input;
  179.     sout_mux_t   *p_mux;
  180. };
  181. static char * es_print_url( char *psz_fmt, vlc_fourcc_t i_fourcc, int i_count,
  182.                             char *psz_access, char *psz_mux )
  183. {
  184.     char *psz_dst, *p;
  185.     if( psz_fmt == NULL || !*psz_fmt )
  186.     {
  187.         psz_fmt = "stream-%n-%c.%m";
  188.     }
  189.     p = psz_dst = malloc( 4096 );
  190.     memset( p, 0, 4096 );
  191.     for( ;; )
  192.     {
  193.         if( *psz_fmt == '' )
  194.         {
  195.             *p = '';
  196.             break;
  197.         }
  198.         if( *psz_fmt != '%' )
  199.         {
  200.             *p++ = *psz_fmt++;
  201.         }
  202.         else
  203.         {
  204.             if( psz_fmt[1] == 'n' )
  205.             {
  206.                 p += sprintf( p, "%d", i_count );
  207.             }
  208.             else if( psz_fmt[1] == 'c' )
  209.             {
  210.                 p += sprintf( p, "%4.4s", (char*)&i_fourcc );
  211.             }
  212.             else if( psz_fmt[1] == 'm' )
  213.             {
  214.                 p += sprintf( p, "%s", psz_mux );
  215.             }
  216.             else if( psz_fmt[1] == 'a' )
  217.             {
  218.                 p += sprintf( p, "%s", psz_access );
  219.             }
  220.             else if( psz_fmt[1] != '' )
  221.             {
  222.                 p += sprintf( p, "%c%c", psz_fmt[0], psz_fmt[1] );
  223.             }
  224.             else
  225.             {
  226.                 p += sprintf( p, "%c", psz_fmt[0] );
  227.                 *p++ = '';
  228.                 break;
  229.             }
  230.             psz_fmt += 2;
  231.         }
  232.     }
  233.     return( psz_dst );
  234. }
  235. static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  236. {
  237.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  238.     sout_instance_t   *p_sout = p_stream->p_sout;
  239.     sout_stream_id_t  *id;
  240.     char              *psz_access;
  241.     char              *psz_mux;
  242.     char              *psz_dst;
  243.     sout_access_out_t *p_access;
  244.     sout_mux_t        *p_mux;
  245.     /* *** get access name *** */
  246.     if( p_fmt->i_cat == AUDIO_ES && p_sys->psz_access_audio && *p_sys->psz_access_audio )
  247.     {
  248.         psz_access = p_sys->psz_access_audio;
  249.     }
  250.     else if( p_fmt->i_cat == VIDEO_ES && p_sys->psz_access_video && *p_sys->psz_access_video )
  251.     {
  252.         psz_access = p_sys->psz_access_video;
  253.     }
  254.     else
  255.     {
  256.         psz_access = p_sys->psz_access;
  257.     }
  258.     /* *** get mux name *** */
  259.     if( p_fmt->i_cat == AUDIO_ES && p_sys->psz_mux_audio && *p_sys->psz_mux_audio )
  260.     {
  261.         psz_mux = p_sys->psz_mux_audio;
  262.     }
  263.     else if( p_fmt->i_cat == VIDEO_ES && p_sys->psz_mux_video && *p_sys->psz_mux_video )
  264.     {
  265.         psz_mux = p_sys->psz_mux_video;
  266.     }
  267.     else
  268.     {
  269.         psz_mux = p_sys->psz_mux;
  270.     }
  271.     /* Get url (%d expanded as a codec count, %c expanded as codec fcc ) */
  272.     if( p_fmt->i_cat == AUDIO_ES && p_sys->psz_dst_audio && *p_sys->psz_dst_audio )
  273.     {
  274.         psz_dst = es_print_url( p_sys->psz_dst_audio, p_fmt->i_codec,
  275.                                 p_sys->i_count_audio, psz_access, psz_mux );
  276.     }
  277.     else if( p_fmt->i_cat == VIDEO_ES && p_sys->psz_dst_video && *p_sys->psz_dst_video )
  278.     {
  279.         psz_dst = es_print_url( p_sys->psz_dst_video, p_fmt->i_codec,
  280.                                 p_sys->i_count_video, psz_access, psz_mux );
  281.     }
  282.     else
  283.     {
  284.         int i_count;
  285.         if( p_fmt->i_cat == VIDEO_ES )
  286.         {
  287.             i_count = p_sys->i_count_video;
  288.         }
  289.         else if( p_fmt->i_cat == AUDIO_ES )
  290.         {
  291.             i_count = p_sys->i_count_audio;
  292.         }
  293.         else
  294.         {
  295.             i_count = p_sys->i_count;
  296.         }
  297.         psz_dst = es_print_url( p_sys->psz_dst, p_fmt->i_codec,
  298.                                 i_count, psz_access, psz_mux );
  299.     }
  300.     p_sys->i_count++;
  301.     if( p_fmt->i_cat == VIDEO_ES )
  302.     {
  303.         p_sys->i_count_video++;
  304.     }
  305.     else if( p_fmt->i_cat == AUDIO_ES )
  306.     {
  307.         p_sys->i_count_audio++;
  308.     }
  309.     msg_Dbg( p_stream, "creating `%s/%s://%s'",
  310.              psz_access, psz_mux, psz_dst );
  311.     /* *** find and open appropriate access module *** */
  312.     p_access = sout_AccessOutNew( p_sout, psz_access, psz_dst );
  313.     if( p_access == NULL )
  314.     {
  315.         msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'",
  316.                  psz_access, psz_mux, psz_dst );
  317.         return( NULL );
  318.     }
  319.     /* *** find and open appropriate mux module *** */
  320.     p_mux = sout_MuxNew( p_sout, psz_mux, p_access );
  321.     if( p_mux == NULL )
  322.     {
  323.         msg_Err( p_stream, "no suitable sout mux module for `%s/%s://%s'",
  324.                  psz_access, psz_mux, psz_dst );
  325.         sout_AccessOutDelete( p_access );
  326.         return( NULL );
  327.     }
  328.     id = malloc( sizeof( sout_stream_id_t ) );
  329.     id->p_mux = p_mux;
  330.     id->p_input = sout_MuxAddStream( p_mux, p_fmt );
  331.     if( id->p_input == NULL )
  332.     {
  333.         free( id );
  334.         sout_MuxDelete( p_mux );
  335.         sout_AccessOutDelete( p_access );
  336.         free( id );
  337.         return NULL;
  338.     }
  339.     return id;
  340. }
  341. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  342. {
  343.     sout_access_out_t *p_access = id->p_mux->p_access;
  344.     sout_MuxDeleteStream( id->p_mux, id->p_input );
  345.     sout_AccessOutDelete( p_access );
  346.     free( id );
  347.     return VLC_SUCCESS;
  348. }
  349. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  350.                  block_t *p_buffer )
  351. {
  352.     sout_MuxSendBuffer( id->p_mux, id->p_input, p_buffer );
  353.     return VLC_SUCCESS;
  354. }