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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * display.c: display stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: 5fa81ba84d3dd1f90245abb489b1f3f88792b26b $
  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_block.h>
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. #define AUDIO_TEXT N_("Enable audio")
  38. #define AUDIO_LONGTEXT N_( "Enable/disable audio rendering." )
  39. #define VIDEO_TEXT N_("Enable video")
  40. #define VIDEO_LONGTEXT N_( "Enable/disable video rendering." )
  41. #define DELAY_TEXT N_("Delay")
  42. #define DELAY_LONGTEXT N_( "Introduces a delay in the display of the stream." )
  43. static int  Open ( vlc_object_t * );
  44. static void Close( vlc_object_t * );
  45. #define SOUT_CFG_PREFIX "sout-display-"
  46. vlc_module_begin ()
  47.     set_shortname( N_("Display"))
  48.     set_description( N_("Display stream output") )
  49.     set_capability( "sout stream", 50 )
  50.     add_shortcut( "display" )
  51.     set_category( CAT_SOUT )
  52.     set_subcategory( SUBCAT_SOUT_STREAM )
  53.     add_bool( SOUT_CFG_PREFIX "audio", 1, NULL, AUDIO_TEXT,
  54.               AUDIO_LONGTEXT, true )
  55.     add_bool( SOUT_CFG_PREFIX "video", 1, NULL, VIDEO_TEXT,
  56.               VIDEO_LONGTEXT, true )
  57.     add_integer( SOUT_CFG_PREFIX "delay", 100, NULL, DELAY_TEXT,
  58.                  DELAY_LONGTEXT, true )
  59.     set_callbacks( Open, Close )
  60. vlc_module_end ()
  61. /*****************************************************************************
  62.  * Exported prototypes
  63.  *****************************************************************************/
  64. static const char *const ppsz_sout_options[] = {
  65.     "audio", "video", "delay", NULL
  66. };
  67. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  68. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  69. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  70. struct sout_stream_sys_t
  71. {
  72.     input_thread_t *p_input;
  73.     unsigned        i_es;
  74.     bool     b_audio;
  75.     bool     b_video;
  76.     mtime_t        i_delay;
  77. };
  78. /*****************************************************************************
  79.  * Open:
  80.  *****************************************************************************/
  81. static int Open( vlc_object_t *p_this )
  82. {
  83.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  84.     sout_stream_sys_t *p_sys;
  85.     p_sys = malloc( sizeof( sout_stream_sys_t ) );
  86.     if( p_sys == NULL )
  87.         return VLC_ENOMEM;
  88.     config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
  89.                    p_stream->p_cfg );
  90.     p_sys->p_input = NULL;
  91.     p_sys->i_es    = 0;
  92.     p_sys->b_audio = var_GetBool( p_stream, SOUT_CFG_PREFIX"audio" );
  93.     p_sys->b_video = var_GetBool( p_stream, SOUT_CFG_PREFIX "video" );
  94.     p_sys->i_delay = var_GetInteger( p_stream, SOUT_CFG_PREFIX "delay" );
  95.     p_sys->i_delay *= 1000;
  96.     p_stream->pf_add    = Add;
  97.     p_stream->pf_del    = Del;
  98.     p_stream->pf_send   = Send;
  99.     p_stream->p_sys     = p_sys;
  100.     /* update p_sout->i_out_pace_nocontrol */
  101.     p_stream->p_sout->i_out_pace_nocontrol++;
  102.     return VLC_SUCCESS;
  103. }
  104. /*****************************************************************************
  105.  * Close:
  106.  *****************************************************************************/
  107. static void Close( vlc_object_t * p_this )
  108. {
  109.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  110.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  111.     /* update p_sout->i_out_pace_nocontrol */
  112.     p_stream->p_sout->i_out_pace_nocontrol--;
  113.     free( p_sys );
  114. }
  115. struct sout_stream_id_t
  116. {
  117.     decoder_t *p_dec;
  118. };
  119. static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  120. {
  121.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  122.     sout_stream_id_t *id;
  123.     if( ( p_fmt->i_cat == AUDIO_ES && !p_sys->b_audio )||
  124.         ( p_fmt->i_cat == VIDEO_ES && !p_sys->b_video ) )
  125.     {
  126.         return NULL;
  127.     }
  128.     id = malloc( sizeof( sout_stream_id_t ) );
  129.     if( id == NULL )
  130.         return NULL;
  131.     if( p_sys->i_es == 0 )
  132.     {
  133.         p_sys->p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT,
  134.                                           FIND_PARENT );
  135.         if( p_sys->p_input == NULL )
  136.         {
  137.             msg_Err( p_stream, "cannot find input" );
  138.             free( id );
  139.             return NULL;
  140.         }
  141.     }
  142.     id->p_dec = input_DecoderNew( p_sys->p_input, p_fmt, NULL, NULL );
  143.     if( id->p_dec == NULL )
  144.     {
  145.         msg_Err( p_stream, "cannot create decoder for fcc=`%4.4s'",
  146.                  (char*)&p_fmt->i_codec );
  147.         free( id );
  148.         if( p_sys->i_es == 0 )
  149.             vlc_object_release( p_sys->p_input );
  150.         return NULL;
  151.     }
  152.     p_sys->i_es++;
  153.     return id;
  154. }
  155. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  156. {
  157.     input_DecoderDelete( id->p_dec );
  158.     if( --p_stream->p_sys->i_es == 0)
  159.         vlc_object_release( p_stream->p_sys->p_input );
  160.     free( id );
  161.     return VLC_SUCCESS;
  162. }
  163. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  164.                  block_t *p_buffer )
  165. {
  166.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  167.     while( p_buffer )
  168.     {
  169.         block_t *p_next = p_buffer->p_next;
  170.         p_buffer->p_next = NULL;
  171.         if( id->p_dec && p_buffer->i_buffer > 0 )
  172.         {
  173.             if( p_buffer->i_dts <= 0 )
  174.                 p_buffer->i_dts= 0;
  175.             else
  176.                 p_buffer->i_dts += p_sys->i_delay;
  177.             if( p_buffer->i_pts <= 0 )
  178.                 p_buffer->i_pts= 0;
  179.             else
  180.                 p_buffer->i_pts += p_sys->i_delay;
  181.             input_DecoderDecode( id->p_dec, p_buffer, false );
  182.         }
  183.         p_buffer = p_next;
  184.     }
  185.     return VLC_SUCCESS;
  186. }