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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * aout_dummy.c : dummy audio output plugin
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: aout.c 6961 2004-03-05 17:34:23Z sam $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <string.h>
  27. #include <stdlib.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/aout.h>
  30. #include "aout_internal.h"
  31. #define FRAME_SIZE 2048
  32. #define A52_FRAME_NB 1536
  33. /*****************************************************************************
  34.  * Local prototypes.
  35.  *****************************************************************************/
  36. static void    Play        ( aout_instance_t * );
  37. /*****************************************************************************
  38.  * OpenAudio: open a dummy audio device
  39.  *****************************************************************************/
  40. int E_(OpenAudio) ( vlc_object_t * p_this )
  41. {
  42.     aout_instance_t * p_aout = (aout_instance_t *)p_this;
  43.     p_aout->output.pf_play = Play;
  44.     aout_VolumeSoftInit( p_aout );
  45.     if ( p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i') )
  46.     {
  47.         p_aout->output.i_nb_samples = A52_FRAME_NB;
  48.         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
  49.         p_aout->output.output.i_frame_length = A52_FRAME_NB;
  50.     }
  51.     else
  52.     {
  53.         p_aout->output.i_nb_samples = FRAME_SIZE;
  54.     }
  55.     return 0;
  56. }
  57. /*****************************************************************************
  58.  * Play: pretend to play a sound
  59.  *****************************************************************************/
  60. static void Play( aout_instance_t * p_aout )
  61. {
  62.     aout_buffer_t * p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
  63.     aout_BufferFree( p_buffer );
  64. }