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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * cdda.h : CD-DA input module header for vlc using libcdio.
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: cdda.h 8952 2004-10-07 22:50:44Z rocky $
  6.  *
  7.  * Author: Rocky Bernstein <rocky@panix.com>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <vlc/input.h>
  24. #include <cdio/cdio.h>
  25. #include <cdio/cdtext.h>
  26. #include "vlc_meta.h"
  27. #include "codecs.h"
  28. #ifdef HAVE_LIBCDDB
  29. #include <cddb/cddb.h>
  30. #endif
  31. /* Frequency of sample in bits per second. */
  32. #define CDDA_FREQUENCY_SAMPLE 44100
  33. /*****************************************************************************
  34.  * Debugging
  35.  *****************************************************************************/
  36. #define INPUT_DBG_META        1 /* Meta information */
  37. #define INPUT_DBG_EVENT       2 /* Trace keyboard events */
  38. #define INPUT_DBG_MRL         4 /* MRL debugging */
  39. #define INPUT_DBG_EXT         8 /* Calls from external routines */
  40. #define INPUT_DBG_CALL       16 /* all calls */
  41. #define INPUT_DBG_LSN        32 /* LSN changes */
  42. #define INPUT_DBG_SEEK       64 /* Seeks to set location */
  43. #define INPUT_DBG_CDIO      128 /* Debugging from CDIO */
  44. #define INPUT_DBG_CDDB      256 /* CDDB debugging  */
  45. #define INPUT_DEBUG 1
  46. #if INPUT_DEBUG
  47. #define dbg_print(mask, s, args...) 
  48.    if (p_cdda->i_debug & mask) 
  49.      msg_Dbg(p_access, "%s: "s, __func__ , ##args)
  50. #else
  51. #define dbg_print(mask, s, args...)
  52. #endif
  53. /*****************************************************************************
  54.  * cdda_data_t: CD audio information
  55.  *****************************************************************************/
  56. typedef struct cdda_data_s
  57. {
  58.   CdIo          *p_cdio;                   /* libcdio CD device */
  59.   track_t        i_tracks;                 /* # of tracks */
  60.   track_t        i_first_track;            /* # of first track */
  61.   track_t        i_titles;                 /* # of titles in playlist */
  62.   
  63.   /* Current position */
  64.   track_t        i_track;                  /* Current track */
  65.   lsn_t          i_lsn;                    /* Current Logical Sector Number */
  66.   lsn_t          lsn[CDIO_CD_MAX_TRACKS];  /* Track LSNs. Origin is NOT 
  67.       0 origin but origin of track
  68.       number (usually 1).
  69.     */
  70.   
  71.   int            i_blocks_per_read;        /* # blocks to get in a read */
  72.   int            i_debug;                  /* Debugging mask */
  73.   /* Information about CD */
  74.   vlc_meta_t    *p_meta;
  75.   char *         psz_mcn;                  /* Media Catalog Number */
  76.   input_title_t *p_title[CDIO_CD_MAX_TRACKS]; /* This *is* 0 origin, not
  77.          track number origin */
  78.   
  79.   
  80. #ifdef HAVE_LIBCDDB
  81.   vlc_bool_t     b_cddb_enabled;      /* Use CDDB at all? */
  82.   struct  {
  83.     vlc_bool_t   have_info;           /* True if we have any info */
  84.     cddb_disc_t *disc;                /* libcdio uses this to get disc
  85.  info */
  86.     int          disc_length;         /* Length in frames of cd. Used
  87.  in CDDB lookups */
  88.   } cddb;
  89. #endif
  90.   vlc_bool_t   b_cdtext_enabled;      /* Use CD-Text at all? If not,
  91.  cdtext_preferred is meaningless. */
  92.   vlc_bool_t   b_cdtext_prefer;       /* Prefer CD-Text info over
  93.  CDDB? If no CDDB, the issue
  94.  is moot. */
  95.   const cdtext_t *p_cdtext[CDIO_CD_MAX_TRACKS]; /* CD-Text info. Origin is NOT 
  96.    0 origin but origin of track
  97.    number (usually 1).
  98.  */
  99.   WAVEHEADER   waveheader;            /* Wave header for the output data  */
  100.   vlc_bool_t   b_header;
  101.   
  102.   input_thread_t *p_input;
  103.   
  104. } cdda_data_t;
  105. /* FIXME: This variable is a hack. Would be nice to eliminate. */
  106. extern access_t *p_cdda_input;