PQChannelEncoder.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: PQChannelEncoder.h,v $
  21.  * Revision 1.2  1998/08/30 19:10:32  mueller
  22.  * Added handling of Catalog Number and ISRC codes.
  23.  *
  24.  * Revision 1.1  1998/08/25 19:29:27  mueller
  25.  * Initial revision
  26.  *
  27.  */
  28. #ifndef __PQ_CHANNEL_ENCODER_H__
  29. #define __PQ_CHANNEL_ENCODER_H__
  30. #include "Msf.h"
  31. #include "SubChannel.h"
  32. struct CueSheetEntry {
  33.   unsigned char ctlAdr;
  34.   unsigned char trackNr;
  35.   unsigned char indexNr;
  36.   unsigned char dataForm;
  37.   unsigned char scms;
  38.   unsigned char min;
  39.   unsigned char sec;
  40.   unsigned char frame;
  41. };
  42. class PQChannelEncoder {
  43. public:
  44.   PQChannelEncoder();
  45.   ~PQChannelEncoder();
  46.   // sets cue sheet and initializes the module, 'len' is length of cure
  47.   // sheet in bytes
  48.   int setCueSheet(SubChannel *, unsigned char discType,
  49.   const unsigned char *, int len,
  50.   const Msf &leadInStart);
  51.   // encodes 'blocks' blocks of data in 'in' and places them appended by
  52.   // PQ sub channel data in caller provided buffer 'out'
  53.   void encode(long lba, unsigned char *in, long blocks, unsigned char *out);
  54. private:
  55.   SubChannel *subChannel_; // template for all sub channel objects
  56.   CueSheetEntry *cueSheet_;
  57.   int cueSheetLen_;
  58.   unsigned char discType_;
  59.   int firstTrackNr_;
  60.   int lastTrackNr_;
  61.   Msf leadOutStart_;
  62.   CueSheetEntry *actCueSheetEntry_;
  63.   long trlba_; // track relative lba
  64.   long abslba_;  // absolute lba on disc
  65.   long nextTransitionLba_;
  66.   long nextTrackStartLba_;
  67.   SubChannel **toc_;
  68.   int tocLen_;
  69.   int actTocEnt_; // actual toc entry 
  70.   int actTocCount_; // counter for reapeating each toc entry three times
  71.   SubChannel *catalog_;
  72.   int writeCatalog_;
  73.   int deferredCatalog_;
  74.   SubChannel *isrc_;
  75.   int writeIsrc_;
  76.   int deferredIsrc_;
  77.   SubChannel *current_;
  78.   int analyzeCueSheet();
  79.   const SubChannel *encodeSubChannel(long lba);
  80.   void nextTransition();
  81.   CueSheetEntry *nextCueSheetEntry(CueSheetEntry *act, int adr);
  82.   CueSheetEntry *nextCueSheetEntry(CueSheetEntry *act, int trackNr,
  83.    int indexNr);
  84. };
  85. #endif