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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * AudioOutput.cpp: BeOS audio output
  3.  *****************************************************************************
  4.  * Copyright (C) 1999, 2000, 2001 VideoLAN
  5.  * $Id: AudioOutput.cpp 6961 2004-03-05 17:34:23Z sam $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <stdio.h>
  29. #include <stdlib.h>                                      /* malloc(), free() */
  30. #include <malloc.h>
  31. #include <string.h>
  32. #include <SoundPlayer.h>
  33. #include <media/MediaDefs.h>
  34. #include <vlc/vlc.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 E_(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.     {
  63.         msg_Err( p_aout, "out of memory" );
  64.         return -1;
  65.     }
  66.     aout_sys_t * p_sys = p_aout->output.p_sys;
  67.     aout_VolumeSoftInit( p_aout );
  68.     int i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
  69.     /* BSoundPlayer does not support more than 2 channels AFAIK */
  70.     if( i_nb_channels > 2 )
  71.     {
  72.         i_nb_channels = 2;
  73.         p_aout->output.output.i_physical_channels
  74.             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
  75.     }
  76.     media_raw_audio_format * p_format;
  77.     p_format = (media_raw_audio_format*)
  78.         malloc( sizeof( media_raw_audio_format ) );
  79.     p_format->channel_count = i_nb_channels;
  80.     p_format->frame_rate = p_aout->output.output.i_rate;
  81.     p_format->format = media_raw_audio_format::B_AUDIO_FLOAT;
  82. #ifdef WORDS_BIGENDIAN
  83.     p_format->byte_order = B_MEDIA_BIG_ENDIAN;
  84. #else
  85.     p_format->byte_order = B_MEDIA_LITTLE_ENDIAN;
  86. #endif
  87.     p_format->buffer_size = 8192;
  88.     p_aout->output.output.i_format = VLC_FOURCC('f','l','3','2');
  89.     p_aout->output.i_nb_samples = 2048 / i_nb_channels;
  90.     p_aout->output.pf_play = DoNothing;
  91.     p_sys->p_player = new BSoundPlayer( p_format, "player", Play, NULL, p_aout );
  92.     if( p_sys->p_player->InitCheck() != B_OK )
  93.     {
  94.         msg_Err( p_aout, "BSoundPlayer InitCheck failed" );
  95.         delete p_sys->p_player;
  96.         free( p_sys );
  97.         return -1;
  98.     }
  99.     /* Start playing */
  100.     p_sys->latency = p_sys->p_player->Latency();
  101.     p_sys->p_player->Start();
  102.     p_sys->p_player->SetHasData( true );
  103.     return 0;
  104. }
  105. /*****************************************************************************
  106.  * CloseAudio
  107.  *****************************************************************************/
  108. void E_(CloseAudio) ( vlc_object_t * p_this )
  109. {
  110.     aout_instance_t * p_aout = (aout_instance_t *) p_this;
  111.     aout_sys_t * p_sys = (aout_sys_t *) p_aout->output.p_sys;
  112.     /* Clean up */
  113.     p_sys->p_player->Stop();
  114.     delete p_sys->p_player;
  115.     free( p_sys );
  116. }
  117. /*****************************************************************************
  118.  * Play
  119.  *****************************************************************************/
  120. static void Play( void * _p_aout, void * _p_buffer, size_t i_size,
  121.                   const media_raw_audio_format &format )
  122. {
  123.     aout_instance_t * p_aout = (aout_instance_t*) _p_aout;
  124.     float * p_buffer = (float*) _p_buffer;
  125.     aout_sys_t * p_sys = (aout_sys_t*) p_aout->output.p_sys;
  126.     aout_buffer_t * p_aout_buffer;
  127.     p_aout_buffer = aout_OutputNextBuffer( p_aout,
  128.                                            mdate() + p_sys->latency,
  129.                                            VLC_FALSE );
  130.     if( p_aout_buffer != NULL )
  131.     {
  132.         p_aout->p_vlc->pf_memcpy( p_buffer, p_aout_buffer->p_buffer,
  133.                                   MIN( i_size, p_aout_buffer->i_nb_bytes ) );
  134.         if( p_aout_buffer->i_nb_bytes < i_size )
  135.         {
  136.             p_aout->p_vlc->pf_memset( p_buffer + p_aout_buffer->i_nb_bytes,
  137.                                       0, i_size - p_aout_buffer->i_nb_bytes );
  138.         }
  139.         aout_BufferFree( p_aout_buffer );
  140.     }
  141.     else
  142.     {
  143.         p_aout->p_vlc->pf_memset( p_buffer, 0, i_size );
  144.     }
  145. }
  146. /*****************************************************************************
  147.  * DoNothing
  148.  *****************************************************************************/
  149. static void DoNothing( aout_instance_t *p_aout )
  150. {
  151.     return;
  152. }