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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * display.c: display stream output module
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: display.c 8265 2004-07-24 10:24:11Z gbazin $
  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 AUDIO_TEXT N_("Enable audio")
  35. #define AUDIO_LONGTEXT N_( "Enable/disable audio rendering." )
  36. #define VIDEO_TEXT N_("Enable video")
  37. #define VIDEO_LONGTEXT N_( "Enable/disable video rendering." )
  38. #define DELAY_TEXT N_("Delay")
  39. #define DELAY_LONGTEXT N_( "Introduces a delay in the display of the stream." )
  40. static int  Open ( vlc_object_t * );
  41. static void Close( vlc_object_t * );
  42. #define SOUT_CFG_PREFIX "sout-display-"
  43. vlc_module_begin();
  44.     set_description( _("Display stream output") );
  45.     set_capability( "sout stream", 50 );
  46.     add_shortcut( "display" );
  47.     add_bool( SOUT_CFG_PREFIX "audio", 1, NULL, AUDIO_TEXT,
  48.               AUDIO_LONGTEXT, VLC_TRUE );
  49.     add_bool( SOUT_CFG_PREFIX "video", 1, NULL, VIDEO_TEXT,
  50.               VIDEO_LONGTEXT, VLC_TRUE );
  51.     add_integer( SOUT_CFG_PREFIX "delay", 100, NULL, DELAY_TEXT,
  52.                  DELAY_LONGTEXT, VLC_TRUE );
  53.     set_callbacks( Open, Close );
  54. vlc_module_end();
  55. /*****************************************************************************
  56.  * Exported prototypes
  57.  *****************************************************************************/
  58. static const char *ppsz_sout_options[] = {
  59.     "audio", "video", "delay", NULL
  60. };
  61. static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
  62. static int               Del ( sout_stream_t *, sout_stream_id_t * );
  63. static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
  64. struct sout_stream_sys_t
  65. {
  66.     input_thread_t *p_input;
  67.     vlc_bool_t     b_audio;
  68.     vlc_bool_t     b_video;
  69.     mtime_t        i_delay;
  70. };
  71. /*****************************************************************************
  72.  * Open:
  73.  *****************************************************************************/
  74. static int Open( vlc_object_t *p_this )
  75. {
  76.     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
  77.     sout_stream_sys_t *p_sys;
  78.     vlc_value_t val;
  79.     sout_CfgParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
  80.                    p_stream->p_cfg );
  81.     p_sys          = malloc( sizeof( sout_stream_sys_t ) );
  82.     p_sys->p_input = vlc_object_find( p_stream, VLC_OBJECT_INPUT,
  83.                                       FIND_ANYWHERE );
  84.     if( !p_sys->p_input )
  85.     {
  86.         msg_Err( p_stream, "cannot find p_input" );
  87.         free( p_sys );
  88.         return VLC_EGENERIC;
  89.     }
  90.     var_Get( p_stream, SOUT_CFG_PREFIX "audio", &val );
  91.     p_sys->b_audio = val.b_bool;
  92.     var_Get( p_stream, SOUT_CFG_PREFIX "video", &val );
  93.     p_sys->b_video = val.b_bool;
  94.     var_Get( p_stream, SOUT_CFG_PREFIX "delay", &val );
  95.     p_sys->i_delay = (int64_t)val.i_int * 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.     vlc_object_release( p_sys->p_input );
  114.     free( p_sys );
  115. }
  116. struct sout_stream_id_t
  117. {
  118.     decoder_t *p_dec;
  119. };
  120. static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
  121. {
  122.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  123.     sout_stream_id_t *id;
  124.     if( ( p_fmt->i_cat == AUDIO_ES && !p_sys->b_audio )||
  125.         ( p_fmt->i_cat == VIDEO_ES && !p_sys->b_video ) )
  126.     {
  127.         return NULL;
  128.     }
  129.     id = malloc( sizeof( sout_stream_id_t ) );
  130.     id->p_dec = input_DecoderNew( p_sys->p_input, p_fmt, VLC_TRUE );
  131.     if( id->p_dec == NULL )
  132.     {
  133.         msg_Err( p_stream, "cannot create decoder for fcc=`%4.4s'",
  134.                  (char*)&p_fmt->i_codec );
  135.         free( id );
  136.         return NULL;
  137.     }
  138.     return id;
  139. }
  140. static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
  141. {
  142.     input_DecoderDelete( id->p_dec );
  143.     free( id );
  144.     return VLC_SUCCESS;
  145. }
  146. static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
  147.                  block_t *p_buffer )
  148. {
  149.     sout_stream_sys_t *p_sys = p_stream->p_sys;
  150.     while( p_buffer )
  151.     {
  152.         block_t *p_next = p_buffer->p_next;
  153.         p_buffer->p_next = NULL;
  154.         if( id->p_dec && p_buffer->i_buffer > 0 )
  155.         {
  156.             if( p_buffer->i_dts <= 0 )
  157.                 p_buffer->i_dts= 0;
  158.             else
  159.                 p_buffer->i_dts += p_sys->i_delay;
  160.             if( p_buffer->i_pts <= 0 )
  161.                 p_buffer->i_pts= 0;
  162.             else
  163.                 p_buffer->i_pts += p_sys->i_delay;
  164.             input_DecoderDecode( id->p_dec, p_buffer );
  165.         }
  166.         p_buffer = p_next;
  167.     }
  168.     return VLC_SUCCESS;
  169. }