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

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: PWSubChannel96.h,v $
  21.  * Revision 1.5  1999/04/05 11:04:48  mueller
  22.  * Added decoding of media catalog number and ISRC code.
  23.  *
  24.  * Revision 1.4  1999/03/27 20:58:55  mueller
  25.  * Added various access functions.
  26.  *
  27.  * Revision 1.3  1998/09/27 19:19:39  mueller
  28.  * Added retrieval of control nibbles for track with 'analyzeTrack()'.
  29.  *
  30.  * Revision 1.2  1998/08/30 19:10:32  mueller
  31.  * Added handling of Catalog Number and ISRC codes.
  32.  *
  33.  * Revision 1.1  1998/08/29 21:32:27  mueller
  34.  * Initial revision
  35.  *
  36.  *
  37.  */
  38. #ifndef __PW_SUB_CHANNEL_96_H__
  39. #define __PW_SUB_CHANNEL_96_H__
  40. #include "SubChannel.h"
  41. class PWSubChannel96 : public SubChannel {
  42. public:
  43.   enum Channel { P_CHAN = 7, Q_CHAN = 6 };
  44.   PWSubChannel96();
  45.   PWSubChannel96(unsigned char *buf);
  46.   ~PWSubChannel96();
  47.   // virtual constructors:
  48.   // create sub channel with specified q-mode
  49.   SubChannel *makeSubChannel(Type);
  50.   // create sub channel with reading sub channel data from given buffer
  51.   SubChannel *makeSubChannel(unsigned char *);
  52.   // initialize sub-channel from given buffer (96 bytes)
  53.   void init(unsigned char *);
  54.   void type(unsigned char); // set Q type
  55.   Type type() const;        // returns Q mode type
  56.   long dataLength() const; // returns number of sub channel bytes
  57.   void pChannel(int); // sets P channel bit
  58.   void ctl(int);     // sets control flags
  59.   unsigned char ctl() const; // return control nibbles in bits 0-3
  60.   void trackNr(int); // sets track number (QMODE1DATA)
  61.   int trackNr() const; // returns track number (QMODE1DATA)
  62.   
  63.   void indexNr(int); // sets index number (QMODE1DATA)
  64.   int indexNr() const; // returns index number (QMODE1DATA)
  65.   void point(int);   // sets point filed (QMODE1TOC)
  66.   void min(int);     // track relative time (QMODE1TOC, QMODE1DATA)
  67.   int min() const;
  68.   void sec(int);     // track relative time (QMODE1TOC, QMODE1DATA)
  69.   int sec() const;
  70.   void frame(int);   // track relative time (QMODE1TOC, QMODE1DATA)
  71.   int frame() const;
  72.   void amin(int);    // absolute time (QMODE1DATA)
  73.   int amin() const;
  74.   void asec(int);    // absolute time (QMODE1DATA)
  75.   int asec() const;
  76.   void aframe(int);  // absolute time (QMODE1DATA)
  77.   int aframe() const;
  78.   void pmin(int);    // track start time (QMODE1TOC)
  79.   void psec(int);    // track start time (QMODE1TOC)
  80.   void pframe(int);  // track start time (QMODE1TOC)
  81.   // sets raw R-W channels from 72 byte buffer
  82.   void setRawRWdata(const unsigned char *); 
  83.   
  84.   // gets raw R-W channels to 72 byte buffer
  85.   void getRawRWdata(unsigned char *) const;
  86.   void print() const;
  87.   void calcCrc(); // calculates crc and stores it in crc fields
  88.   int checkCrc() const;
  89.   void catalog(char, char, char, char, char, char, char, char, char, char,
  90.        char, char, char);
  91.   const char *catalog() const;
  92.   void isrc(char, char, char, char, char, char, char, char, char, char, char,
  93.     char);
  94.   const char *isrc() const;
  95.   const unsigned char *data() const;
  96. protected:
  97.   unsigned char data_[96]; // P - W sub channel data
  98. private:
  99.   void setChannelByte(Channel, int byteNr, unsigned char value);
  100.   unsigned char getChannelByte(Channel, int byteNr) const;
  101. };
  102. #endif