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

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 _NEWRMAUDEVDS_H_
  36. #define _NEWRMAUDEVDS_H_
  37. #include "dsound.h"
  38. #include "ks.h"
  39. #include "ksmedia.h"
  40. #include "tsconvrt.h"
  41. class CHXAudioSession;
  42. class CHXAudioDevice;
  43. typedef struct _HXAudioFormat HXAudioFormat;
  44. typedef struct _HXAudioData HXAudioData;
  45. /****************************************************************************
  46.  *
  47.  *  Class:
  48.  *
  49.  *      CHXAudioDeviceDS
  50.  *
  51.  *  Purpose:
  52.  *
  53.  *      PN implementation of audio device object.
  54.  *
  55.  */
  56. class CHXAudioDeviceDS: public CHXAudioDevice
  57. {
  58. private:
  59.     IDirectSound* m_pDSDev;
  60.     IDirectSoundBuffer *m_pPrimaryBuffer, *m_pSecondaryBuffer ;
  61.     DWORD defaultChannelMapping(UINT32 ulChannels) const ;
  62. protected:
  63. WAVEFORMATEXTENSIBLE m_WaveFormat;
  64. UINT32 m_ulLastPlayCursor;
  65. UINT32 m_ulLastWriteCursor;
  66. UINT32 m_ulCurrPlayTime;
  67. UINT32 m_ulCurrLoopTime;
  68. UINT32 m_ulTotalBuffer;
  69. HWND m_hwnd;
  70. void* m_pAudioPtrStart;
  71. UINT32 m_ulLoops;
  72. double m_ulLoopTime;
  73. int m_nBlocksPerBuffer;
  74. HINSTANCE m_hSoundDll;
  75. HANDLE m_hDSNotifyEvent;
  76. HANDLE m_hWaitThread;
  77. BOOL m_bExitThread;
  78. UINT32 m_ulOriginalThreadId;
  79. CTSConverter m_TSConverter;
  80. HX_RESULT SetPrimaryBufferFormat() ;
  81. inline UINT32 CalcMs(UINT32 ulNumBytes);
  82. HANDLE GetEventHandle() { return m_hDSNotifyEvent; };
  83. BOOL GetExitCode() { return m_bExitThread; };
  84. void PostTimeSyncMessage();
  85. void KillThreadAndEvent();
  86.         static DWORD WINAPI EventThreadProc(LPVOID pVoid) ;
  87. public:
  88.     virtual ~CHXAudioDeviceDS();
  89.     CHXAudioDeviceDS();
  90.     HX_RESULT        _Imp_Open( const HXAudioFormat* pFormat );
  91.     HX_RESULT        _Imp_Close( void );
  92.     HX_RESULT     _Imp_Seek(ULONG32 ulSeekTime) {     return HXR_OK; };
  93.     HX_RESULT        _Imp_Pause( void );
  94.     HX_RESULT        _Imp_Resume( void );
  95.     HX_RESULT        _Imp_Write( const HXAudioData* pAudioOutData );
  96.     HX_RESULT        _Imp_Reset( void );
  97.     HX_RESULT       _Imp_Drain( void );
  98.     BOOL      _Imp_SupportsVolume( void ) { return TRUE; };
  99.     UINT16        _Imp_GetVolume( void );
  100.     HX_RESULT        _Imp_SetVolume( const UINT16 uVolume );
  101.     HX_RESULT        _Imp_CheckFormat( const HXAudioFormat* pFormat);
  102.     HX_RESULT      _Imp_GetCurrentTime( ULONG32& ulCurrentTime);
  103.     INT16     _Imp_GetAudioFd(void) {return 0;};
  104.     UINT16     _NumberOfBlocksRemainingToPlay(void){return 0;};
  105.     BOOL     _IsWaveOutDevice(void) { return FALSE; };
  106.     static UINT     zm_uDestroyMessage;
  107. };
  108. #endif /* _NEWRMAUDEVDS_H_ */