Commit 884742bd authored by Eric Petit's avatar Eric Petit

Fixed a possible crash.

parent aa4f7ea9
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* AudioOutput.cpp: BeOS audio output * AudioOutput.cpp: BeOS audio output
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN * Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: AudioOutput.cpp,v 1.20 2002/12/09 13:37:38 titer Exp $ * $Id: AudioOutput.cpp,v 1.21 2002/12/16 20:18:42 titer Exp $
* *
* Authors: Jean-Marc Dressler <polux@via.ecp.fr> * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -38,9 +38,6 @@ ...@@ -38,9 +38,6 @@
#include <vlc/aout.h> #include <vlc/aout.h>
#include <aout_internal.h> #include <aout_internal.h>
#define FRAME_SIZE 2048
#define BUFFER_SIZE 16384
/***************************************************************************** /*****************************************************************************
* aout_sys_t: BeOS audio output method descriptor * aout_sys_t: BeOS audio output method descriptor
*****************************************************************************/ *****************************************************************************/
...@@ -63,7 +60,6 @@ static void DoNothing ( aout_instance_t *p_aout ); ...@@ -63,7 +60,6 @@ static void DoNothing ( aout_instance_t *p_aout );
*****************************************************************************/ *****************************************************************************/
int E_(OpenAudio) ( vlc_object_t * p_this ) int E_(OpenAudio) ( vlc_object_t * p_this )
{ {
int i_nb_channels;
aout_instance_t *p_aout = (aout_instance_t*) p_this; aout_instance_t *p_aout = (aout_instance_t*) p_this;
p_aout->output.p_sys = (aout_sys_t *) malloc( sizeof( aout_sys_t ) ); p_aout->output.p_sys = (aout_sys_t *) malloc( sizeof( aout_sys_t ) );
if( p_aout->output.p_sys == NULL ) if( p_aout->output.p_sys == NULL )
...@@ -71,41 +67,21 @@ int E_(OpenAudio) ( vlc_object_t * p_this ) ...@@ -71,41 +67,21 @@ int E_(OpenAudio) ( vlc_object_t * p_this )
msg_Err( p_aout, "Not enough memory" ); msg_Err( p_aout, "Not enough memory" );
return -1; return -1;
} }
aout_sys_t *p_sys = p_aout->output.p_sys; aout_sys_t *p_sys = p_aout->output.p_sys;
aout_VolumeSoftInit( p_aout ); aout_VolumeSoftInit( p_aout );
media_raw_audio_format *p_format;
p_format = (media_raw_audio_format*)
malloc( sizeof( media_raw_audio_format ) );
p_format->frame_rate = p_aout->output.output.i_rate;
i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
if ( i_nb_channels > 2 )
{
/* BSoundPlayer does not support more than 2 channels AFAIK */
i_nb_channels = 2;
p_aout->output.output.i_physical_channels
= AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
}
p_format->channel_count = i_nb_channels;
p_format->format = media_raw_audio_format::B_AUDIO_FLOAT;
#ifdef WORDS_BIGENDIAN
p_format->byte_order = B_MEDIA_BIG_ENDIAN;
#else
p_format->byte_order = B_MEDIA_LITTLE_ENDIAN;
#endif
p_aout->output.output.i_format = VLC_FOURCC('f','l','3','2'); p_aout->output.output.i_format = VLC_FOURCC('f','l','3','2');
/* BSoundPlayer likes 44khz stereo */
p_format->buffer_size = BUFFER_SIZE; p_aout->output.output.i_rate = 44100;
p_aout->output.i_nb_samples = FRAME_SIZE; p_aout->output.output.i_physical_channels =
AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
/* BSoundPlayer wants 8192 bytes buffers.
8192 = i_nb_samples * 2 (stereo) * 4 (fl32) */
p_aout->output.i_nb_samples = 1024;
p_aout->output.pf_play = DoNothing; p_aout->output.pf_play = DoNothing;
p_sys->p_player = new BSoundPlayer( p_format, "player", p_sys->p_player = new BSoundPlayer( "player", Play, NULL, p_aout );
Play, NULL, p_aout );
if( p_sys->p_player->InitCheck() != B_OK ) if( p_sys->p_player->InitCheck() != B_OK )
{ {
msg_Err( p_aout, "BSoundPlayer InitCheck failed" ); msg_Err( p_aout, "BSoundPlayer InitCheck failed" );
...@@ -150,17 +126,12 @@ static void Play( void *aout, void *p_buffer, size_t i_size, ...@@ -150,17 +126,12 @@ static void Play( void *aout, void *p_buffer, size_t i_size,
{ {
memcpy( (float*)p_buffer, memcpy( (float*)p_buffer,
p_aout_buffer->p_buffer, p_aout_buffer->p_buffer,
MIN( BUFFER_SIZE, p_aout_buffer->i_nb_bytes ) ); p_aout_buffer->i_nb_bytes );
if( p_aout_buffer->i_nb_bytes < BUFFER_SIZE )
{
memset( (float*)p_buffer + p_aout_buffer->i_nb_bytes,
0, BUFFER_SIZE - p_aout_buffer->i_nb_bytes );
}
aout_BufferFree( p_aout_buffer ); aout_BufferFree( p_aout_buffer );
} }
else else
{ {
memset( (float*)p_buffer, 0, BUFFER_SIZE ); memset( (float*)p_buffer, 0, i_size );
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment