SoundIF-none.cc
上传用户: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: SoundIF-none.cc,v $
  21.  * Revision 1.1  1999/05/24 18:07:11  mueller
  22.  * Initial revision
  23.  *
  24.  */
  25. /*
  26.  * Dummy sound interface for platforms that are not supported, yet.
  27.  * May serve as template for new implementations.
  28.  */
  29. #include "SoundIF.h"
  30. #include "Sample.h"
  31. #include "util.h"
  32. class SoundIFImpl {
  33. public:
  34.   SoundIFImpl() { dspFd_ = -1; }
  35.   int setupDevice();
  36.   int openDevice();
  37.   void closeDevice();
  38.   int dspFd_; // sound device
  39. };
  40. SoundIF::SoundIF()
  41. {
  42.   impl_ = new SoundIFImpl;
  43. }
  44. SoundIF::~SoundIF()
  45. {
  46.   delete impl_;
  47.   impl_ = NULL;
  48. }
  49. // Initializes sound interface.
  50. // return: 0: OK
  51. //         1: sounde device not found
  52. //         2: cannot setup sound device
  53. int SoundIF::init()
  54. {
  55.   if (impl_->openDevice() != 0)
  56.     return 1;
  57.   if (impl_->setupDevice() != 0) {
  58.     impl_->closeDevice();
  59.     return 2;
  60.   }
  61.   impl_->closeDevice();
  62.   return 0;
  63. }
  64. // Acquires sound device for playing.
  65. // return 0: OK
  66. //        1: error occured
  67. int SoundIF::start()
  68. {
  69.   if (impl_->dspFd_ >= 0)
  70.     return 0; // already opened
  71.   if (impl_->openDevice() != 0)
  72.     return 1;
  73.   if (impl_->setupDevice() != 0) {
  74.     impl_->closeDevice();
  75.     return 1;
  76.   }
  77.   return 0;
  78. }
  79. // Playes given sample buffer.
  80. // return: 0: OK
  81. //         1: error occured
  82. int SoundIF::play(Sample *sbuf, long nofSamples)
  83. {
  84.   if (impl_->dspFd_ < 0)
  85.     return 1;
  86.   // ...
  87.   
  88.   return 0;
  89. }
  90. unsigned long SoundIF::getDelay()
  91. {
  92.   if (impl_->dspFd_ < 0)
  93.     return 1;
  94.   // ...
  95.   return 0;
  96. }
  97. // Finishs playing, sound device is released.
  98. void SoundIF::end()
  99. {
  100.   impl_->closeDevice();
  101. }
  102. int SoundIFImpl::openDevice()
  103. {
  104.   if (dspFd_ >= 0)
  105.     return 0; // already open
  106.   // ...
  107.   return 1;
  108. }
  109.     
  110. void SoundIFImpl::closeDevice()
  111. {
  112.   if (dspFd_ >= 0) {
  113.     // ...
  114.     dspFd_ = -1;
  115.   }
  116. }
  117. int SoundIFImpl::setupDevice()
  118. {
  119.   if (dspFd_ < 0)
  120.     return 1;
  121.   
  122.   // ...
  123.   return 0;
  124. }