audSolaris.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _AUDSOLAR
  36. #define _AUDSOLAR
  37. //-----------------------------------------------
  38. // System includes.
  39. //-----------------------------------------------
  40. #include <sys/audioio.h>
  41. //------------------------------------------------
  42. // local includes
  43. //------------------------------------------------
  44. #include "hxcom.h"
  45. #include "hxslist.h"
  46. #include "audUnix.h"
  47. class CAudioOutSolaris : public CAudioOutUNIX
  48. {
  49.   public:
  50.     CAudioOutSolaris();
  51.     virtual ~CAudioOutSolaris();
  52.   protected:
  53.     
  54.     //-------------------------------------------------------
  55.     //
  56.     // Pure virtuals from CAudioOutUNIX.
  57.     //
  58.     //-------------------------------------------------------
  59.     virtual INT16 _Imp_GetAudioFd(void);
  60.     //This ones important.
  61.     virtual UINT64 _GetBytesActualyPlayed(void) const;
  62.     //Devic specific method to set the audio device characteristics. Sample rate,
  63.     //bits-per-sample, etc.
  64.     //Method *must* set member vars. m_unSampleRate and m_unNumChannels.
  65.     virtual HX_RESULT _SetDeviceConfig( const HXAudioFormat* pFormat );
  66.     //Device specific method to test whether or not the device supports the
  67.     //give sample rate. If the device can not be opened, or otherwise tested,
  68.     //it should return RA_AOE_DEVBUSY.
  69.     virtual HX_RESULT _CheckSampleRate( ULONG32 ulSampleRate );
  70.     virtual HX_RESULT _CheckFormat( const HXAudioFormat* pFormat );
  71.     //Device specific method to write bytes out to the audiodevice and return a
  72.     //count of bytes written. 
  73.     virtual HX_RESULT _WriteBytes( UCHAR* buffer, ULONG32 ulBuffLength, LONG32& lCount );
  74.     //Device specific methods to open/close the mixer and audio devices.
  75.     virtual HX_RESULT _OpenAudio();
  76.     virtual HX_RESULT _CloseAudio();
  77.     virtual HX_RESULT _OpenMixer();
  78.     virtual HX_RESULT _CloseMixer();
  79.     //Device specific method to reset device and return it to a state that it 
  80.     //can accept new sample rates, num channels, etc.
  81.     virtual HX_RESULT _Reset();
  82.     //Device specific method to get/set the devices current volume.
  83.     virtual UINT16    _GetVolume() const;
  84.     virtual HX_RESULT _SetVolume(UINT16 volume);
  85.     //Device specific method to drain a device. This should play the remaining
  86.     //bytes in the devices buffer and then return.
  87.     virtual HX_RESULT _Drain();
  88.     //Device specific methods to Pause/Resume the device. If a device can't handle
  89.     //the pause/resume in hardware then it must return RA_AOE_NOTSUPPORTED, the
  90.     //default. In this case we use a 'rollback' method.
  91.     virtual HX_RESULT _Pause();
  92.     virtual HX_RESULT _Resume();
  93.     //Device specific method to return the amount of room available on the
  94.     //audio device that can be written without blocking.
  95.     virtual HX_RESULT _GetRoomOnDevice( ULONG32& ulBytes) const;
  96.     BOOL _IsSelectable() const;
  97.     BOOL _HardwarePauseSupported() const;
  98.     
  99.   private:
  100.     //We use this to break up the write into smaller chunks inserting
  101.     //EOFs into the stream.
  102.     ULONG32 _WriteWithEOF( UCHAR* buffer, ULONG32 bufflen );
  103.     
  104.     //protect the unintentional copy ctor.
  105.     CAudioOutSolaris( const CAudioOutSolaris& );  //Not implemented.
  106.     //We break up each write of m_wBlockSize into this many chunks. We
  107.     //count the chunks with the EOF write markers. Yummy.
  108.     const int m_nBlockDivisions;
  109.     int m_nDevID;
  110.     int m_nMixerID;
  111. };
  112. #endif  //_AUDSOLAR