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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxmmrkr.h,v 1.1.1.1.50.3 2004/07/09 01:45:12 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 HXMMRKR_H
  50. #define HXMMRKR_H
  51. /*
  52.  * Forward declarations of some interfaces defined or used here-in.
  53.  */
  54. typedef _INTERFACE IHXMediaMarkerManager IHXMediaMarkerManager;
  55. typedef _INTERFACE IHXMediaMarkerSink    IHXMediaMarkerSink;
  56. typedef _INTERFACE IHXValues             IHXValues;
  57. /****************************************************************************
  58.  * 
  59.  *  Interface:
  60.  *
  61.  *      IHXMediaMarkerManager
  62.  *
  63.  *  Purpose:
  64.  *
  65.  *      Interface to manage media markers
  66.  *
  67.  *  IID_IHXMediaMarkerManager:
  68.  *
  69.  *      {46679D62-F7AC-4b0e-8000-F4EE90F785B1}
  70.  *
  71.  */
  72. DEFINE_GUID(IID_IHXMediaMarkerManager, 0x46679d62, 0xf7ac, 0x4b0e, 0x80, 0x0, 0xf4, 
  73.                              0xee, 0x90, 0xf7, 0x85, 0xb1);
  74. DECLARE_INTERFACE_(IHXMediaMarkerManager, IUnknown)
  75. {
  76.     /*
  77.      * IUnknown methods
  78.      */
  79.     STDMETHOD(QueryInterface)   (THIS_
  80.                                 REFIID riid,
  81.                                 void** ppvObj) PURE;
  82.     STDMETHOD_(ULONG32,AddRef)  (THIS) PURE;
  83.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  84.     /*
  85.      * IHXMediaMarkerManager methods
  86.      */
  87.     /************************************************************************
  88.      *  Method:
  89.      *      IHXMediaMarkerManager::AddMediaMarkerSink
  90.      *  Purpose:
  91.      *      Register a media marker sink
  92.      */
  93.     STDMETHOD(AddMediaMarkerSink) (THIS_ IHXMediaMarkerSink* pSink) PURE;
  94.     /************************************************************************
  95.      *  Method:
  96.      *      IHXMediaMarkerManager::RemoveMediaMarkerSink
  97.      *  Purpose:
  98.      *      Unregister a media marker sink
  99.      */
  100.     STDMETHOD(RemoveMediaMarkerSink) (THIS_ IHXMediaMarkerSink* pSink) PURE;
  101.     /************************************************************************
  102.      *  Method:
  103.      *      IHXMediaMarkerManager::AddMediaMarkerSinkFilter
  104.      *  Purpose:
  105.      *      Add a filter on the markers which will be
  106.      *      received by this media marker sink. Multiple calls
  107.      *      to this interface with the same sink set up an
  108.      *      implicit OR between all the added filters for that sink.
  109.      */
  110.     STDMETHOD(AddMediaMarkerSinkFilter) (THIS_ IHXMediaMarkerSink* pSink,
  111.                                                IHXValues*          pFilter) PURE;
  112.     /************************************************************************
  113.      *  Method:
  114.      *      IHXMediaMarkerManager::ResolveMarker
  115.      *  Purpose:
  116.      *      Method that media marker sources will use to tell the core
  117.      *      about their markers
  118.      */
  119.     STDMETHOD(ResolveMarker) (THIS_ IHXBuffer* pURLStr,
  120.                                     IHXBuffer* pMarkerNameStr,
  121.                                     UINT32      ulTime,
  122.                                     IHXValues* pOtherMarkerParams) PURE;
  123.     /************************************************************************
  124.      *  Method:
  125.      *      IHXMediaMarkerManager::IsMarkerResolved
  126.      *  Purpose:
  127.      *      Method to find if a specific media marker has been resolved
  128.      *      and if so, find the time that it resolved to
  129.      */
  130.     STDMETHOD_(BOOL,IsMarkerResolved) (THIS_ IHXBuffer* pURLStr,
  131.                                              IHXBuffer* pMarkerNameStr) PURE;
  132.     /************************************************************************
  133.      *  Method:
  134.      *      IHXMediaMarkerManager::GetFirstMarker
  135.      *  Purpose:
  136.      *      Retrieves the first marker using the currently-set
  137.      *      filters for this marker sink.
  138.      */
  139.     STDMETHOD(GetFirstMarker) (THIS_ IHXMediaMarkerSink* pSink,
  140.                                      REF(IHXBuffer*)     rpURLStr,
  141.                                      REF(IHXBuffer*)     rpMarkerNameStr,
  142.                                      REF(UINT32)          rulTime,
  143.                                      REF(IHXValues*)     rpOtherMarkerParams) PURE;
  144.     /************************************************************************
  145.      *  Method:
  146.      *      IHXMediaMarkerManager::GetNextMarker
  147.      *  Purpose:
  148.      *      Retrieves the next marker using the currently-set
  149.      *      filters for this marker sink.
  150.      */
  151.     STDMETHOD(GetNextMarker) (THIS_ IHXMediaMarkerSink* pSink,
  152.                                     REF(IHXBuffer*)     rpURLStr,
  153.                                     REF(IHXBuffer*)     rpMarkerNameStr,
  154.                                     REF(UINT32)          rulTime,
  155.                                     REF(IHXValues*)     rpOtherMarkerParams) PURE;
  156. };
  157. /****************************************************************************
  158.  * 
  159.  *  Interface:
  160.  *
  161.  *      IHXMediaMarkerSink
  162.  *
  163.  *  Purpose:
  164.  *
  165.  *      Interface to receive media marker resolved times
  166.  *
  167.  *  IID_IHXMediaMarkerSink
  168.  *
  169.  *      {A4643C85-5B52-4b07-A761-32CFB2F284FE}
  170.  */
  171. DEFINE_GUID(IID_IHXMediaMarkerSink, 0xa4643c85, 0x5b52, 0x4b07, 0xa7, 0x61, 0x32,
  172.                                     0xcf, 0xb2, 0xf2, 0x84, 0xfe);
  173. DECLARE_INTERFACE_(IHXMediaMarkerSink, IUnknown)
  174. {
  175.     /*
  176.      * IUnknown methods
  177.      */
  178.     STDMETHOD(QueryInterface)   (THIS_
  179.                                 REFIID riid,
  180.                                 void** ppvObj) PURE;
  181.     STDMETHOD_(ULONG32,AddRef)  (THIS) PURE;
  182.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  183.     /*
  184.      * IHXMediaMarkerSink methods
  185.      */
  186.     /************************************************************************
  187.      *  Method:
  188.      *      IHXMediaMarkerSink::MarkerResolved
  189.      *  Purpose:
  190.      *      Resolve the time for a marker
  191.      */
  192.     STDMETHOD(MarkerResolved) (THIS_ IHXBuffer* pURLStr,
  193.                                      IHXBuffer* pMarkerNameStr,
  194.                                      UINT32      ulTime,
  195.                                      IHXValues* pOtherMarkerParams) PURE;
  196. };
  197. #endif /* HXMMRKR_H */