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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * aout_dummy.c : dummy audio output plugin
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 the VideoLAN team
  5.  * $Id: e1e64ff23db1fcc612b05a001b8ff97c0096fc5d $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@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_aout.h>
  31. #include "dummy.h"
  32. #define FRAME_SIZE 2048
  33. #define A52_FRAME_NB 1536
  34. /*****************************************************************************
  35.  * Local prototypes.
  36.  *****************************************************************************/
  37. static void    Play        ( aout_instance_t * );
  38. /*****************************************************************************
  39.  * OpenAudio: open a dummy audio device
  40.  *****************************************************************************/
  41. int OpenAudio ( vlc_object_t * p_this )
  42. {
  43.     aout_instance_t * p_aout = (aout_instance_t *)p_this;
  44.     p_aout->output.pf_play = Play;
  45.     aout_VolumeSoftInit( p_aout );
  46.     if ( p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i') )
  47.     {
  48.         p_aout->output.i_nb_samples = A52_FRAME_NB;
  49.         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
  50.         p_aout->output.output.i_frame_length = A52_FRAME_NB;
  51.     }
  52.     else
  53.     {
  54.         p_aout->output.i_nb_samples = FRAME_SIZE;
  55.     }
  56.     /* Create the variable for the audio-device */
  57.     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
  58.     return VLC_SUCCESS;
  59. }
  60. /*****************************************************************************
  61.  * Play: pretend to play a sound
  62.  *****************************************************************************/
  63. static void Play( aout_instance_t * p_aout )
  64. {
  65.     aout_buffer_t * p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
  66.     aout_BufferFree( p_buffer );
  67. }