]> git.sesse.net Git - vlc/blobdiff - modules/access/cdda/cdda.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / access / cdda / cdda.c
index ca7f4aebdbf639ef8d7502f72cc78db5c56555b0..933fa20affae338fdbf767cbb73cf15237dbd768 100644 (file)
@@ -1,12 +1,10 @@
 /*****************************************************************************
- * cddax.c : CD digital audio input module for vlc using libcdio
+ * cdda.c : CD digital audio input module for vlc using libcdio
  *****************************************************************************
- * Copyright (C) 2000,2003 VideoLAN
- * $Id: cdda.c,v 1.1 2003/11/26 01:32:52 rocky Exp $
+ * Copyright (C) 2000, 2003, 2004, 2005 the VideoLAN team
+ * $Id$
  *
- * Authors: Laurent Aimar <fenrir@via.ecp.fr>
- *          Gildas Bazin <gbazin@netcourrier.com>
- *          Rocky Bernstein <rocky@panix.com> 
+ * Authors: Rocky Bernstein <rocky@panix.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdio.h>
-#include <stdlib.h>
 
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-#include <vlc/input.h>
-#include <sys/types.h>
-#include <cdio/cdio.h>
-#include <cdio/cd_types.h>
-
-#include "codecs.h"
-#include "vlc_keys.h"
-
-#ifdef HAVE_UNISTD_H
-#   include <unistd.h>
-#endif
-
-#include <string.h>
-
-#include "../vcdx/cdrom.h"
-
-/* how many blocks E_(Open) will read in each loop */
-#define CDDA_BLOCKS_ONCE 1
-#define CDDA_DATA_ONCE   (CDDA_BLOCKS_ONCE * CDIO_CD_FRAMESIZE_RAW)
+#include "callback.h"
+#include "access.h"
+#include <cdio/version.h>
 
 /*****************************************************************************
- * cdda_data_t: CD audio information
- *****************************************************************************/
-typedef struct cdda_data_s
-{
-    cddev_t     *p_cddev;                           /* CD device descriptor */
-    int         i_nb_tracks;                        /* Nb of tracks (titles) */
-    int         i_track;                                    /* Current track */
-    lsn_t       i_sector;                                  /* Current Sector */
-    lsn_t *     p_sectors;                                  /* Track sectors */
-    vlc_bool_t  b_end_of_track;           /* If the end of track was reached */
-    int         i_debug;                  /* Debugging mask */
-    intf_thread_t *p_intf;
-
-} cdda_data_t;
-
-/*****************************************************************************
- * Debugging 
- *****************************************************************************/
-#define INPUT_DBG_MRL         1 
-#define INPUT_DBG_EVENT       2 /* Trace keyboard events */
-#define INPUT_DBG_EXT         4 /* Calls from external routines */
-#define INPUT_DBG_CALL        8 /* all calls */
-#define INPUT_DBG_LSN        16 /* LSN changes */
-#define INPUT_DBG_CDIO       32 /* Debugging from CDIO */
-#define INPUT_DBG_SEEK       64 /* Seeks to set location */
-
-#define DEBUG_TEXT N_("set debug mask for additional debugging.")
-#define DEBUG_LONGTEXT N_( \
-    "This integer when viewed in binary is a debugging mask\n" \
-    "MRL             1\n" \
-    "events          2\n" \
-    "external call   4\n" \
-    "all calls       8\n" \
-    "LSN      (10)  16\n" \
-    "libcdio  (20)  32\n" \
-    "seeks    (40)  64\n" )
-
-#define DEV_TEXT N_("CD-ROM device name")
-#define DEV_LONGTEXT N_( \
-    "Specify the name of the CD-ROM device that will be used by default. " \
-    "If you don't specify anything, we'll scan for a suitable CD-ROM device.")
-
-#define INPUT_DEBUG 1
-#if INPUT_DEBUG
-#define dbg_print(mask, s, args...) \
-   if (p_cdda->i_debug & mask) \
-     msg_Dbg(p_input, "%s: "s, __func__ , ##args)
-#else
-#define dbg_print(mask, s, args...) 
-#endif
-
-/*****************************************************************************
- * intf_sys_t: description and status of interface
+ * Module descriptor
  *****************************************************************************/
-struct intf_sys_t
-{
-    input_thread_t    * p_input;
-    cdda_data_t       * p_cdda;
-    vlc_bool_t          b_click, b_move, b_key_pressed;
-};
-
-/* FIXME: This variable is a hack. Would be nice to eliminate. */
-static input_thread_t *p_cdda_input = NULL;
 
 /*****************************************************************************
- * Local prototypes
+ * Option help text
  *****************************************************************************/
-static int  E_(Open)         ( vlc_object_t * );
-static void E_(Close)        ( vlc_object_t * );
-static int  E_(OpenIntf)     ( vlc_object_t * );
-static void E_(CloseIntf)    ( vlc_object_t * );
-
-static int  CDDARead         ( input_thread_t *, byte_t *, size_t );
-static void CDDASeek         ( input_thread_t *, off_t );
-static int  CDDASetArea      ( input_thread_t *, input_area_t * );
-static int  CDDAPlay         ( input_thread_t *, int );
-static int  CDDASetProgram   ( input_thread_t *, pgrm_descriptor_t * );
 
-static int  InitThread     ( intf_thread_t *p_intf );
-static int  KeyEvent       ( vlc_object_t *, char const *,
-                             vlc_value_t, vlc_value_t, void * );
+#if LIBCDIO_VERSION_NUM >= 72
+static const char *psz_paranoia_list[] = { "none", "overlap", "full" };
+static const char *psz_paranoia_list_text[] = { N_("none"), N_("overlap"),
+                                          N_("full") };
+#endif
 
-static void RunIntf          ( intf_thread_t *p_intf );
+#define DEBUG_LONGTEXT N_( \
+    "This integer when viewed in binary is a debugging mask\n" \
+    "meta info          1\n" \
+    "events             2\n" \
+    "MRL                4\n" \
+    "external call      8\n" \
+    "all calls (0x10)  16\n" \
+    "LSN       (0x20)  32\n" \
+    "seek      (0x40)  64\n" \
+    "libcdio   (0x80) 128\n" \
+    "libcddb  (0x100) 256\n" )
 
