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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsdesc.h,v 1.1.1.1.50.3 2004/07/09 01:45:13 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. #ifndef _HXSDESC_
  50. #define _HXSDESC_
  51. /*
  52.  * Forward declarations of some interfaces defined or used here-in.
  53.  */
  54. typedef _INTERFACE IUnknown IUnknown;
  55. struct IHXBuffer;
  56. struct IHXValues;
  57. /****************************************************************************
  58.  * 
  59.  *  Interface:
  60.  *
  61.  * IHXStreamDescription
  62.  *
  63.  *  Purpose:
  64.  *
  65.  * This interface allows transforms between IHXValues and stream
  66.  * description formats.
  67.  *
  68.  *
  69.  *  IID_IHXStreamDescription:
  70.  *
  71.  * {00001900-0901-11d1-8B06-00A024406D59}
  72.  *
  73.  */
  74. DEFINE_GUID(IID_IHXStreamDescription, 0x00001900, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  75. 0xa0, 0x24, 0x40, 0x6d, 0x59); 
  76. #undef  INTERFACE
  77. #define INTERFACE   IHXStreamDescription
  78. DECLARE_INTERFACE_(IHXStreamDescription, IUnknown)
  79. {
  80.     /*
  81.      * IUnknown methods
  82.      */
  83.     STDMETHOD(QueryInterface) (THIS_
  84. REFIID riid,
  85. void** ppvObj) PURE;
  86.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  87.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  88.     /*
  89.      * IHXStreamDescription methods
  90.      */
  91.     /************************************************************************
  92.      * Method:
  93.      *     IHXStreamDescription::GetStreamDescriptionInfo
  94.      * Purpose:
  95.      *     Get info to initialize the stream description plugin
  96.      */
  97.     STDMETHOD(GetStreamDescriptionInfo)
  98. (THIS_
  99. REF(const char*) /*OUT*/ pMimeTypes) PURE;
  100.     /************************************************************************
  101.      * Method:
  102.      *     IHXStreamDescription::GetValues
  103.      * Purpose:
  104.      *     Transform a media description string into an IHXValues
  105.      * object.
  106.      */
  107.     STDMETHOD(GetValues) (THIS_
  108.      IHXBuffer*      /*IN*/  pDescription,
  109. REF(UINT16)     /*OUT*/ nValues,
  110.      REF(IHXValues**)   /*OUT*/ pValueArray) PURE;
  111.     /************************************************************************
  112.      * Method:
  113.      *     IHXStreamDescription::GetDescription
  114.      * Purpose:
  115.      *     Transform an IHXValues object into a stream description
  116.      * string.
  117.      */
  118.     STDMETHOD(GetDescription) (THIS_
  119. UINT16     /*IN*/   nValues,
  120. IHXValues**     /*IN*/   pValueArray,
  121.      REF(IHXBuffer*)    /*OUT*/  pDescription) PURE;
  122. };
  123. /****************************************************************************
  124.  * 
  125.  *  Interface:
  126.  *
  127.  * IHXRTPPayloadInfo
  128.  *
  129.  *  Purpose:
  130.  *
  131.  * This interface exposes the conversion table used to convert RTP
  132.  *      timestamps to RMA timestamps and whether or not the content is
  133.  *      timestamp deliverable.
  134.  *
  135.  *
  136.  *  IID_IHXRTPPayloadInfo:
  137.  *
  138.  * {00001901-0901-11d1-8B06-00A024406D59}
  139.  *
  140.  */
  141. DEFINE_GUID(IID_IHXRTPPayloadInfo, 0x00001901, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  142. 0xa0, 0x24, 0x40, 0x6d, 0x59); 
  143. #undef  INTERFACE
  144. #define INTERFACE   IHXRTPPayloadInfo
  145. DECLARE_INTERFACE_(IHXRTPPayloadInfo, IUnknown)
  146. {
  147.     /*
  148.      * IUnknown methods
  149.      */
  150.     STDMETHOD(QueryInterface) (THIS_
  151. REFIID riid,
  152. void** ppvObj) PURE;
  153.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  154.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  155.     /*
  156.      * IHXRTPPayloadInfo methods
  157.      */
  158.     /************************************************************************
  159.      * Method:
  160.      *     IHXRTPPayloadInfo::PayloadSupported
  161.      * Purpose:
  162.      *     Returns TRUE if this payload type is handled by this interface
  163.      */
  164.     STDMETHOD_(BOOL, IsPayloadSupported)     (THIS_
  165. UINT32      /*IN*/  ulRTPPayloadType) PURE;
  166.     /************************************************************************
  167.      * Method:
  168.      *     IHXRTPPayloadInfo::GetTimestampConversionFactors
  169.      * Purpose:
  170.      *     Retrieves the RTP and RMA factors for RTP to RMA timestamp ratio.
  171.      *      RTP->RMA is RTPTimestamp * HXFactor / RTPFactor
  172.      *      RMA->RTP is HXTimestamp * RTPFactor / HXFactor
  173.      *  
  174.      *  Note: 
  175.      *      Does not check if the payload type is supported
  176.      */
  177.     STDMETHOD(GetTimestampConversionFactors)     (THIS_
  178.      UINT32      /*IN*/  ulRTPPayloadType,
  179. REF(UINT32) /*OUT*/ ulRTPFactor,
  180. REF(UINT32) /*OUT*/ ulHXFactor) PURE;
  181.     /************************************************************************
  182.      * Method:
  183.      *     IHXRTPPayloadInfo::IsTimestampDeliverable
  184.      * Purpose:
  185.      *     Returns TRUE if this payload type is timestamp deliverable
  186.      */
  187.     STDMETHOD_(BOOL, IsTimestampDeliverable)     (THIS_
  188. UINT32      /*IN*/  ulRTPPayloadType) PURE;
  189. };
  190. /****************************************************************************
  191.  * 
  192.  *  Interface:
  193.  *
  194.  * IHXStreamDescriptionSettings
  195.  *
  196.  *  Purpose:
  197.  *
  198.  * Manage settings related to stream description
  199.  *
  200.  *
  201.  *  IID_IHXStreamDescriptionOptions:
  202.  *
  203.  * {00001902-0901-11d1-8B06-00A024406D59}
  204.  *
  205.  */
  206. DEFINE_GUID(IID_IHXStreamDescriptionSettings, 0x00001902, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  207. 0xa0, 0x24, 0x40, 0x6d, 0x59); 
  208. #undef  INTERFACE
  209. #define INTERFACE   IHXStreamDescriptionSettings
  210. DECLARE_INTERFACE_(IHXStreamDescriptionSettings, IUnknown)
  211. {
  212.     /*
  213.      * IUnknown methods
  214.      */
  215.     STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj) PURE;
  216.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  217.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  218.     /*
  219.      * IHXStreamDescriptionSettings methods
  220.      */
  221.     STDMETHOD(SetOption)(const char* pKey, IHXBuffer* pVal) PURE;
  222.     STDMETHOD(GetOption)(const char* pKey, REF(IHXBuffer*) pVal) PURE;
  223. };
  224. #endif /* _HXSDESC_ */