cdda.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * cdda.h : CD-DA input module header for vlc using libcdio.
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 19b26721128692d23d5153242bd2763f5eaf8e6b $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include <vlc_input.h>
  24. #include <vlc_access.h>
  25. #include <cdio/cdio.h>
  26. #include <cdio/cdtext.h>
  27. #if LIBCDIO_VERSION_NUM >= 73
  28. #include <cdio/audio.h>
  29. #include <cdio/mmc.h>
  30. #endif
  31. #include <vlc_meta.h>
  32. #include <vlc_codecs.h>
  33. #ifdef HAVE_LIBCDDB
  34. #include <cddb/cddb.h>
  35. #endif
  36. #define CDDA_MRL_PREFIX "cddax://"
  37. /* Frequency of sample in bits per second. */
  38. #define CDDA_FREQUENCY_SAMPLE 44100
  39. /*****************************************************************************
  40.  * Debugging
  41.  *****************************************************************************/
  42. #define INPUT_DBG_META        1 /* Meta information */
  43. #define INPUT_DBG_EVENT       2 /* Trace keyboard events */
  44. #define INPUT_DBG_MRL         4 /* MRL debugging */
  45. #define INPUT_DBG_EXT         8 /* Calls from external routines */
  46. #define INPUT_DBG_CALL       16 /* all calls */
  47. #define INPUT_DBG_LSN        32 /* LSN changes */
  48. #define INPUT_DBG_SEEK       64 /* Seeks to set location */
  49. #define INPUT_DBG_CDIO      128 /* Debugging from CDIO */
  50. #define INPUT_DBG_CDDB      256 /* CDDB debugging  */
  51. #define INPUT_DEBUG 1
  52. #if INPUT_DEBUG
  53. #define dbg_print(mask, s, args...) 
  54.    if (p_cdda->i_debug & mask) 
  55.      msg_Dbg(p_access, "%s: "s, __func__ , ##args)
  56. #else
  57. #define dbg_print(mask, s, args...)
  58. #endif
  59. #if LIBCDIO_VERSION_NUM >= 72
  60. #include <cdio/cdda.h>
  61. #include <cdio/paranoia.h>
  62. #else
  63. #define CdIo_t CdIo
  64. #endif
  65.  
  66. /*****************************************************************************
  67.  * cdda_data_t: CD audio information
  68.  *****************************************************************************/
  69. typedef struct cdda_data_s
  70. {
  71.   CdIo_t         *p_cdio;             /* libcdio CD device */
  72.   track_t        i_tracks;            /* # of tracks */
  73.   track_t        i_first_track;       /* # of first track */
  74.   track_t        i_titles;            /* # of titles in playlist */
  75.  
  76.   /* Current position */
  77.   track_t        i_track;             /* Current track */
  78.   lsn_t          i_lsn;               /* Current Logical Sector Number */
  79.  
  80.   lsn_t          first_frame;         /* LSN of first frame of this track   */
  81.   lsn_t          last_frame;          /* LSN of last frame of this track    */
  82.   lsn_t          last_disc_frame;     /* LSN of last frame on CD            */
  83.   int            i_blocks_per_read;   /* # blocks to get in a read */
  84.   int            i_debug;             /* Debugging mask */
  85.   /* Information about CD */
  86.   vlc_meta_t    *p_meta;
  87.   char *         psz_mcn;             /* Media Catalog Number */
  88.   char *         psz_source;          /* CD drive or CD image filename */
  89.   input_title_t *p_title[CDIO_CD_MAX_TRACKS]; /* This *is* 0 origin, not
  90.                              track number origin */
  91. #if LIBCDIO_VERSION_NUM >= 72
  92.   /* Paranoia support */
  93.   paranoia_mode_t e_paranoia;         /* Use cd paranoia for reads? */
  94.   cdrom_drive_t *paranoia_cd;         /* Place to store drive
  95.                      handle given by paranoia. */
  96.   cdrom_paranoia_t *paranoia;
  97. #endif
  98.  
  99. #ifdef HAVE_LIBCDDB
  100.   bool     b_cddb_enabled;      /* Use CDDB at all? */
  101.   struct  {
  102.     bool   have_info;           /* True if we have any info */
  103.     cddb_disc_t *disc;                /* libcdio uses this to get disc
  104.                      info */
  105.     int          disc_length;         /* Length in frames of cd. Used
  106.                      in CDDB lookups */
  107.   } cddb;
  108. #endif
  109.   bool   b_audio_ctl;           /* Use CD-Text audio controls and
  110.                      audio output? */
  111.   bool   b_cdtext;              /* Use CD-Text at all? If not,
  112.                      cdtext_preferred is meaningless. */
  113.   bool   b_cdtext_prefer;       /* Prefer CD-Text info over
  114.                      CDDB? If no CDDB, the issue
  115.                      is moot. */
  116.   const cdtext_t *p_cdtext[CDIO_CD_MAX_TRACKS]; /* CD-Text info. Origin is NOT
  117.                            0 origin but origin of track
  118.                            number (usually 1).
  119.                          */
  120.   WAVEHEADER   waveheader;            /* Wave header for the output data  */
  121.   bool   b_header;
  122.   bool   b_nav_mode;           /* If false we view the entire CD as
  123.                     as a unit rather than each track
  124.                     as a unit. If b_nav_mode then the
  125.                     slider area represents the Disc rather
  126.                     than a track
  127.                       */
  128.  
  129.   input_thread_t *p_input;
  130.  
  131. } cdda_data_t;
  132. /* FIXME: This variable is a hack. Would be nice to eliminate. */
  133. extern access_t *p_cdda_input;