audirix.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 _AUDIRIX
  36. #define _AUDIRIX
  37. //-----------------------------------------------
  38. // System includes.
  39. //-----------------------------------------------
  40. #define _LANGUAGE_C_PLUS_PLUS
  41. #include <dmedia/audio.h>
  42. //------------------------------------------------
  43. // local includes
  44. //------------------------------------------------
  45. #include "hxcom.h"
  46. #include "hxslist.h"
  47. #include "audUnix.h"
  48. class CAudioOutIrix : public CAudioOutUNIX
  49. {
  50.   public:
  51.     CAudioOutIrix();
  52.     virtual ~CAudioOutIrix();
  53.   protected:
  54.     
  55.     //-------------------------------------------------------
  56.     //
  57.     // Pure virtuals from CAudioOutUNIX.
  58.     //
  59.     //-------------------------------------------------------
  60.     virtual INT16 _Imp_GetAudioFd(void);
  61.     //This ones important.
  62.     virtual ULONG32 _GetBytesActualyPlayed(void) const;
  63.     //Devic specific method to set the audio device characteristics. Sample rate,
  64.     //bits-per-sample, etc.
  65.     //Method *must* set member vars. m_unSampleRate and m_unNumChannels.
  66.     virtual HX_RESULT _SetDeviceConfig( const HXAudioFormat* pFormat );
  67.     //Device specific method to test wether or not the device supports the
  68.     //give sample rate. If the device can not be opened, or otherwise tested,
  69.     //it should return RA_AOE_DEVBUSY.
  70.     virtual HX_RESULT _CheckSampleRate( ULONG32 ulSampleRate );
  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 method to return the amount of room available on the
  89.     //audio device that can be written without blocking.
  90.     virtual HX_RESULT _GetRoomOnDevice( ULONG32& ulBytes) const;
  91.     //-----------------------------------------------
  92.     // Some helper methods.
  93.     //-----------------------------------------------
  94.   private:
  95.   
  96.     //protect the unintentional copy ctor.
  97.     CAudioOutIrix( const CAudioOutIrix& );  //Not implemented.
  98.     ALport m_pALPort;
  99.     int    m_nDevID;
  100.     int    m_nMixerID;
  101. };
  102. #endif  //_AUDIOOUTIRIX