audlinux_oss.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 _AUDLINUX
  36. #define _AUDLINUX
  37. //-----------------------------------------------
  38. // System includes.
  39. //-----------------------------------------------
  40. #if defined( _LINUX ) && !defined( __powerpc__ )  && !defined __alpha && !defined __sparc__
  41. #include "linux/soundcard.h"
  42. #elif defined(__powerpc__)
  43. #include "sys/soundcard.h"
  44. #elif defined _NETBSD
  45. #include "soundcard.h"
  46. #elif defined _FREEBSD || defined __alpha || defined __sparc__
  47. #include "machine/soundcard.h"
  48. #else 
  49. #include "machine/soundcard.h"
  50. #endif
  51. //------------------------------------------------
  52. // local includes
  53. //------------------------------------------------
  54. #include "hxcom.h"
  55. #include "hxslist.h"
  56. #include "audUnix.h"
  57. class CAudioOutLinux : public CAudioOutUNIX
  58. {
  59.   public:
  60.     CAudioOutLinux();
  61.     virtual ~CAudioOutLinux();
  62.   protected:
  63.     
  64.     //-------------------------------------------------------
  65.     //
  66.     // Pure virtuals from CAudioOutUNIX.
  67.     //
  68.     //-------------------------------------------------------
  69.     virtual INT16 _Imp_GetAudioFd(void);
  70.     //This ones important.
  71.     virtual UINT64 _GetBytesActualyPlayed(void) const;
  72.     //Devic specific method to set the audio device characteristics. Sample rate,
  73.     //bits-per-sample, etc.
  74.     //Method *must* set member vars. m_unSampleRate and m_unNumChannels.
  75.     virtual HX_RESULT _SetDeviceConfig( const HXAudioFormat* pFormat );
  76.     //Device specific method to test wether or not the device supports the
  77.     //give sample rate. If the device can not be opened, or otherwise tested,
  78.     //it should return RA_AOE_DEVBUSY.
  79.     virtual HX_RESULT _CheckSampleRate( ULONG32 ulSampleRate );
  80.     virtual HX_RESULT _CheckFormat( const HXAudioFormat* pFormat );
  81.     //Device specific method to write bytes out to the audiodevice and return a
  82.     //count of bytes written. 
  83.     virtual HX_RESULT _WriteBytes( UCHAR* buffer, ULONG32 ulBuffLength, LONG32& lCount );
  84.     //Device specific methods to open/close the mixer and audio devices.
  85.     virtual HX_RESULT _OpenAudio();
  86.     virtual HX_RESULT _CloseAudio();
  87.     virtual HX_RESULT _OpenMixer();
  88.     virtual HX_RESULT _CloseMixer();
  89.     //Device specific method to reset device and return it to a state that it 
  90.     //can accept new sample rates, num channels, etc.
  91.     virtual HX_RESULT _Reset();
  92.     virtual HX_RESULT _Pause();
  93.     virtual HX_RESULT _Resume();
  94.     //Device specific method to get/set the devices current volume.
  95.     virtual UINT16    _GetVolume() const;
  96.     virtual HX_RESULT _SetVolume(UINT16 volume);
  97.     //Device specific method to drain a device. This should play the remaining
  98.     //bytes in the devices buffer and then return.
  99.     virtual HX_RESULT _Drain();
  100.     //Device specific method to return the amount of room available on the
  101.     //audio device that can be written without blocking.
  102.     virtual HX_RESULT _GetRoomOnDevice( ULONG32& ulBytes) const;
  103.     //-----------------------------------------------
  104.     // Some helper methods.
  105.     //-----------------------------------------------
  106.     void _SyncUpTimeStamps(ULONG32 lCount=0);
  107.     
  108.   private:
  109.   
  110.     //protect the unintentional copy ctor.
  111.     CAudioOutLinux( const CAudioOutLinux& );  //Not implemented.
  112.     ULONG32 m_ulLastTimeStamp;
  113.     ULONG32 m_ulTickCount;
  114.     UINT64  m_ulPausePosition;
  115.     UINT64  m_ulLastBytesPlayed;
  116.     int  m_nDevID;
  117.     int  m_nMixerID;
  118.     mutable BOOL m_bGetODelayFailed;
  119.     mutable BOOL m_bGetOSpaceFailed;
  120.     BOOL m_bTestGetODelay;
  121. };
  122. #endif  //_AUDIOOUTLINUX