PlextorReaderScan.h
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 1998  Andreas Mueller <mueller@daneb.ping.de>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19. /*
  20.  * $Log: PlextorReaderScan.h,v $
  21.  * Revision 1.4  1999/04/05 18:49:22  mueller
  22.  * Added driver options.
  23.  * Added option to read Q sub-channel data instead of raw PW sub-channel
  24.  * data for 'read-toc'.
  25.  *
  26.  * Revision 1.3  1999/03/27 20:56:39  mueller
  27.  * Changed toc analysis interface.
  28.  * Added support for toc analysis of data disks.
  29.  *
  30.  * Revision 1.2  1998/09/27 19:20:05  mueller
  31.  * Added retrieval of control nibbles for track with 'analyzeTrack()'.
  32.  *
  33.  * Revision 1.1  1998/09/07 15:15:40  mueller
  34.  * Initial revision
  35.  *
  36.  */
  37. #ifndef __PLEXTOR_READER_SCAN_H__
  38. #define __PLEXTOR_READER_SCAN_H__
  39. #include "PlextorReader.h"
  40. #define OPT_PLEX_USE_PQ       0x0001 // use PQ sub-channel data for scanning
  41. #define OPT_PLEX_PQ_BCD       0x0002 // PQ sub-channel contains BCD numbers
  42. #define OPT_PLEX_READ_ISRC    0x0004 // force reading of ISRC code with
  43.                                      // READ SUB CHANNEL instead taking it from
  44.                                      // the sub-channel data
  45. class PlextorReaderScan : public PlextorReader {
  46. public:
  47.   PlextorReaderScan(ScsiIf *scsiIf, unsigned long options);
  48.   ~PlextorReaderScan();
  49.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  50.   Toc *readDisk(int session, const char *);
  51. protected:
  52.   int analyzeTrack(TrackData::Mode, int trackNr, long startLba, long endLba,
  53.    Msf *index,
  54.    int *indexCnt, long *pregap, char *isrcCode,
  55.    unsigned char *ctl);
  56.   int readSubChannels(long lba, long len, SubChannel ***, Sample *);
  57.   int readAudioRange(int fd, long start, long end, int startTrack,
  58.      int endTrack, TrackInfo *);
  59. };
  60. #endif