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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2003 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 _AUDIO_SESSION_H_
  36. #define _AUDIO_SESSION_H_
  37. #include <e32base.h>
  38. #include <MdaAudioOutputStream.h>
  39. #include <mda/common/audio.h>
  40. #include <stdio.h>
  41. #include "../audio_svr.h"
  42. #include "hxslist.h"
  43. class CHXSimpleList;
  44. class HXSymbianAudioTimeline
  45. {
  46. public:
  47.     HXSymbianAudioTimeline();
  48.     ~HXSymbianAudioTimeline();
  49.     
  50.     void Reset(UINT32 ulByteRate); // called to reset the state of this object
  51.     void OnWrite(UINT32 ulBytes); // called when bytes are written to the device
  52.     UINT32 GetPlaybackTime(); // Returns current playback time
  53.     UINT32 GetWrittenTime() const;   // Returns number of ms of data written
  54.     UINT32 GetWallclockTime() const; // Returns number of ms elapsed since the first
  55.                                      // non-zero device position was returned
  56.     void OnPlay();
  57.     void OnPauseOrUnderflow();
  58.     inline BOOL NeedDeviceTime() const;
  59.     void SetDeviceTime(UINT32 ulDeviceTimeMs);
  60. private:
  61.     inline UINT32 GetMs(UINT32 ulSec, UINT32 ulSubSec) const; // Computes milliseconds
  62.     void ClearWritten(); // Clears written bytes state
  63.     
  64.     UINT32 m_ulByteRate;        // Bytes/second of audio data. 
  65.                                 // Stereo 44100 16 bit audio would be 176400
  66.     UINT32 m_ulSecWritten;      // Seconds of data written
  67.     UINT32 m_ulSubSecBytes;     // Fraction of a second written in bytes.
  68.     UINT32 m_ulBaseSec;         // Base time seconds
  69.     UINT32 m_ulBaseSubSecBytes; // Base time fraction in bytes
  70.     UINT32 m_ulLastGetTime; // return value of last GetTime() call.
  71.                             // This is used to force monotonically increasing
  72.                             // time values.
  73.     UINT32 m_ulDevTimeMs;   // First non-zero position returned from the device
  74.     UINT32 m_ulWallclockTime; // Wallclock time associated with m_ulDevTimeMs
  75. };
  76. /*
  77.  * class HXSymbianAudioSession
  78.  *
  79.  */
  80. class HXSymbianAudioSession : public CSession,
  81.       public MMdaAudioOutputStreamCallback { 
  82. public:
  83.     HXSymbianAudioSession(RThread& client, HXSymbianAudioServer* pServer);
  84.     virtual ~HXSymbianAudioSession();
  85.     static HXSymbianAudioSession* NewL(RThread& client,
  86.        HXSymbianAudioServer* pServer);
  87.     virtual void ServiceL(const RMessage& mesg);
  88.     void NotifyDeviceTaken();
  89. protected:
  90.     void Init();
  91.     void Play();
  92.     void Pause();
  93.     void Write();
  94.     void GetTime();
  95.     void GetBlocksBuffered();
  96.     void SetVolume();
  97.     void GetVolume();
  98.     void GetMaxVolume();
  99.     void GetMinVolume();
  100.     void Stop();
  101.     void RequestDeviceTakenNotification();
  102.     void CancelDeviceTakenNotification();
  103.     virtual void MaoscOpenComplete(TInt aError);
  104.     virtual void MaoscBufferCopied(TInt aError, const TDesC8& aBuffer);
  105.     virtual void MaoscPlayComplete(TInt aError);
  106.     void DoCleanup();
  107.     UINT32 GetByteRate() const;
  108.     UINT32 GetDeviceMs();
  109.     BOOL ReadyToWrite() const;
  110.     TInt WriteNextBuffer();
  111. private:
  112. // audio request server
  113.     HXSymbianAudioServer* m_pServer;
  114. // audio stream interface
  115.     CMdaAudioOutputStream* m_pStream;
  116. // audio device sample rate
  117.     TMdaAudioDataSettings::TAudioCaps m_sampleRate;
  118. // audio device channels
  119.     TMdaAudioDataSettings::TAudioCaps m_channels;
  120. // audio settings
  121.     TMdaAudioDataSettings m_settings; 
  122. // temp data pointer
  123.     TPtr8 m_pData;
  124. // async write message
  125.     RMessage m_writeMessage;
  126.     RMessage m_notifyRequest;
  127. // flag indication notification requested
  128.     bool m_wantsNotify;
  129. // reason device was taken
  130.     int m_reason;
  131. // true if device has been opened
  132.     bool m_open;
  133. // true if Complete() called on Write() msg
  134.     bool m_writeComplete;
  135.     HXSymbianAudioTimeline m_timeline;
  136.     CHXSimpleList m_bufferList;
  137.     BOOL m_bPaused;
  138.     BOOL m_bWritePending;
  139. };
  140. #endif // _AUDIO_SESSION_H_