audaix.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: audaix.h,v 1.2.42.1 2004/07/09 02:02:00 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /*******************************************************************
  50.  * audaix.h
  51.  *
  52.  * CLASS: CAudioOutAIX
  53.  *
  54.  * DESCRIPTION: Class definition for AIX/UMS-specific 
  55.  *                   implementation
  56.  *
  57.  *******************************************************************/
  58. #ifndef _AUDSOLARIS
  59. #define _AUDSOLARIS
  60. // foward decls.
  61. struct IHXCallback;
  62. class UMSBAUDDevice;
  63. #include "hxcom.h"
  64. #include "hxausvc.h"
  65. #include "auderrs.h"
  66. #include "hxaudev.h"
  67. /*
  68.  *      Used to indicate the current exported state of the virtual audio device.
  69.  */
  70. typedef enum audio_state
  71. {
  72.         RA_AOS_CLOSED,          // Normal non-playing state
  73.         RA_AOS_OPENING,         // Opened, before first audio buffer play b
  74.         RA_AOS_OPEN_PAUSED,     // Opened and paused
  75.         RA_AOS_OPEN_PLAYING,    // Opened and after first audio buffer play begins
  76.         RA_AOS_CLOSING          // We've been told to close after audio fin
  77. }       AUDIOSTATE;
  78. class CAudioOutAIX : public CHXAudioDevice
  79. {
  80. public:
  81. CAudioOutAIX();
  82. /* Create friend class for scheduled playback callback.
  83.  */
  84.         class HXPlaybackCountCb : public IHXCallback
  85.         {
  86.         private:
  87.             LONG32              m_lRefCount;
  88.                                 ~HXPlaybackCountCb();
  89.             PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  90.         public:
  91.                                 HXPlaybackCountCb(BOOL timed = TRUE);
  92.     BOOL               m_timed;
  93.             CAudioOutAIX*    m_pAudioDeviceObject;
  94.             /*
  95.              *  IUnknown methods
  96.              */
  97.             STDMETHOD(QueryInterface)   (THIS_
  98.                                             REFIID riid,
  99.                                             void** ppvObj);
  100.             STDMETHOD_(ULONG32,AddRef)  (THIS);
  101.             STDMETHOD_(ULONG32,Release) (THIS);
  102.             /*
  103.              *  IHXCallback methods
  104.              */
  105.             STDMETHOD(Func)                     (THIS);
  106.         };
  107. friend HXPlaybackCountCb;
  108. protected:
  109. virtual ~CAudioOutAIX();
  110. HX_RESULT    _Imp_Open( const HXAudioFormat* pFormat );
  111. HX_RESULT    _Imp_Close( void );
  112. HX_RESULT _Imp_Seek(ULONG32 ulSeekTime);
  113. HX_RESULT    _Imp_Pause( void );
  114. HX_RESULT    _Imp_Resume( void );
  115. HX_RESULT    _Imp_Write( const HXAudioData* pAudioOutHdr );
  116. HX_RESULT    _Imp_Reset( void );
  117. HX_RESULT   _Imp_Drain( void );
  118. BOOL  _Imp_SupportsVolume( void );
  119. UINT16 _Imp_GetVolume( void );
  120. HX_RESULT    _Imp_SetVolume( const UINT16 uVolume );
  121. HX_RESULT    _Imp_CheckFormat( const HXAudioFormat* pFormat);
  122. HX_RESULT    _Imp_GetCurrentTime( ULONG32& ulCurrentTime);
  123. INT16 _Imp_GetAudioFd(void);
  124. UINT16 _NumberOfBlocksRemainingToPlay(void);
  125. AUDIOERROR    SetDeviceConfig( const HXAudioFormat* pFormat );
  126. /* Get number of bytes played.
  127.  */
  128. void  DoTimeSyncs(void);
  129. HX_RESULT ReschedPlaybackCheck(void);
  130. private:
  131. // int m_wID; // Audio device id
  132. int mixm_wID; // Audio mixer id; used for volume control
  133. UMSBAUDDevice *         m_pAudioDevice;
  134. // HXAudioData m_rAudioHdr; // Format of audio coming out of the decoder.
  135. //    UCHAR*   m_pEbuf; // Tmp buffer for 8-bit audio conversion
  136. AUDIOSTATE m_wState;               // This is 
  137. AUDIOERROR m_wLastError;    // The last error d
  138. char m_DevName[26];  /* Flawfinder: ignore */        // audio device filename 
  139. char m_DevCtlName[26]; /* Flawfinder: ignore */      // mixer device filename
  140. BOOL m_bMixerPresent;
  141. UINT16 m_wBlockSize;
  142. int m_log; // log file of pcm
  143. ULONG32 m_ulLastNumBytes; // Number of bytes played back since last open
  144. ULONG32 m_ulBytesRemaining; // Number of bytes remaining
  145. BOOL m_bFirstWrite;  // First write
  146. ULONG32 m_ulTotalWritten;  // Total bytes written
  147. // ULONG32 m_ulFragSize; // The Fragment Size
  148. LONG32                  m_oSamples;             // UMS required # of samples
  149.         Timeval* m_pPlaybackCountCBTime;
  150.         ULONG32 m_PendingCallbackID;    // Used for fake time sync
  151.         BOOL             m_bCallbackPending;     // Used for fake time sync
  152.         BOOL                    m_paused;
  153.         CHXSimpleList*          m_pWriteList;
  154.         CHXSimpleList*          m_pTimeStampList; // List of timestamps of audio data
  155.         UINT32                  m_ulTotalNumBufs;
  156.         UINT32                  m_sample_rate;
  157.         UINT32                  m_num_channels;
  158. UINT32                  m_bits_per_sample;
  159.         UINT32                  m_ulBlocksProcessed;
  160. // long used to match UMS prototype of pass-by reference
  161. // Future implementations of UMS will take advantage of individual gain 
  162. // settings, this is not supported in this release.
  163. long                    m_lRightGain, m_lLeftGain;
  164. const HXAudioFormat *  m_pAudioFormat;
  165. };
  166. #endif  // _AUDAIX