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

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 _VIDO_SURF_H_
  36. #define _VIDO_SURF_H_
  37. #ifdef _MACINTOSH
  38. #include "hxcolor.h"
  39. #ifdef _MAC_MACHO
  40. #include <QuickTime/QuickTime.h>
  41. #else
  42. #include <ImageCodec.h> // for overlay support
  43. #endif
  44. #endif
  45. class CHXSimpleList;
  46. class HXScheduler;
  47. class CHXVideoSurface : public CHXSurface
  48. {
  49. protected:
  50.     virtual ~CHXVideoSurface();
  51.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  52. #ifdef _WINDOWS
  53.     HDC     m_hDC;
  54.     // section build
  55.     BOOL     m_bInitialized;
  56.     HDC     m_hMemoryDC;
  57.     HBITMAP     m_hOldBitmap;
  58.     HBITMAP     m_hBmpMem;
  59.     HPALETTE     m_hOldPal;
  60.     HPALETTE     m_hPal;
  61.     int     m_nMemDCWidth;
  62.     int     m_nMemDCHeight;
  63.     // draw dib
  64.     HDRAWDIB     m_hDrawDIB;
  65.     // common
  66.     UCHAR*     m_pDibBits;
  67. #ifdef _WINDOWS
  68.     HFONT     m_hFont; // Font to draw the status text with
  69.     HBRUSH     m_hStatusBrush; // Brush with status text color
  70.     HPEN     m_hNullPen; // Pen for shadow of status text
  71. #endif /* _WIN32 */
  72. #endif /* _WINDOWS */
  73.     int     m_nStatusTextHeight;// Height of the status text
  74.     CHXString     m_StatusText; // The Status Text
  75. #if defined(_MACINTOSH) || defined(_WINDOWS)
  76.     HX_MOFTAG GetFormatForDisplay(INT16* pDisplayDepth);
  77. #endif
  78. #ifdef _MACINTOSH
  79.     
  80.     friend class CHXSiteManager;
  81.     friend class CHXSiteWindowed;
  82.     
  83.     enum {
  84. kEightBitDepth = 0,
  85. kSixteenBitDepth,
  86. kThirtyTwoBitDepth,
  87. kNumberOfDepths
  88.     };
  89.     enum {
  90. kMaxMonitors = 10
  91. // make the assumption that they won't have more than 10
  92. // monitors hooked up(!)
  93.     };
  94.     
  95.     RgnHandle     m_RgnHandle;
  96.     WindowPtr      m_pWnd;
  97.     UCHAR *     m_pImageData; 
  98.     static PicHandle     sLogoPict;
  99.     static UINT16     zm_Logo_PICT_ID;
  100.     static INT32     DepthToDepthEnum(short depth);
  101.     void     DrawBackgroundPICT(void);
  102.     void     SetupClipRegion(void);
  103.     void     RestoreClipRegion(void);
  104.     BOOL      GetBitDepth(INT16 &nDepth);
  105.     
  106.     static UINT32 zm_uNumberOfAttachedDevices;
  107.     static GDHandle zm_AttachedDevice[kMaxMonitors];
  108.     
  109.     GWorldPtr m_InterimGWorld[kNumberOfDepths];
  110.     PixMapHandle m_InterimGWorldPixMap[kNumberOfDepths];
  111.     UINT16 m_uInterimGWorldWidth;
  112.     UINT16 m_uInterimGWorldHeight;
  113.     UINT16 m_uLastBlitWidth;
  114.     UINT16 m_uLastBlitHeight;
  115.     LPHXCOLORCONVERTER m_pColorConverter[kNumberOfDepths];
  116.     
  117.     void SetUpColorConverter( HXBitmapInfoHeader* pBitmapInfo, Rect* dstRect );
  118.     void UpdateColorAdjustments();
  119.     
  120.     // stuff added for interrupt-time blitting... namely, we have to convert the visRgn
  121.     // into a list of rectangles.
  122.     
  123.     CHXSimpleList* mVisRgnRects;
  124.     RgnHandle mLastVisRgn;
  125.     void CheckRectRgn( Rect r, RgnHandle rgn, Point globalOffset );
  126.     void UpdateRegionIfNecessary( Rect boundingRect, Point globalOffset, BOOL bForceItToUpdate = FALSE );
  127.     
  128.     void ReflectRectsToScreen( CHXSimpleList* theListOfRectsToBlit, const Rect& trimToThisRect, REF(CHXxRect) rSrcRect );
  129.     static void MenuRestoreCallback( Rect* theRectToRestore );
  130.     static pascal void VisRgnChangedCallback(void);
  131.     
  132.     Point m_LocalToGlobalCoords;
  133.     BOOL m_bItsOKToDoAnInterruptBlit;
  134.     
  135.     static CHXSimpleList zm_VideoSurfaceList;
  136.     
  137.     class SystemTimeRequestCallback : public IHXCallback
  138.     {
  139.     private:
  140. LONG32 m_lRefCount;
  141. ~SystemTimeRequestCallback();
  142.     public:
  143. SystemTimeRequestCallback();
  144. // IUnknown methods
  145. STDMETHOD(QueryInterface) ( THIS_ REFIID riid, void**ppvObj );
  146. STDMETHOD_(ULONG32,AddRef) ( THIS );
  147. STDMETHOD_(ULONG32,Release) ( THIS );
  148. // IHXCallback methods
  149. STDMETHOD(Func) ( THIS );
  150. BOOL m_bPending;
  151. CallbackHandle m_ulSystemTimeRequestCallbackPendingID;
  152.     };
  153.     
  154.     SystemTimeRequestCallback* m_pSystemTimeRequestCallback;
  155.     HXScheduler* m_pScheduler;
  156.     
  157.     // overlay support on the Mac
  158.     
  159.     static CHXVideoSurface* zm_pSurfaceUsingOverlay; // will be nil if there are none.
  160.     static Ptr zm_pOverlayAddress;
  161.     static LPHXCOLORCONVERTER zm_pOverlayColorConverter;
  162.     static Handle zm_ImageDescription;
  163.     static Ptr zm_pDecompressRecord;
  164.     static ImageSubCodecDecompressRecord zm_DRP;
  165.     static ComponentInstanceRecord* zm_YUV;
  166.     static Rect zm_OverlayRect;
  167.     static BOOL zm_bInitializedOverlay;
  168.     static BOOL zm_bOverlayExists;
  169.     
  170.     int m_nInCID;
  171.     BOOL m_bNaughtDrawn;
  172.     BOOL m_bNeedToPaintOverlayKeyColor;
  173.     
  174.     
  175.     static BOOL SetUpOverlay(Rect globalScreenRect, int bitmapWidth, int bitmapHeight);
  176.     static void CleanUpOverlay();
  177.     BOOL ActualOverlayStuff( Rect globalScreenRect, unsigned char* pImageData,
  178.      int bitmapWidth, int bitmapHeight, int imagePitch,
  179.      int srcLeft, int srcTop, int srcWidth, int srcHeight);
  180. public:
  181.     static BOOL OverlayExists();
  182.     
  183. protected:
  184. #endif /* _MACINTOSH */
  185.     STDMETHOD(BltImage) (UCHAR* pImageData,
  186. HXBitmapInfoHeader* pBitmapInfo,
  187. REF(CHXxRect) rDestRect,
  188. REF(CHXxRect) rSrcRect);
  189. public:
  190.     CHXVideoSurface(IUnknown* pContext, CHXSiteWindowed* pSite);
  191.     STDMETHOD(SetStatusText) (const char* pszText);
  192. #ifdef _MACINTOSH
  193.     HX_RESULT Init(); 
  194. #endif
  195. #ifdef _WINDOWS
  196.     STDMETHOD (DrawStatusText)(HDC hdc, REF(CHXxRect) rDestRect);
  197.     HX_RESULT Init(HDC hDC); 
  198.     STDMETHOD (BltImageToDC)(
  199.    HDC hDC,
  200.    UCHAR* pImageData,
  201.    HXBitmapInfoHeader* pBitmapInfo,
  202.    REF(CHXxRect) rDestRect,
  203.    REF(CHXxRect) rSrcRect);
  204.     void SetupMemDC(const CHXxRect& rDestRect);
  205. #endif /* _WINDOWS */
  206. };
  207. #endif // _VIDO_SURF_H_