Commit 6a4590eb authored by Sam Hocevar's avatar Sam Hocevar

* ./modules/audio_output/arts.c: fixed aRts output and removed debug

    messages that were lying around.
parent 89e32e31
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* arts.c : aRts module * arts.c : aRts module
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2002 VideoLAN * Copyright (C) 2001-2002 VideoLAN
* $Id: arts.c,v 1.16 2002/11/15 17:17:29 gbazin Exp $ * $Id: arts.c,v 1.17 2003/01/29 09:54:45 sam Exp $
* *
* Authors: Emmanuel Blindauer <manu@agat.net> * Authors: Emmanuel Blindauer <manu@agat.net>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -58,7 +58,6 @@ struct aout_sys_t ...@@ -58,7 +58,6 @@ struct aout_sys_t
static int Open ( vlc_object_t * ); static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * ); static void Close ( vlc_object_t * );
static void Play ( aout_instance_t * ); static void Play ( aout_instance_t * );
static int aRtsThread ( aout_instance_t * );
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
...@@ -84,17 +83,17 @@ static int Open( vlc_object_t *p_this ) ...@@ -84,17 +83,17 @@ static int Open( vlc_object_t *p_this )
if( p_sys == NULL ) if( p_sys == NULL )
{ {
msg_Err( p_aout, "out of memory" ); msg_Err( p_aout, "out of memory" );
return -1; return VLC_ENOMEM;
} }
p_aout->output.p_sys = p_sys; p_aout->output.p_sys = p_sys;
i_err = arts_init(); i_err = arts_init();
if (i_err < 0) if( i_err < 0 )
{ {
msg_Err( p_aout, "arts_init failed (%s)", arts_error_text(i_err) ); msg_Err( p_aout, "arts_init failed (%s)", arts_error_text(i_err) );
free( p_sys ); free( p_sys );
return -1; return VLC_EGENERIC;
} }
p_aout->output.pf_play = Play; p_aout->output.pf_play = Play;
...@@ -117,7 +116,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -117,7 +116,7 @@ static int Open( vlc_object_t *p_this )
{ {
msg_Err( p_aout, "cannot open aRts socket" ); msg_Err( p_aout, "cannot open aRts socket" );
free( p_sys ); free( p_sys );
return -1; return VLC_EGENERIC;
} }
/* Try not to bufferize more than 200 ms */ /* Try not to bufferize more than 200 ms */
...@@ -133,20 +132,10 @@ static int Open( vlc_object_t *p_this ) ...@@ -133,20 +132,10 @@ static int Open( vlc_object_t *p_this )
arts_stream_get( p_sys->stream, ARTS_P_PACKET_COUNT ), arts_stream_get( p_sys->stream, ARTS_P_PACKET_COUNT ),
arts_stream_get( p_sys->stream, ARTS_P_PACKET_SIZE ) ); arts_stream_get( p_sys->stream, ARTS_P_PACKET_SIZE ) );
p_aout->output.i_nb_samples = p_sys->i_size / sizeof(u16) / i_nb_channels; p_aout->output.i_nb_samples = p_sys->i_size / sizeof(uint16_t)
/ i_nb_channels;
/* Create aRts thread and wait for its readiness. */ return VLC_SUCCESS;
if( vlc_thread_create( p_aout, "aout", aRtsThread,
VLC_THREAD_PRIORITY_OUTPUT, VLC_FALSE ) )
{
msg_Err( p_aout, "cannot create aRts thread (%s)", strerror(errno) );
arts_close_stream( p_sys->stream );
arts_free();
free( p_sys );
return -1;
}
return 0;
} }
/***************************************************************************** /*****************************************************************************
...@@ -154,86 +143,43 @@ static int Open( vlc_object_t *p_this ) ...@@ -154,86 +143,43 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/ *****************************************************************************/
static void Play( aout_instance_t *p_aout ) static void Play( aout_instance_t *p_aout )
{ {
;
}
/*****************************************************************************
* Close: close the aRts socket
*****************************************************************************/
static void Close( vlc_object_t *p_this )
{
aout_instance_t *p_aout = (aout_instance_t *)p_this;
struct aout_sys_t * p_sys = p_aout->output.p_sys; struct aout_sys_t * p_sys = p_aout->output.p_sys;
p_aout->b_die = 1;
vlc_thread_join( p_aout );
arts_close_stream( p_sys->stream );
arts_free();
free( p_sys );
}
/*****************************************************************************
* aRtsThread: asynchronous thread used to DMA the data to the device
*****************************************************************************/
static int aRtsThread( aout_instance_t * p_aout )
{
struct aout_sys_t * p_sys = p_aout->output.p_sys;
mtime_t calldate = mdate();
while ( !p_aout->b_die )
{
aout_buffer_t * p_buffer; aout_buffer_t * p_buffer;
int i_tmp, i_size; int i_tmp;
byte_t * p_bytes;
fprintf(stderr, "can write %i\n", arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) ); #if 0
while( arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) < 16384*3/2 ) while( arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) < 16384*3/2 )
{ {
fprintf(stderr, "sleep\n");
msleep( 10000 ); msleep( 10000 );
} }
fprintf(stderr, "after sleep: can write %i\n", arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) ); #endif
/* Get the presentation date of the next write() operation. It p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
* is equal to the current date + latency */
p_buffer = aout_OutputNextBuffer( p_aout, mdate() + p_sys->latency / 4,
VLC_TRUE );
if ( p_buffer != NULL ) if( p_buffer != NULL )
{
fprintf(stderr, "buffer duration "I64Fd", bytes %i\n", p_buffer->end_date - p_buffer->start_date, p_buffer->i_nb_bytes);
p_bytes = p_buffer->p_buffer;
i_size = p_buffer->i_nb_bytes;
}
else
{ {
i_size = p_sys->i_size; i_tmp = arts_write( p_sys->stream, p_buffer->p_buffer,
p_bytes = malloc( i_size ); p_buffer->i_nb_bytes );
memset( p_bytes, 0, i_size );
}
fprintf(stderr, "WRITING %i bytes\n", i_size);
i_tmp = arts_write( p_sys->stream, p_bytes, i_size );
fprintf(stderr, "mdate: "I64Fd"\n", mdate() - calldate);
calldate = mdate();
fprintf(stderr, "can write %i\n", arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) );
if( i_tmp < 0 ) if( i_tmp < 0 )
{ {
msg_Err( p_aout, "write failed (%s)", arts_error_text(i_tmp) ); msg_Err( p_aout, "write failed (%s)", arts_error_text(i_tmp) );
} }
if ( p_buffer != NULL )
{
aout_BufferFree( p_buffer ); aout_BufferFree( p_buffer );
} }
else }
{
free( p_bytes ); /*****************************************************************************
} * Close: close the aRts socket
} *****************************************************************************/
static void Close( vlc_object_t *p_this )
{
aout_instance_t *p_aout = (aout_instance_t *)p_this;
struct aout_sys_t * p_sys = p_aout->output.p_sys;
return 0; arts_close_stream( p_sys->stream );
arts_free();
free( p_sys );
} }
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