GenericMMCraw.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: GenericMMCraw.h,v $
  21.  * Revision 1.7  1999/04/05 11:04:10  mueller
  22.  * Added driver option flags.
  23.  *
  24.  * Revision 1.6  1999/03/27 20:51:05  mueller
  25.  * Adapted to changed writing interface.
  26.  *
  27.  * Revision 1.5  1998/10/03 15:07:53  mueller
  28.  * Moved 'writeZeros()' to base class 'CdrDriver'.
  29.  *
  30.  * Revision 1.4  1998/09/27 19:19:18  mueller
  31.  * Added retrieval of control nibbles for track with 'analyzeTrack()'.
  32.  * Added multi session mode.
  33.  *
  34.  * Revision 1.3  1998/09/22 19:15:13  mueller
  35.  * Removed memory allocations during write process.
  36.  *
  37.  * Revision 1.2  1998/08/30 19:16:51  mueller
  38.  * Added support for different sub-channel data formats.
  39.  * Now 16 byte PQ sub-channel and 96 byte raw P-W sub-channel is
  40.  * supported.
  41.  *
  42.  * Revision 1.1  1998/08/25 19:29:03  mueller
  43.  * Initial revision
  44.  *
  45.  */
  46. #ifndef __GENERIC_MMC_RAW_H__
  47. #define __GENERIC_MMC_RAW_H__
  48. #include "GenericMMC.h"
  49. #include "PQChannelEncoder.h"
  50. class GenericMMCraw : public GenericMMC, private PQChannelEncoder {
  51. public:
  52.   GenericMMCraw(ScsiIf *scsiIf, unsigned long options);
  53.   ~GenericMMCraw();
  54.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  55.   int multiSession(int);
  56.   int initDao(const Toc *);
  57.   int startDao();
  58.   int finishDao();
  59.   int writeData(TrackData::Mode, long &lba, const char *buf, long len);
  60. protected:
  61.   
  62.   int setWriteParameters(int);
  63. private:  
  64.   unsigned char *encodeBuffer_; // buffer for encoding sub-channels
  65.   SubChannel *subChannel_; // sub channel template
  66.   long nextWritableAddress();
  67. };
  68. #endif