-static int  E_(DebugCallback) ( vlc_object_t *p_this, const char *psz_name,
-                               vlc_value_t oldval, vlc_value_t val, 
-                               void *p_data );
+#define CACHING_LONGTEXT N_( \
+    "Caching value for CDDA streams. This " \
+    "value should be set in millisecond units." )
+
+#define BLOCKS_PER_READ_LONGTEXT N_( \
+    "How many CD blocks to get on a single CD read. " \
+    "Generally on newer/faster CDs, this increases throughput at the " \
+    "expense of a little more memory usage and initial delay. SCSI-MMC " \
+    "limitations generally don't allow for more than 25 blocks per access.")
+
+#define CDDB_TITLE_FMT_LONGTEXT N_( \
+"Format used in the GUI Playlist Title. Similar to the Unix date \n" \
+"Format specifiers that start with a percent sign. Specifiers are: \n" \
+"   %a : The artist (for the album)\n" \
+"   %A : The album information\n" \
+"   %C : Category\n" \
+"   %e : The extended data (for a track)\n" \
+"   %I : CDDB disk ID\n" \
+"   %G : Genre\n" \
+"   %M : The current MRL\n" \
+"   %m : The CD-DA Media Catalog Number (MCN)\n" \
+"   %n : The number of tracks on the CD\n" \
+"   %p : The artist/performer/composer in the track\n" \
+"   %T : The track number\n" \
+"   %s : Number of seconds in this track\n" \
+"   %S : Number of seconds in the CD\n" \
+"   %t : The track title or MRL if no title\n" \
+"   %Y : The year 19xx or 20xx\n" \
+"   %% : a % \n")
+
+#define TITLE_FMT_LONGTEXT N_( \
+"Format used in the GUI Playlist Title. Similar to the Unix date \n" \
+"Format specifiers that start with a percent sign. Specifiers are: \n" \
+"   %M : The current MRL\n" \
+"   %m : The CD-DA Media Catalog Number (MCN)\n" \
+"   %n : The number of tracks on the CD\n" \
+"   %T : The track number\n" \
+"   %s : Number of seconds in this track\n" \
+"   %S : Number of seconds in the CD\n" \
+"   %t : The track title or MRL if no title\n" \
+"   %% : a % \n")
+
+#define PARANOIA_TEXT N_("Enable CD paranoia?")
+#define PARANOIA_LONGTEXT N_( \
+        "Select whether to use CD Paranoia for jitter/error correction.\n" \
+        "none: no paranoia - fastest.\n" \
+        "overlap: do only overlap detection - not generally recommended.\n" \
+        "full: complete jitter and error correction detection - slowest.\n" )
 
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
 
-static int  DemuxOpen  ( vlc_object_t * );
-static void DemuxClose ( vlc_object_t * );
-
-#define CACHING_TEXT N_("Caching value in ms")
-#define CACHING_LONGTEXT N_( \
-    "Allows you to modify the default caching value for cdda streams. This " \
-    "value should be set in miliseconds units." )
-
 vlc_module_begin();
-    add_usage_hint( N_("cddax://[device-or-file][@num]") );
+    add_usage_hint( N_("cddax://[device-or-file][@[T]track]") );
     set_description( _("Compact Disc Digital Audio (CD-DA) input") );
