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

midi

开发平台:

Unix_Linux

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