]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/esd.c
* modules/audio_output/alsa.c: alsa is now the default audio output.
[vlc] / modules / audio_output / esd.c
index 6f47ca1cabf80d5118f809be351791ec890ca751..68dcb9e6381af030f392d7c2c17e3e0a6d30ff8c 100644 (file)
@@ -2,7 +2,7 @@
  * esd.c : EsounD module
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: esd.c,v 1.16 2003/01/28 03:46:22 sam Exp $
+ * $Id: esd.c,v 1.19 2003/06/25 21:17:21 asmax Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -34,6 +34,8 @@
 #include <vlc/aout.h>
 #include "aout_internal.h"
 
+#include <sys/socket.h>
+
 #include <esd.h>
 
 /*****************************************************************************
@@ -47,7 +49,7 @@ struct aout_sys_t
     esd_format_t esd_format;
     int          i_fd;
 
-    mtime_t      latency;
+    mtime_t      latency;       /* unused, but we might do something with it */
 };
 
 /*****************************************************************************
@@ -56,14 +58,12 @@ struct aout_sys_t
 static int  Open         ( vlc_object_t * );
 static void Close        ( vlc_object_t * );
 static void Play         ( aout_instance_t * );
-static int  ESDThread    ( aout_instance_t * );
-static void ESDLoop      ( aout_instance_t * );
 
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("EsounD audio module") );
+    set_description( _("EsounD audio output") );
     set_capability( "audio output", 50 );
     set_callbacks( Open, Close );
     add_shortcut( "esound" );
@@ -77,13 +77,14 @@ static int Open( vlc_object_t *p_this )
     aout_instance_t *p_aout = (aout_instance_t *)p_this;
     struct aout_sys_t * p_sys;
     int i_nb_channels;
+    int fl;
 
     /* Allocate structure */
     p_sys = malloc( sizeof( aout_sys_t ) );
     if( p_sys == NULL )
     {
         msg_Err( p_aout, "out of memory" );
-        return -1;
+        return VLC_ENOMEM;
     }
 
     p_aout->output.p_sys = p_sys;
@@ -115,6 +116,9 @@ static int Open( vlc_object_t *p_this )
         break;
     }
 
+    /* Force the rate, otherwise the sound is very noisy */
+    p_aout->output.output.i_rate = ESD_DEFAULT_RATE;
+    
     /* open a socket for playing a stream
      * and try to open /dev/dsp if there's no EsounD */
     p_sys->i_fd = esd_play_stream_fallback( p_sys->esd_format,
@@ -124,7 +128,7 @@ static int Open( vlc_object_t *p_this )
         msg_Err( p_aout, "cannot open esound socket (format 0x%08x at %d Hz)",
                          p_sys->esd_format, p_aout->output.output.i_rate );
         free( p_sys );
-        return -1;
+        return VLC_EGENERIC;
     }
 
     p_aout->output.i_nb_samples = ESD_BUF_SIZE * 2;
@@ -140,17 +144,7 @@ static int Open( vlc_object_t *p_this )
       / p_aout->output.output.i_bytes_per_frame
       / p_aout->output.output.i_rate;
 
-    /* Create ESD thread and wait for its readiness. */
-    if( vlc_thread_create( p_aout, "aout", ESDThread,
-                           VLC_THREAD_PRIORITY_OUTPUT, VLC_FALSE ) )
-    {
-        msg_Err( p_aout, "cannot create ESD thread (%s)", strerror(errno) );
-        close( p_sys->i_fd );
-        free( p_sys );
-        return -1;
-    }
-
-    return 0;
+    return VLC_SUCCESS;
 }
 
 /*****************************************************************************
@@ -158,80 +152,40 @@ static int Open( vlc_object_t *p_this )
  *****************************************************************************/
 static void Play( aout_instance_t *p_aout )
 {
-}
-
-/*****************************************************************************
- * Close: close the Esound 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;
+    aout_buffer_t * p_buffer;
+    int i_tmp;
 
-    p_aout->b_die = 1;
-    vlc_thread_join( p_aout );
-
-    close( p_sys->i_fd );
-    free( p_sys );
-}
+    p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
 
-/*****************************************************************************
- * ESDThread: asynchronous thread used to DMA the data to the device
- *****************************************************************************/
-static int ESDThread( aout_instance_t * p_aout )
-{
-    while ( !p_aout->b_die )
+    if ( p_buffer != NULL )
     {
-        ESDLoop( p_aout );
+        int pos;
+        char *data = p_buffer->p_buffer;
+
+        for( pos = 0; pos + ESD_BUF_SIZE <= p_buffer->i_nb_bytes; 
+             pos += ESD_BUF_SIZE )
+        {
+            i_tmp = write( p_sys->i_fd, data + pos, ESD_BUF_SIZE );
+            if( i_tmp < 0 )
+            {
+                msg_Err( p_aout, "write failed (%s)", strerror(errno) );
+            }
+        }
+        aout_BufferFree( p_buffer );
     }
-
-    return 0;
 }
 
 /*****************************************************************************
- * ESDLoop: ESDThread's inner loop
- *****************************************************************************
- * This is a separate function because it makes use of alloca() which makes
- * use of the caller's stack frame, which means we need to return after each
- * iteration.
+ * Close: close the Esound socket
  *****************************************************************************/
-static void ESDLoop( aout_instance_t * p_aout )
+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;
-    aout_buffer_t * p_buffer;
-    int i_tmp, i_size;
-    byte_t * p_bytes = NULL;
 
-    /* Get the presentation date of the next write() operation. It
-     * is equal to the current date + buffered samples + esd latency */
-    p_buffer = aout_OutputNextBuffer( p_aout, mdate() + p_sys->latency,
-                                              VLC_FALSE );
-
-    if ( p_buffer != NULL )
-    {
-        p_bytes = p_buffer->p_buffer;
-        i_size = p_buffer->i_nb_bytes;
-    }
-    else
-    {
-        i_size = ESD_BUF_SIZE * 2
-                  / p_aout->output.output.i_frame_length
-                  * p_aout->output.output.i_bytes_per_frame;
-        p_bytes = alloca( i_size );
-        memset( p_bytes, 0, i_size );
-    }
-
-    i_tmp = write( p_sys->i_fd, p_bytes, i_size );
-
-    if( i_tmp < 0 )
-    {
-        msg_Err( p_aout, "write failed (%s)", strerror(errno) );
-    }
-
-    if ( p_buffer != NULL )
-    {
-        aout_BufferFree( p_buffer );
-    }
+    close( p_sys->i_fd );
+    free( p_sys );
 }
 
 #if 0