vidrendf.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-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 __VIDRENDF_H__
  36. #define __VIDRENDF_H__
  37. /****************************************************************************
  38.  *  Includes
  39.  */
  40. #include "hxtypes.h"
  41. #include "hxcom.h"
  42. #include "hxslist.h"
  43. #include "hxwintyp.h"
  44. #include "hxcomm.h"
  45. #include "ihxpckts.h"
  46. #include "hxthread.h"
  47. #include "hxvsurf.h"
  48. #include "chxbufpl.h"
  49. #include "cringbuf.h"
  50. #include "mdpkt.h"
  51. /****************************************************************************
  52.  *  Globals
  53.  */
  54. class CVideoRenderer;
  55. /****************************************************************************
  56.  *  CVideoFormat
  57.  */
  58. class CVideoFormat
  59. {
  60. public:
  61.     /*
  62.      * Constructor/Destructor
  63.      */
  64.     CVideoFormat(IHXCommonClassFactory* pCommonClassFactory,
  65.  CVideoRenderer* pVideoRenderer);
  66.     /*
  67.      * IUnknown methods
  68.      */
  69.     STDMETHOD(QueryInterface) (THIS_
  70. REFIID riid,
  71. void** ppvObj);
  72.     STDMETHOD_(ULONG32,AddRef) (THIS);
  73.     STDMETHOD_(ULONG32,Release) (THIS);
  74.     /*
  75.      * Public but Fixed Core functionality - not deriveable
  76.      */
  77.     BOOL Enqueue(IHXPacket* pCodecData);
  78.     void ReturnAssembledPacket(CMediaPacket* pFramePacket);
  79.     HX_RESULT Requeue(CMediaPacket* pFramePacket);
  80.     CMediaPacket* Dequeue(void);
  81.     BOOL DecodeFrame(void);
  82.     BOOL ReturnDecodedPacket(CMediaPacket* pDecodedPacket);
  83.     void OnRawPacketsEnded(void)    { m_bRawPacketsDone = TRUE; }
  84.     BOOL GetNextFrameTime(UINT32 &ulTime)
  85.     {
  86. BOOL bRetVal = FALSE;
  87. CMediaPacket* pFrame = PeekOutQueueHeadPacket();
  88. if (pFrame)
  89. {
  90.     ulTime = pFrame->m_ulTime;
  91.     bRetVal = TRUE;
  92. }
  93. return bRetVal;
  94.     }
  95.     BOOL IsNextFrameSkippable(BOOL &bIsSkippable)
  96.     {
  97. BOOL bRetVal = FALSE;
  98. CMediaPacket* pFrame = PeekOutQueueHeadPacket();
  99. if (pFrame)
  100. {
  101.     bIsSkippable = IsFrameSkippable(pFrame);
  102.     bRetVal = TRUE;
  103. }
  104. return bRetVal;
  105.     }
  106.     CHXBufferPool* GetFramePool(void) { return m_pFramePool; }
  107.     virtual void OnDecodedPacketRelease(CMediaPacket* &pPacket);
  108.     ULONG32 GetAssembledPacketQueueDepth(void) { return m_InputQueue.GetCount(); }
  109.     ULONG32 GetDecodedFrameQueueDepth(void) { return m_pOutputQueue->Count(); }
  110.     void AdjustDecodedFrameQueueCapacity(LONG32 ulMaxCount)
  111.     {
  112. m_pOutputQueue->SetMaxCount(ulMaxCount);
  113.     }
  114.     void SetStartTime(ULONG32 ulTime) { m_ulStartTime = ulTime; }
  115.     ULONG32 GetStartTime(void) { return m_ulStartTime; }
  116.     void SuspendDecode(BOOL bSuspend) { m_bDecodeSuspended = bSuspend; }
  117.     BOOL IsDecodeSuspended(void) { return m_bDecodeSuspended; }
  118.     BOOL AreRawPacketsDone(void) { return m_bRawPacketsDone; }
  119.     /*
  120.      * Public and Customizable functionality - derive to customize
  121.      */
  122.     virtual HX_RESULT Init(IHXValues* pHeader);
  123.     virtual BOOL IsFrameSkippable(CMediaPacket* pFrame)
  124.     {
  125. return (pFrame->m_pSampleDesc == NULL);
  126.     }
  127.     virtual void Reset(void);
  128.     virtual HX_RESULT InitBitmapInfoHeader(HXBitmapInfoHeader &BitmapInfoHeader,
  129.    CMediaPacket* pVideoPacket);
  130.     
  131.     virtual BOOL IsBitmapFormatChanged(HXBitmapInfoHeader &BitmapInfoHeader,
  132.        CMediaPacket* pVideoPacket)
  133.     {
  134. return (pVideoPacket->m_pSampleDesc != NULL);
  135.     }
  136.     virtual ULONG32 GetDefaultPreroll(IHXValues* pValues);
  137.     virtual ULONG32 GetMinimumPreroll(IHXValues* pValues);
  138.     virtual ULONG32 GetMaximumPreroll(IHXValues* pValues);
  139.     virtual const char** GetMimeTypes(void);
  140.     virtual ULONG32 GetMaxDecodedFrames(void);
  141.     HX_RESULT GetLastError();
  142. protected:
  143.     virtual ~CVideoFormat();
  144.     /*
  145.      * Protected but Customizable functionality - derive to customize
  146.      */
  147.     virtual CHXBufferPool* CreateBufferPool(void);
  148.     virtual CMediaPacket* CreateAssembledPacket(IHXPacket* pPayloadData);
  149.     virtual CMediaPacket* CreateDecodedPacket(CMediaPacket* pCodedPacket);
  150.     /*
  151.      * Usable from the derived renderer format
  152.      */
  153.     IHXCommonClassFactory* m_pCommonClassFactory;
  154.     IHXValues* m_pHeader;
  155.     CHXBufferPool* m_pFramePool;
  156.     HX_RESULT m_LastError;
  157. private:
  158.     /*
  159.      * Private and Fixed functionality
  160.      */
  161.     void _Reset(void);
  162.     CMediaPacket* PeekOutQueueHeadPacket(void)
  163.     {
  164. return (CMediaPacket*) m_pOutputQueue->Peek();
  165.     }
  166.     void FlushOutputQueue(void);
  167.     /*
  168.      * Controls of the renderer format packet pump
  169.      */
  170.     HXMutex* m_pMutex;
  171.     HXMutex* m_pAssemblerMutex;
  172.     HXMutex* m_pDecoderMutex;
  173.     CHXSimpleList m_InputQueue;
  174.     CRingBuffer* m_pOutputQueue;
  175.     LONG32 m_lMaxBufferedDecodedFrames;
  176.     ULONG32 m_ulStartTime;
  177.     BOOL m_bDecodeSuspended;
  178.     BOOL m_bRawPacketsDone;
  179.     CVideoRenderer* m_pVideoRenderer;
  180.     LONG32 m_lRefCount;
  181. };
  182. #endif // __VIDRENDF_H__