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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dummy.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: 4a392f780d9076347bb79b9438abec3bf2f5985f $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_sout.h>
  33. #include <vlc_block.h>
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. static int  Open ( vlc_object_t * );
  38. static void Close( vlc_object_t * );
  39. vlc_module_begin ()
  40.     set_description( N_("Dummy stream output") )
  41.     set_shortname( N_( "Dummy" ))
  42.     set_capability( "sout access", 0 )
  43.     set_category( CAT_SOUT )
  44.     set_subcategory( SUBCAT_SOUT_ACO )
  45.     add_shortcut( "dummy" )
  46.     set_callbacks( Open, Close )
  47. vlc_module_end ()
  48. /*****************************************************************************
  49.  * Exported prototypes
  50.  *****************************************************************************/
  51. static ssize_t Write( sout_access_out_t *, block_t * );
  52. static int     Seek ( sout_access_out_t *, off_t  );
  53. /*****************************************************************************
  54.  * Open: open the file
  55.  *****************************************************************************/
  56. static int Open( vlc_object_t *p_this )
  57. {
  58.     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
  59.     p_access->p_sys    = NULL;
  60.     p_access->pf_write = Write;
  61.     p_access->pf_seek  = Seek;
  62.     msg_Dbg( p_access, "dummy stream output access opened" );
  63.     return VLC_SUCCESS;
  64. }
  65. /*****************************************************************************
  66.  * Close: close the target
  67.  *****************************************************************************/
  68. static void Close( vlc_object_t * p_this )
  69. {
  70.     sout_access_out_t   *p_access = (sout_access_out_t*)p_this;
  71.     msg_Dbg( p_access, "dummy stream output access closed" );
  72. }
  73. /*****************************************************************************
  74.  * Read: standard read on a file descriptor.
  75.  *****************************************************************************/
  76. static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer )
  77. {
  78.     size_t i_write = 0;
  79.     block_t *b = p_buffer;
  80.     while( b )
  81.     {
  82.         i_write += b->i_buffer;
  83.         b = b->p_next;
  84.     }
  85.     block_ChainRelease( p_buffer );
  86.     (void)p_access;
  87.     return i_write;
  88. }
  89. /*****************************************************************************
  90.  * Seek: seek to a specific location in a file
  91.  *****************************************************************************/
  92. static int Seek( sout_access_out_t *p_access, off_t i_pos )
  93. {
  94.     (void)p_access; (void)i_pos;
  95.     return 0;
  96. }