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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * demux.c: stats demux plugin
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2008 the VideoLAN team
  5.  *
  6.  * Authors: Samuel Hocevar <sam@zoy.org>
  7.  *          Pierre d'Herbemont <pdherbemont@videolan.org>
  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_interface.h>
  31. #include <vlc_access.h>
  32. #include <vlc_demux.h>
  33. #include "stats.h"
  34. /*****************************************************************************
  35.  * Demux
  36.  *****************************************************************************/
  37. struct demux_sys_t
  38. {
  39.     es_format_t     fmt;
  40.     es_out_id_t     *p_es;
  41.     date_t          pts;
  42. };
  43. static int Demux( demux_t * );
  44. static int DemuxControl( demux_t *, int, va_list );
  45. /*****************************************************************************
  46.  * OpenDemux
  47.  *****************************************************************************/
  48. int OpenDemux ( vlc_object_t *p_this )
  49. {
  50.     demux_t *p_demux = (demux_t*)p_this;
  51.     demux_sys_t *p_sys;
  52.     p_demux->p_sys = NULL;
  53.     /* Only when selected */
  54.     if( *p_demux->psz_demux == '' )
  55.         return VLC_EGENERIC;
  56.     msg_Dbg( p_demux, "Init Stat demux" );
  57.     p_demux->pf_demux   = Demux;
  58.     p_demux->pf_control = DemuxControl;
  59.     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
  60.     if( !p_demux->p_sys )
  61.         return VLC_ENOMEM;
  62.     date_Init( &p_sys->pts, 1, 1 );
  63.     date_Set( &p_sys->pts, 1 );
  64.     es_format_Init( &p_sys->fmt, VIDEO_ES, VLC_FOURCC('s','t','a','t') );
  65.     p_sys->fmt.video.i_width = 720;
  66.     p_sys->fmt.video.i_height= 480;
  67.     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
  68.     return VLC_SUCCESS;
  69. }
  70. /*****************************************************************************
  71.  * CloseDemux
  72.  *****************************************************************************/
  73. void CloseDemux ( vlc_object_t *p_this )
  74. {
  75.     demux_t *p_demux = (demux_t*)p_this;
  76.     msg_Dbg( p_demux, "Closing Stat demux" );
  77.     free( p_demux->p_sys );
  78. }
  79. /*****************************************************************************
  80.  * Demux
  81.  *****************************************************************************/
  82. static int Demux( demux_t *p_demux )
  83. {
  84.     demux_sys_t *p_sys = p_demux->p_sys;
  85.     block_t * p_block = stream_Block( p_demux->s, kBufferSize );
  86.     if( !p_block ) return 1;
  87.     p_block->i_dts = p_block->i_pts =
  88.         date_Increment( &p_sys->pts, kBufferSize );
  89.     msg_Dbg( p_demux, "demux got %d ms offset", (int)(mdate() - *(mtime_t *)p_block->p_buffer) / 1000 );
  90.     //es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  91.     es_out_Send( p_demux->out, p_sys->p_es, p_block );
  92.     return 1;
  93. }
  94. static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
  95. {
  96.     return demux_vaControlHelper( p_demux->s,
  97.                                    0, 0, 0, 1,
  98.                                    i_query, args );
  99. }