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

Symbian

开发平台:

Visual 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 _DUNITPRVT_H_
  36. #define _DUNITPRVT_H_
  37. #include "hxcom.h"
  38. #include "hxacodec.h"
  39. /****************************************************************************
  40.  * 
  41.  *  Interface:
  42.  *
  43.  * IPrepareDecoderUnit
  44.  *
  45.  *  Purpose:
  46.  *
  47.  * Interface for Decoder Unit object preparation. Used by encoder.
  48.  *
  49.  *  IID_IPrepareDecoderUnit
  50.  *
  51.  * {655DD923-03AB-45b2-B91E-0F4657EC9DC3}
  52.  *
  53.  */
  54. DEFINE_GUID(IID_IPrepareDecoderUnit,
  55. 0x655dd923, 0x3ab, 0x45b2, 0xb9, 0x1e, 0xf, 0x46, 0x57, 0xec, 0x9d, 0xc3);
  56. #undef  INTERFACE
  57. #define INTERFACE   IPrepareDecoderUnit
  58. DECLARE_INTERFACE_(IPrepareDecoderUnit, IQueryDecoderUnit)
  59. {
  60.     /*
  61.      * IUnknown methods
  62.      */
  63.     STDMETHOD(QueryInterface) (THIS_
  64. REFIID riid,
  65. void** ppvObj) PURE;
  66.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  67.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  68.     /*
  69.      * IQueryDecoderUnit methods
  70.      */
  71.     STDMETHOD(getData) (THIS_
  72. const char*& data, UINT32& nBytes, UINT32& nSamples) CONSTMETHOD PURE ;
  73.     STDMETHOD_(INT32,getBufferFullness) (THIS_) CONSTMETHOD PURE ;
  74.     /*
  75.      * IPrepareDecoderUnit methods
  76.      */
  77.     STDMETHOD(putData) (THIS_
  78. const char *data, UINT32 nBytes, UINT32 nSamples) PURE ;
  79.     STDMETHOD(setBufferFullness) (THIS_
  80.                 INT32 bfm) PURE ;
  81.     STDMETHOD(setFlags) (THIS_
  82. FLAGS f) PURE ;
  83. };
  84. class CDecoderUnit : public IPrepareDecoderUnit
  85. {
  86. public:
  87.     CDecoderUnit() ;
  88.     ~CDecoderUnit() ;
  89.     /*
  90.      * IUnknown methods
  91.      */
  92.     STDMETHOD(QueryInterface) (THIS_
  93. REFIID riid,
  94. void** ppvObj) ;
  95.     STDMETHOD_(ULONG32,AddRef) (THIS) ;
  96.     STDMETHOD_(ULONG32,Release) (THIS) ;
  97.     /*
  98.      * IQueryDecoderUnit methods
  99.      */
  100.     STDMETHOD(getData) (THIS_
  101. const char*& data, UINT32& nBytes, UINT32& nSamples) CONSTMETHOD ;
  102.     STDMETHOD_(INT32,getBufferFullness) (THIS_) CONSTMETHOD ;
  103.     STDMETHOD_(FLAGS, getFlags) (THIS_) CONSTMETHOD ;
  104.     /*
  105.      * IPrepareDecoderUnit methods
  106.      */
  107.     STDMETHOD(putData) (THIS_
  108. const char *data, UINT32 nBytes, UINT32 nSamples) ;
  109.     STDMETHOD(setBufferFullness) (THIS_
  110.                 INT32 bfm) ;
  111.     STDMETHOD(setFlags) (THIS_
  112. FLAGS f) ;
  113. private:
  114.     UINT32 mSamples ;
  115.     signed long mBufferFullness ;
  116.     UINT32 mSize ;
  117.     UINT32 mDataMaxsize ;
  118.     char *mpData ;
  119.     FLAGS mFlags ;
  120.     long m_lRefCount ;
  121. } ;
  122. #endif // _DUNITPRVT_H_