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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * AudioOutput.cpp: BeOS audio output
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000, 2001 the VideoLAN team
  5.  * $Id: 1202ef04da6c340af136ae6f0eec33dcad6655e2 $
  6.  *
  7.  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          Eric Petit <titer@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <malloc.h>
  29. #include <SoundPlayer.h>
  30. #include <media/MediaDefs.h>
  31. #ifdef HAVE_CONFIG_H
  32. # include "config.h"
  33. #endif
  34. #include <vlc_common.h>
  35. #include <vlc_aout.h>
  36. extern "C"
  37. {
  38.     #include <aout_internal.h>
  39. }
  40. /*****************************************************************************
  41.  * aout_sys_t: BeOS audio output method descriptor
  42.  *****************************************************************************/
  43. typedef struct aout_sys_t
  44. {
  45.     BSoundPlayer * p_player;
  46.     mtime_t        latency;
  47. } aout_sys_t;
  48. /*****************************************************************************
  49.  * Local prototypes.
  50.  *****************************************************************************/
  51. static void Play         ( void * p_aout, void * p_buffer, size_t size,
  52.                            const media_raw_audio_format & format );
  53. static void DoNothing    ( aout_instance_t * p_aout );
  54. /*****************************************************************************
  55.  * OpenAudio
  56.  *****************************************************************************/
  57. int OpenAudio ( vlc_object_t * p_this )
  58. {
  59.     aout_instance_t * p_aout = (aout_instance_t*) p_this;
  60.     p_aout->output.p_sys = (aout_sys_t*) malloc( sizeof( aout_sys_t ) );
  61.     if( p_aout->output.p_sys == NULL )
  62.         return -1;
  63.     aout_sys_t * p_sys = p_aout->output.p_sys;
  64.     aout_VolumeSoftInit( p_aout );
  65.     int i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
  66.     /* BSoundPlayer does not support more than 2 channels AFAIK */
  67.     if( i_nb_channels > 2 )
  68.     {
  69.         i_nb_channels = 2;
  70.         p_aout->output.output.i_physical_channels
  71.             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
  72.     }
  73.     media_raw_audio_format * p_format;
  74.     p_format = (media_raw_audio_format*)
  75.         malloc( sizeof( media_raw_audio_format ) );
  76.     p_format->channel_count = i_nb_channels;
  77.     p_format->frame_rate = p_aout->output.output.i_rate;
  78.     p_format->format = media_raw_audio_format::B_AUDIO_FLOAT;
  79. #ifdef WORDS_BIGENDIAN
  80.     p_format->byte_order = B_MEDIA_BIG_ENDIAN;
  81. #else
  82.     p_format->byte_order = B_MEDIA_LITTLE_ENDIAN;
  83. #endif
  84.     p_format->buffer_size = 8192;
  85.     p_aout->output.output.i_format = VLC_FOURCC('f','l','3','2');
  86.     p_aout->output.i_nb_samples = 2048 / i_nb_channels;
  87.     p_aout->output.pf_play = DoNothing;
  88.     p_sys->p_player = new BSoundPlayer( p_format, "player", Play, NULL, p_aout );
  89.     if( p_sys->p_player->InitCheck() != B_OK )
  90.     {
  91.         msg_Err( p_aout, "BSoundPlayer InitCheck failed" );
  92.         delete p_sys->p_player;
  93.         free( p_sys );
  94.         return -1;
  95.     }
  96.     /* Start playing */
  97.     p_sys->latency = p_sys->p_player->Latency();
  98.     p_sys->p_player->Start();
  99.     p_sys->p_player->SetHasData( true );
  100.     return 0;
  101. }
  102. /*****************************************************************************
  103.  * CloseAudio
  104.  *****************************************************************************/
  105. void CloseAudio ( vlc_object_t * p_this )
  106. {
  107.     aout_instance_t * p_aout = (aout_instance_t *) p_this;
  108.     aout_sys_t * p_sys = (aout_sys_t *) p_aout->output.p_sys;
  109.     /* Clean up */
  110.     p_sys->p_player->Stop();
  111.     delete p_sys->p_player;
  112.     free( p_sys );
  113. }
  114. /*****************************************************************************
  115.  * Play
  116.  *****************************************************************************/
  117. static void Play( void * _p_aout, void * _p_buffer, size_t i_size,
  118.                   const media_raw_audio_format &format )
  119. {
  120.     aout_instance_t * p_aout = (aout_instance_t*) _p_aout;
  121.     float * p_buffer = (float*) _p_buffer;
  122.     aout_sys_t * p_sys = (aout_sys_t*) p_aout->output.p_sys;
  123.     aout_buffer_t * p_aout_buffer;
  124.     p_aout_buffer = aout_OutputNextBuffer( p_aout,
  125.                                            mdate() + p_sys->latency,
  126.                                            false );
  127.     if( p_aout_buffer != NULL )
  128.     {
  129.         vlc_memcpy( p_buffer, p_aout_buffer->p_buffer,
  130.                     MIN( i_size, p_aout_buffer->i_nb_bytes ) );
  131.         if( p_aout_buffer->i_nb_bytes < i_size )
  132.         {
  133.             vlc_memset(  p_buffer + p_aout_buffer->i_nb_bytes,
  134.                          0, i_size - p_aout_buffer->i_nb_bytes );
  135.         }
  136.         aout_BufferFree( p_aout_buffer );
  137.     }
  138.     else
  139.     {
  140.         vlc_memset( p_buffer, 0, i_size );
  141.     }
  142. }
  143. /*****************************************************************************
  144.  * DoNothing
  145.  *****************************************************************************/
  146. static void DoNothing( aout_instance_t *p_aout )
  147. {
  148.     return;
  149. }