-    set_capability( "access", 75 /* slightly higher than cdda */ );
-    add_integer( "cddax-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
-    set_callbacks( E_(Open), E_(Close) );
-    add_shortcut( "cdda" );
+    set_capability( "access2", 10 /* compare with priority of cdda */ );
+    set_shortname( _("Audio Compact Disc"));
+    set_callbacks( CDDAOpen, CDDAClose );
     add_shortcut( "cddax" );
+    add_shortcut( "cd" );
+    set_category( CAT_INPUT );
+    set_subcategory( SUBCAT_INPUT_ACCESS );
 
     /* Configuration options */
-    add_category_hint( N_("CDX"), NULL, VLC_TRUE );
-    add_integer ( MODULE_STRING "-debug", 0, E_(DebugCallback), DEBUG_TEXT, 
+    add_integer ( MODULE_STRING "-debug", 0, CDDADebugCB,
+                  N_("Additional debug"),
                   DEBUG_LONGTEXT, VLC_TRUE );
-    add_string( MODULE_STRING "-device", "", NULL, DEV_TEXT, 
-                DEV_LONGTEXT, VLC_TRUE );
-
-    add_submodule();
-        set_description( _("CD Audio demux") );
-        set_capability( "demux", 0 );
-        set_callbacks( DemuxOpen, DemuxClose );
-        add_shortcut( "cdda" );
-
-    add_submodule();
-        set_capability( "interface", 0 );
-        set_callbacks( E_(OpenIntf), E_(CloseIntf) );
-
-vlc_module_end();
-
-/****************************************************************************
- * Private functions
- ****************************************************************************/
-
-static int
-E_(DebugCallback)   ( vlc_object_t *p_this, const char *psz_name,
-                     vlc_value_t oldval, vlc_value_t val, void *p_data )
-{
-  cdda_data_t *p_cdda;
-
-  if (NULL == p_cdda_input) return VLC_EGENERIC;
-  
-  p_cdda = (cdda_data_t *)p_cdda_input->p_access_data;
-
-  if (p_cdda->i_debug & (INPUT_DBG_CALL|INPUT_DBG_EXT)) {
-    msg_Dbg( p_cdda_input, "Old debug (x%0x) %d, new debug (x%0x) %d", 
-             p_cdda->i_debug, p_cdda->i_debug, val.i_int, val.i_int);
-  }
-  p_cdda->i_debug = val.i_int;
-  return VLC_SUCCESS;
-}
-
-/* process messages that originate from libcdio. */
-static void
-cdio_log_handler (cdio_log_level_t level, const char message[])
-{
-  cdda_data_t *p_cdda = (cdda_data_t *)p_cdda_input->p_access_data;
-  switch (level) {
-  case CDIO_LOG_DEBUG:
-  case CDIO_LOG_INFO:
-    if (p_cdda->i_debug & INPUT_DBG_CDIO) 
-      msg_Dbg( p_cdda_input, message);
-    break;
-  case CDIO_LOG_WARN:
-    msg_Warn( p_cdda_input, message);
-    break;
-  case CDIO_LOG_ERROR:
-  case CDIO_LOG_ASSERT:
-    msg_Err( p_cdda_input, message);
-    break;
-  default:
-    msg_Warn( p_cdda_input, message,
-            _("The above message had unknown vcdimager log level"), 
-            level);
-  }
-  return;
-}
-
-
-/*****************************************************************************
- * E_(Open): open cdda
- *****************************************************************************/
-static int E_(Open)( vlc_object_t *p_this )
-{
-    input_thread_t *        p_input = (input_thread_t *)p_this;
-    char *                  psz_orig;
-    char *                  psz_parser;
-    char *                  psz_source;
-    cdda_data_t *           p_cdda;
-    int                     i;
-    int                     i_title = 1;
-    cddev_t                 *p_cddev;
-
-    /* Set where to log errors messages from libcdio. */
-    p_cdda_input = (input_thread_t *)p_this;
-
-    /* parse the options passed in command line : */
-    psz_orig = psz_parser = psz_source = strdup( p_input->psz_name );
-
-    if( !psz_orig )
-    {
-        return( -1 );
-    }
-
-    while( *psz_parser && *psz_parser != '@' )
-    {
-        psz_parser++;
-    }
-
-    if( *psz_parser == '@' )
-    {
-        /* Found options */
-        *psz_parser = '\0';
-        ++psz_parser;
-
-        if ('T' == *psz_parser || 't' == *psz_parser ) 
-            ++psz_parser;
-          
-        i_title = (int)strtol( psz_parser, NULL, 10 );
-        i_title = i_title ? i_title : 1;
-    }
-
-    if( !*psz_source ) {
-      /* No source specified, so figure it out. */
-      if( !p_input->psz_access ) {
-        free( psz_orig );
-        return -1;
-      }
-      psz_source = config_GetPsz( p_input, MODULE_STRING "-device" );
-      
-      if( !psz_source || 0==strlen(psz_source) ) {
-        /* Scan for a CD-ROM drive with a CD-DA in it. */
-        char **cd_drives = 
-          cdio_get_devices_with_cap(NULL,  CDIO_FS_AUDIO, false);
-        if (NULL == cd_drives) return -1;
-        if (cd_drives[0] == NULL) {
-          cdio_free_device_list(cd_drives);
-          return -1;
-        }
-        psz_source = strdup(cd_drives[0]);
-        cdio_free_device_list(cd_drives);
-      }
-    }
-
-    /* Open CDDA */
-    cdio_log_set_handler ( cdio_log_handler );
-
-    if( !(p_cddev = ioctl_Open( p_this, psz_source )) )
-    {
-        msg_Warn( p_input, "could not open %s", psz_source );
-        free( psz_source );
-        return -1;
-    }
-    free( psz_source );
-
-    p_cdda = malloc( sizeof(cdda_data_t) );
-    if( p_cdda == NULL )
-    {
-        msg_Err( p_input, "out of memory" );
-        free( psz_source );
-        return -1;
-    }
-
-    p_cdda->p_cddev        = p_cddev;
-    p_cdda->i_debug        = config_GetInt( p_this, MODULE_STRING "-debug" );
-    p_input->p_access_data = (void *)p_cdda;
-
-    dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "%s", psz_source );
-
-    p_input->i_mtu = CDDA_DATA_ONCE;
-
-    /* We read the Table Of Content information */
-    p_cdda->i_nb_tracks = ioctl_GetTracksMap( VLC_OBJECT(p_input),
-                              p_cdda->p_cddev->cdio, &p_cdda->p_sectors );
-    if( p_cdda->i_nb_tracks < 0 )
-        msg_Err( p_input, "unable to count tracks" );
-    else if( p_cdda->i_nb_tracks <= 0 )
-        msg_Err( p_input, "no audio tracks found" );
-
-    if( p_cdda->i_nb_tracks <= 1)
-    {
-        ioctl_Close( p_cdda->p_cddev );
-        free( p_cdda );
-        return -1;
-    }
-
-    if( i_title >= p_cdda->i_nb_tracks || i_title < 1 )
-        i_title = 1;
-
-    /* Set stream and area data */
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-
-    /* Initialize ES structures */
-    input_InitStream( p_input, 0 );
-
-    /* cdda input method */
-    p_input->stream.i_method = INPUT_METHOD_CDDA;
-
-    p_input->stream.b_pace_control = 1;
-    p_input->stream.b_seekable = 1;
-    p_input->stream.i_mux_rate = 44100 * 4 / 50;
-
-#define area p_input->stream.pp_areas
-    for( i = 1 ; i <= p_cdda->i_nb_tracks ; i++ )
-    {
-        input_AddArea( p_input, i, 1 );
-
-        /* Absolute start offset and size */
-        area[i]->i_start =
-            (off_t)p_cdda->p_sectors[i-1] * (off_t)CDIO_CD_FRAMESIZE_RAW;
-        area[i]->i_size =
-            (off_t)(p_cdda->p_sectors[i] - p_cdda->p_sectors[i-1])
-            * (off_t)CDIO_CD_FRAMESIZE_RAW;
-    }
-#undef area
-
-    CDDAPlay( p_input, i_title);
-
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    if( !p_input->psz_demux || !*p_input->psz_demux )
-    {
-        p_input->psz_demux = "cdda";
-    }
-
-    p_input->pf_read = CDDARead;
-    p_input->pf_seek = CDDASeek;
-    p_input->pf_set_area = CDDASetArea;
-    p_input->pf_set_program = CDDASetProgram;
-
-    /* Update default_pts to a suitable value for cdda access */
-    p_input->i_pts_delay = config_GetInt( p_input, 
-                                         MODULE_STRING "-caching" ) * 1000;
-
-    p_cdda->p_intf = intf_Create( p_input, "cddax" );
-    intf_RunThread( p_cdda->p_intf );
-
-    return 0;
-}
-
-/*****************************************************************************
- * CDDAPlay: Arrange things play track
- *****************************************************************************/
-static vlc_bool_t
-CDDAPlay( input_thread_t *p_input, int i_track )
-{
-  cdda_data_t *p_cdda = (cdda_data_t *) p_input->p_access_data;
-
-  if( i_track >= p_cdda->i_nb_tracks || i_track < 1 )
-    return VLC_FALSE;
-
-  CDDASetArea( p_input, p_input->stream.pp_areas[i_track] );
-  return VLC_TRUE;
-}
-
-/*****************************************************************************
- * E_(Close): closes cdda
- *****************************************************************************/
-static void 
-E_(Close)( vlc_object_t *p_this )
-{
-    input_thread_t *   p_input = (input_thread_t *)p_this;
-    cdda_data_t *p_cdda = (cdda_data_t *)p_input->p_access_data;
-
-    dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "" );
-    ioctl_Close( p_cdda->p_cddev );
-    free( p_cdda );
-    p_cdda_input = NULL;
-}
-
-/*****************************************************************************
- * CDDARead: reads from the CDDA into PES packets.
- *****************************************************************************
- * Returns -1 in case of error, 0 in case of EOF, otherwise the number of
- * bytes.
- *****************************************************************************/
-static int CDDARead( input_thread_t * p_input, byte_t * p_buffer,
-                     size_t i_len )
-{
-    cdda_data_t *           p_cdda;
-    int                     i_blocks;
-    int                     i_index;
-    int                     i_read;
-
-    p_cdda = (cdda_data_t *)p_input->p_access_data;
-
-    i_read = 0;
-
-    /* Compute the number of blocks we have to read */
-
-    i_blocks = i_len / CDIO_CD_FRAMESIZE_RAW;
-
-    for ( i_index = 0; i_index < i_blocks; i_index++ )
-    {
-
-      if (cdio_read_audio_sector(p_cdda->p_cddev->cdio, p_buffer, 
-                                 p_cdda->i_sector) != 0)
-        {
-          msg_Err( p_input, "could not read sector %d", p_cdda->i_sector );
-          return -1;
-        }
-
-        p_cdda->i_sector ++;
-        if ( p_cdda->i_sector == p_cdda->p_sectors[p_cdda->i_track + 1] )
-        {
-            input_area_t *p_area;
-
-           dbg_print( (INPUT_DBG_LSN|INPUT_DBG_CALL), 
-                      "end of track, cur: %u", p_cdda->i_sector );
-
-            if ( p_cdda->i_track >= p_cdda->i_nb_tracks - 1 )
-                return 0; /* EOF */
-
-            vlc_mutex_lock( &p_input->stream.stream_lock );
-            p_area = p_input->stream.pp_areas[
-                    p_input->stream.p_selected_area->i_id + 1 ];
-
-            p_area->i_part = 1;
-            CDDASetArea( p_input, p_area );
-            vlc_mutex_unlock( &p_input->stream.stream_lock );
-        }
-        i_read += CDIO_CD_FRAMESIZE_RAW;
-    }
 
-    if ( i_len % CDIO_CD_FRAMESIZE_RAW ) /* this should not happen */
-    {
-        msg_Err( p_input, "must read full sectors" );
-    }
-
-    return i_read;
-}
-
-/*****************************************************************************
- * CDDASetProgram: Does nothing since a CDDA is mono_program
- *****************************************************************************/
-static int CDDASetProgram( input_thread_t * p_input,
-                           pgrm_descriptor_t * p_program)
-{
-    cdda_data_t * p_cdda= (cdda_data_t *) p_input->p_access_data;
-    dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "" );
-    return 0;
-}
-
-/*****************************************************************************
- * CDDASetArea: initialize input data for title x.
- * It should be called for each user navigation request.
- ****************************************************************************/
-static int CDDASetArea( input_thread_t * p_input, input_area_t * p_area )
-{
-    cdda_data_t *p_cdda = (cdda_data_t*) p_input->p_access_data;
-    vlc_value_t val;
-
-    dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT), "");
-
-    /* we can't use the interface slider until initilization is complete */
-    p_input->stream.b_seekable = 0;
-
-    if( p_area != p_input->stream.p_selected_area )
-    {
-        /* Change the default area */
-        p_input->stream.p_selected_area = p_area;
-
-        /* Change the current track */
-        p_cdda->i_track = p_area->i_id - 1;
-        p_cdda->i_sector = p_cdda->p_sectors[p_cdda->i_track];
-
-        /* Update the navigation variables without triggering a callback */
-        val.i_int = p_area->i_id;
-        var_Change( p_input, "title", VLC_VAR_SETVALUE, &val, NULL );
-    }
-
-    p_cdda->i_sector = p_cdda->p_sectors[p_cdda->i_track];
-
-    p_input->stream.p_selected_area->i_tell =
-        (off_t)p_cdda->i_sector * (off_t)CDIO_CD_FRAMESIZE_RAW
-         - p_input->stream.p_selected_area->i_start;
-
-    /* warn interface that something has changed */
-    p_input->stream.b_seekable = 1;
-    p_input->stream.b_changed = 1;
-
-    return 0;
-}
-
-/****************************************************************************
- * CDDASeek
- ****************************************************************************/
-static void CDDASeek( input_thread_t * p_input, off_t i_off )
-{
-    cdda_data_t * p_cdda;
-
-    p_cdda = (cdda_data_t *) p_input->p_access_data;
-
-    p_cdda->i_sector = p_cdda->p_sectors[p_cdda->i_track]
-                       + i_off / (off_t)CDIO_CD_FRAMESIZE_RAW;
-
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-    p_input->stream.p_selected_area->i_tell =
-        (off_t)p_cdda->i_sector * (off_t)CDIO_CD_FRAMESIZE_RAW
-         - p_input->stream.p_selected_area->i_start;
-
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    dbg_print( (INPUT_DBG_CALL|INPUT_DBG_EXT|INPUT_DBG_SEEK),
-    "sector %ud, offset: %lld, i_tell: %lld",  p_cdda->i_sector, i_off, 
-               p_input->stream.p_selected_area->i_tell );
-
-}
-
-/*****************************************************************************
- * Demux: local prototypes
- *****************************************************************************/
-struct demux_sys_t
-{
-    es_out_id_t *p_es;
-    mtime_t     i_pts;
-};
-
-static int  Demux     ( input_thread_t * p_input );
-
-/****************************************************************************
- * DemuxOpen:
- ****************************************************************************/
-static int  DemuxOpen    ( vlc_object_t * p_this)
-{
-    input_thread_t *p_input = (input_thread_t *)p_this;
-    demux_sys_t    *p_sys;
-
-    es_format_t    fmt;
-
-    if( p_input->stream.i_method != INPUT_METHOD_CDDA )
-    {
-        return VLC_EGENERIC;
-    }
-
-    p_input->pf_demux  = Demux;
-    p_input->pf_rewind = NULL;
-    p_input->pf_demux_control = demux_vaControlDefault;
-    p_input->p_demux_data = p_sys = malloc( sizeof( es_descriptor_t ) );
-    p_sys->i_pts = 0;
-
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-    if( input_InitStream( p_input, 0 ) == -1)
-    {
-        vlc_mutex_unlock( &p_input->stream.stream_lock );
-        msg_Err( p_input, "cannot init stream" );
-        free( p_sys );
-        return VLC_EGENERIC;
-    }
-    p_input->stream.i_mux_rate = 4 * 44100 / 50;
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 'a', 'r', 'a', 'w' ) );
-    fmt.audio.i_channels = 2;
-    fmt.audio.i_rate = 44100;
-    fmt.audio.i_bitspersample = 16;
-    fmt.audio.i_blockalign = 4;
-    fmt.i_bitrate = 4 * 44100 * 8;
-
-    p_sys->p_es =  es_out_Add( p_input->p_es_out, &fmt );
-
-    return VLC_SUCCESS;
-}
-
-/****************************************************************************
- * DemuxClose:
- ****************************************************************************/
-static void DemuxClose( vlc_object_t * p_this)
-{
-    input_thread_t *p_input = (input_thread_t*)p_this;
-    demux_sys_t    *p_sys = (demux_sys_t*)p_input->p_demux_data;
-
-    free( p_sys );
-    return;
-}
-
-/****************************************************************************
- * Demux:
- ****************************************************************************/
-static int  Demux( input_thread_t * p_input )
-{
-    demux_sys_t    *p_sys = (demux_sys_t*)p_input->p_demux_data;
-    block_t        *p_block;
-
-
-    input_ClockManageRef( p_input,
-                          p_input->stream.p_selected_program,
-                          p_sys->i_pts );
-
-    if( ( p_block = stream_Block( p_input->s, CDIO_CD_FRAMESIZE_RAW ) ) == NULL )
-    {
-        /* eof */
-        return 0;
-    }
-    p_block->i_dts =
-    p_block->i_pts = input_ClockGetTS( p_input,
-                                       p_input->stream.p_selected_program,
-                                       p_sys->i_pts );
-    p_block->i_length = (mtime_t)90000 * (mtime_t)p_block->i_buffer/44100/4;
-
-    p_sys->i_pts += p_block->i_length;
-
-    es_out_Send( p_input->p_es_out, p_sys->p_es, p_block );
-
-    return 1;
-}
-
-/*****************************************************************************
- * OpenIntf: initialize dummy interface
- *****************************************************************************/
-int E_(OpenIntf) ( vlc_object_t *p_this )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_this;
-
-    /* Allocate instance and initialize some members */
-    p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
-    if( p_intf->p_sys == NULL )
-    {
-        return( 1 );
-    };
-
-    p_intf->pf_run = RunIntf;
-
-    var_AddCallback( p_intf->p_vlc, "key-pressed", KeyEvent, p_intf );
-
-    return( 0 );
-}
-
-/*****************************************************************************
- * CloseIntf: destroy dummy interface
- *****************************************************************************/
-void E_(CloseIntf) ( vlc_object_t *p_this )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_this;
-
-    /* Destroy structure */
-    free( p_intf->p_sys );
-}
-
-
-/*****************************************************************************
- * RunIntf: main loop
- *****************************************************************************/
-static void RunIntf( intf_thread_t *p_intf )
-{
-    vlc_object_t      * p_vout = NULL;
-    cdda_data_t       * p_cdda;
-    input_thread_t    * p_input;
-    
-    /* What you add to the last input number entry. It accumulates all of
-       the 10_ADD keypresses */
-    int number_addend = 0; 
-    
-    if( InitThread( p_intf ) < 0 )
-    {
-        msg_Err( p_intf, "can't initialize intf" );
-        return;
-    }
-
-    p_input = p_intf->p_sys->p_input;
-    p_cdda   = p_intf->p_sys->p_cdda = 
-      (cdda_data_t *) p_input->p_access_data;
-
-    dbg_print( INPUT_DBG_CALL, "intf initialized" );
-
-    /* Main loop */
-    while( !p_intf->b_die )
-    {
-      vlc_mutex_lock( &p_intf->change_lock );
-
-      /*
-       * keyboard event
-       */
-      if( p_vout && p_intf->p_sys->b_key_pressed )
-        {
-         vlc_value_t val;
-         int i, i_action = -1;
-         struct hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;
-
-         p_intf->p_sys->b_key_pressed = VLC_FALSE;
-          
-         /* Find action triggered by hotkey (if any) */
-         var_Get( p_intf->p_vlc, "key-pressed", &val );
-
-         dbg_print( INPUT_DBG_EVENT, "Key pressed %d", val.i_int );
-
-         for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
-            {
-             if( p_hotkeys[i].i_key == val.i_int )
-                {
-                 i_action = p_hotkeys[i].i_action;
-                }
-            }
-         
-         if( i_action != -1) {
-           switch (i_action) {
-             
-           case ACTIONID_NAV_LEFT: 
-             dbg_print( INPUT_DBG_EVENT, "ACTIONID_NAV_LEFT (%d)", 
-                        number_addend );
-             do {
-               if ( CDDAPlay( p_input, p_cdda->i_track-1 ) ) {
-                 p_cdda->i_track--;
-               } else {
-                 break;
-               }
-             } while (number_addend-- > 0);
-             break;
-
-           case ACTIONID_NAV_RIGHT:
-             dbg_print( INPUT_DBG_EVENT, "ACTIONID_NAV_RIGHT (%d)",
-                        number_addend );
-             do {
-               if ( CDDAPlay( p_input, p_cdda->i_track+1 ) ) {
-                 p_cdda->i_track++;
-               } else {
-                 break;
-               }
-             } while (number_addend-- > 0);
-             break;
-
-           case ACTIONID_NAV_UP:
-             dbg_print( INPUT_DBG_EVENT, "ACTIONID_NAV_UP" );
-             do {
-               ;
-             } while (number_addend-- > 0);
-             break;
-
-           case ACTIONID_NAV_DOWN:
-             dbg_print( INPUT_DBG_EVENT, "ACTIONID_NAV_DOWN"  );
-             break;
-
-           case ACTIONID_NAV_ACTIVATE: 
-             {
-               dbg_print( INPUT_DBG_EVENT, "ACTIONID_NAV_ACTIVATE" );
-               if ( CDDAPlay( p_input, number_addend ) ) {
-                 p_cdda->i_track = number_addend;
-               } else {
-                 break;
-               }
-               break;
-             }
-           }
-           number_addend = 0;
-         } else {
-           unsigned int digit_entered=0;
-
-           switch (val.i_int) {
-           case '9':
-             digit_entered++;
-           case '8':
-             digit_entered++;
-           case '7':
-             digit_entered++;
-           case '6':
-             digit_entered++;
-           case '5':
-             digit_entered++;
-           case '4':
-             digit_entered++;
-           case '3':
-             digit_entered++;
-           case '2':
-             digit_entered++;
-           case '1':
-             digit_entered++;
-           case '0':
-             {
-               number_addend *= 10;
-               number_addend += digit_entered;
-               dbg_print( INPUT_DBG_EVENT, 
-                          "Added %d. Number is now: %d\n", 
-                          digit_entered, number_addend);
-               break;
-             }
-           }
-         }
-        }
-
-      
-      vlc_mutex_unlock( &p_intf->change_lock );
-      
-      if( p_vout == NULL )
-        {
-         p_vout = vlc_object_find( p_intf->p_sys->p_input,
-                                   VLC_OBJECT_VOUT, FIND_ANYWHERE );
-         if( p_vout )
-            {
-             var_AddCallback( p_vout, "key-pressed", KeyEvent, p_intf );
-            }
-        }
-      
-      
-      /* Wait a bit */
-      msleep( INTF_IDLE_SLEEP );
-    }
-
-    if( p_vout )
-    {
-        var_DelCallback( p_vout, "key-pressed", KeyEvent, p_intf );
-        vlc_object_release( p_vout );
-    }
-
-    vlc_object_release( p_intf->p_sys->p_input );
-}
-
-/*****************************************************************************
- * InitThread:
- *****************************************************************************/
-static int InitThread( intf_thread_t * p_intf )
-{
-    /* We might need some locking here */
-    if( !p_intf->b_die )
-    {
-        input_thread_t * p_input;
-
-        p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_PARENT );
-
-        /* Maybe the input just died */
-        if( p_input == NULL )
-        {
-            return VLC_EGENERIC;
-        }
-
-        vlc_mutex_lock( &p_intf->change_lock );
-
-        p_intf->p_sys->p_input = p_input;
-
-        p_intf->p_sys->b_move = VLC_FALSE;
-        p_intf->p_sys->b_click = VLC_FALSE;
-        p_intf->p_sys->b_key_pressed = VLC_FALSE;
-
-        vlc_mutex_unlock( &p_intf->change_lock );
-
-        return VLC_SUCCESS;
-    }
-    else
-    {
-        return VLC_EGENERIC;
-    }
-}
-
-/*****************************************************************************
- * KeyEvent: callback for keyboard events
- *****************************************************************************/
-static int KeyEvent( vlc_object_t *p_this, char const *psz_var,
-                       vlc_value_t oldval, vlc_value_t newval, void *p_data )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_data;
-    vlc_mutex_lock( &p_intf->change_lock );
+    add_integer( MODULE_STRING "-caching",
+                 DEFAULT_PTS_DELAY / MILLISECONDS_PER_SEC, NULL,
+                 N_("Caching value in microseconds"),
+                 CACHING_LONGTEXT, VLC_TRUE );
+
+    add_integer( MODULE_STRING "-blocks-per-read",
+                 DEFAULT_BLOCKS_PER_READ, CDDABlocksPerReadCB,
+                 N_("Number of blocks per CD read"),
+                 BLOCKS_PER_READ_LONGTEXT, VLC_TRUE );
+
+    add_string( MODULE_STRING "-title-format",
+                "Track %T. %t", NULL,
+                N_("Format to use in playlist \"title\" field when no CDDB"),
+                TITLE_FMT_LONGTEXT, VLC_TRUE );
+
+#if LIBCDIO_VERSION_NUM >= 73
+    add_bool( MODULE_STRING "-analog-output", VLC_FALSE, NULL,
+              N_("Use CD audio controls and output?"),
+              N_("If set, audio controls and audio jack output are used"),
+              VLC_FALSE );
+#endif
 
