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

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