-    p_intf->p_sys->b_key_pressed = VLC_TRUE;
+    add_bool( MODULE_STRING "-cdtext-enabled", VLC_TRUE, CDTextEnabledCB,
+              N_("Do CD-Text lookups?"),
+              N_("If set, get CD-Text information"),
+              VLC_FALSE );
 
-    vlc_mutex_unlock( &p_intf->change_lock );
+    add_bool( MODULE_STRING "-navigation-mode", VLC_TRUE,
+#if FIXED
+          CDDANavModeCB,
+#else
+          NULL,
+#endif
+              N_("Use Navigation-style playback?"),
+              N_("Tracks are navigated via Navagation rather than "
+         "a playlist entries"),
+              VLC_FALSE );
+
+#if LIBCDIO_VERSION_NUM >= 72
+      add_string( MODULE_STRING "-paranoia", NULL, NULL,
+        PARANOIA_TEXT,
+        PARANOIA_LONGTEXT,
+        VLC_FALSE );
+      change_string_list( psz_paranoia_list, psz_paranoia_list_text, 0 );
+#endif /* LIBCDIO_VERSION_NUM >= 72 */
+
+#ifdef HAVE_LIBCDDB
+    set_section( N_("CDDB" ), 0 );
+    add_string( MODULE_STRING "-cddb-title-format",
+                "Track %T. %t - %p %A", NULL,
+                N_("Format to use in playlist \"title\" field when using CDDB"),
+                CDDB_TITLE_FMT_LONGTEXT, VLC_TRUE );
+
+    add_bool( MODULE_STRING "-cddb-enabled", VLC_TRUE, CDDBEnabledCB,
+              N_("CDDB lookups"),
+              N_("If set, lookup CD-DA track information using the CDDB "
+                 "protocol"),
+              VLC_FALSE );
+
+    add_string( MODULE_STRING "-cddb-server", "freedb.freedb.org", NULL,
+                N_("CDDB server"),
+                N_( "Contact this CDDB server look up CD-DA information"),
+        VLC_TRUE );
+
+    add_integer( MODULE_STRING "-cddb-port", 8880, NULL,
+                 N_("CDDB server port"),
+                 N_("CDDB server uses this port number to communicate on"),
+                 VLC_TRUE );
+
+    add_string( MODULE_STRING "-cddb-email", "me@home", NULL,
+                N_("email address reported to CDDB server"),
+                N_("email address reported to CDDB server"),
+        VLC_TRUE );
+
+    add_bool( MODULE_STRING "-cddb-enable-cache", VLC_TRUE, NULL,
+              N_("Cache CDDB lookups?"),
+              N_("If set cache CDDB information about this CD"),
+              VLC_FALSE );
+
+    add_bool( MODULE_STRING "-cddb-httpd", VLC_FALSE, NULL,
+              N_("Contact CDDB via the HTTP protocol?"),
+              N_("If set, the CDDB server gets information via the CDDB HTTP "
+                 "protocol"),
+              VLC_TRUE );
+
+    add_integer( MODULE_STRING "-cddb-timeout", 10, NULL,
+                 N_("CDDB server timeout"),
+                 N_("Time (in seconds) to wait for a response from the "
+                    "CDDB server"),
+                 VLC_FALSE );
+
+    add_string( MODULE_STRING "-cddb-cachedir", "~/.cddbslave", NULL,
+                N_("Directory to cache CDDB requests"),
+                N_("Directory to cache CDDB requests"),
+        VLC_TRUE );
+
+    add_bool( MODULE_STRING "-cdtext-prefer", VLC_TRUE, CDTextPreferCB,
+              N_("Prefer CD-Text info to CDDB info?"),
+              N_("If set, CD-Text information will be preferred "
+         "to CDDB information when both are available"),
+              VLC_FALSE );
+#endif /*HAVE_LIBCDDB*/
 
-    return VLC_SUCCESS;
-}
+vlc_module_end();