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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsrcin.h,v 1.2.32.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 _HXSRCIN_H_
  50. #define _HXSRCIN_H_
  51. /****************************************************************************
  52.  *  Includes
  53.  */
  54. #include "hxtypes.h"
  55. #include "hxcom.h"
  56. #include "ihxpckts.h"
  57. #define DTDR_TAG "DTDR"
  58. #define APPLICATION_DATA "ApplicationData"
  59. /****************************************************************************
  60.  * 
  61.  *  Interface:
  62.  *
  63.  * IHXSourceInput
  64.  *
  65.  *  Purpose:
  66.  *
  67.  * Media Source Flow Bridge Interface:  conveys source accross components
  68.  *  (Source Handlers).
  69.  *
  70.  *  IID_IHXSourceInput
  71.  *
  72.  * {EBF8D220-40F7-11d6-AB3F-00010251B340}
  73.  *
  74.  */
  75. DEFINE_GUID(IID_IHXSourceInput, 0xebf8d220, 0x40f7, 0x11d6, 0xab, 0x3f, 
  76.     0x0, 0x1, 0x2, 0x51, 0xb3, 0x40);
  77. #undef  INTERFACE
  78. #define INTERFACE   IHXSourceInput
  79. DECLARE_INTERFACE_(IHXSourceInput, IUnknown)
  80. {
  81.     /*
  82.      * IUnknown methods
  83.      */
  84.     STDMETHOD(QueryInterface) (THIS_
  85. REFIID riid,
  86. void** ppvObj) PURE;
  87.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  88.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  89.     /*
  90.      * IHXSourceInput methods
  91.      */
  92.     /************************************************************************
  93.      * Method:
  94.      *     IHXSourceInput::OnFileHeader
  95.      * Purpose:
  96.      *     Called to send file header information
  97.      *
  98.      */
  99.     STDMETHOD(OnFileHeader) (THIS_
  100. HX_RESULT   status,
  101. IHXValues* pValues) PURE;
  102.     /************************************************************************
  103.      * Method:
  104.      *     IHXSourceInput::OnStreamHeader
  105.      * Purpose:
  106.      *     Called to send stream header information
  107.      *
  108.      */
  109.     STDMETHOD(OnStreamHeader) (THIS_
  110. HX_RESULT   status,
  111. IHXValues* pValues) PURE;
  112.     /************************************************************************
  113.      * Method:
  114.      *     IHXSourceInput:OnStreamDone
  115.      * Purpose:
  116.      *     Called to signal the end of particular stream from the source.
  117.      */
  118.     STDMETHOD(OnStreamDone) (THIS_
  119. HX_RESULT   status,
  120. UINT16     unStreamNumber) PURE;
  121.     /************************************************************************
  122.      * Method:
  123.      *     IHXSourceInput:OnPacket
  124.      * Purpose:
  125.      *     Called to send packet information.
  126.      *
  127.      */
  128.     STDMETHOD(OnPacket) (THIS_
  129. HX_RESULT   status,
  130. IHXPacket* pPacket) PURE;
  131.     /************************************************************************
  132.      * Method:
  133.      *     IHXSourceInput:OnTermination
  134.      * Purpose:
  135.      *     Called to indicate the source is terminated and receiver is
  136.      * to release all its resources required for processing source input.
  137.      *  Any input performed after this call is to be ignored.
  138.      *
  139.      */
  140.     STDMETHOD(OnTermination) (THIS_
  141. HX_RESULT status) PURE;
  142. };
  143. /****************************************************************************
  144.  * 
  145.  *  Interface:
  146.  *
  147.  * IHXSourceHandler
  148.  *
  149.  *  Purpose:
  150.  *
  151.  * Media Source Flow Handler Interface: process media source streams
  152.  *
  153.  *  IID_IHXSourceInput
  154.  *
  155.  * {B2646DA0-410A-11d6-AB3F-00010251B340}
  156.  *
  157.  */
  158. DEFINE_GUID(IID_IHXSourceHandler, 
  159. 0xb2646da0, 0x410a, 0x11d6, 0xab, 0x3f, 0x0, 0x1, 0x2, 0x51, 0xb3, 0x40);
  160. #define CLSID_IHXSourceHandler IID_IHXSourceHandler
  161. #undef  INTERFACE
  162. #define INTERFACE   IHXSourceHandler
  163. DECLARE_INTERFACE_(IHXSourceHandler, IHXSourceInput)
  164. {
  165.     /*
  166.      * IUnknown methods
  167.      */
  168.     STDMETHOD(QueryInterface) (THIS_
  169. REFIID riid,
  170. void** ppvObj) PURE;
  171.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  172.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  173.     /*
  174.      * IHXSourceInput methods
  175.      */
  176.     /************************************************************************
  177.      * Method:
  178.      *     IHXSourceInput::OnFileHeader
  179.      * Purpose:
  180.      *     Called to send file header information
  181.      *
  182.      */
  183.     STDMETHOD(OnFileHeader) (THIS_
  184. HX_RESULT   status,
  185. IHXValues* pValues) PURE;
  186.     /************************************************************************
  187.      * Method:
  188.      *     IHXSourceInput::OnStreamHeader
  189.      * Purpose:
  190.      *     Called to send stream header information
  191.      *
  192.      */
  193.     STDMETHOD(OnStreamHeader) (THIS_
  194. HX_RESULT   status,
  195. IHXValues* pValues) PURE;
  196.     /************************************************************************
  197.      * Method:
  198.      *     IHXSourceInput:OnStreamDone
  199.      * Purpose:
  200.      *     Called to signal the end of particular stream from the source.
  201.      */
  202.     STDMETHOD(OnStreamDone) (THIS_
  203. HX_RESULT   status,
  204. UINT16     unStreamNumber) PURE;
  205.     /************************************************************************
  206.      * Method:
  207.      *     IHXSourceInput:OnPacket
  208.      * Purpose:
  209.      *     Called to send packet information.
  210.      *
  211.      */
  212.     STDMETHOD(OnPacket) (THIS_
  213. HX_RESULT   status,
  214. IHXPacket* pPacket) PURE;
  215.     /************************************************************************
  216.      * Method:
  217.      *     IHXSourceInput:OnTermination
  218.      * Purpose:
  219.      *     Called to indicate the source is terminated and receiver is
  220.      * to release all its resources required for processing source input.
  221.      *  Any input performed after this call is to be ignored.
  222.      *
  223.      */
  224.     STDMETHOD(OnTermination) (THIS_
  225. HX_RESULT status) PURE;
  226.     /*
  227.      * IHXSourceHandler methods
  228.      */
  229.     /************************************************************************
  230.      * Method:
  231.      *     InitSourceHandler:InitSourceHandler
  232.      * Purpose:
  233.      *     Called to provide configuration options and processed source sink.
  234.      *
  235.      */
  236.     STDMETHOD(InitSourceHandler)(THIS_
  237. IHXSourceInput* pSourceSink,
  238. IHXValues* pOptions) PURE;
  239.     /************************************************************************
  240.      * Method:
  241.      *     InitSourceHandler:Close
  242.      * Purpose:
  243.      *     Called to relase all resources used by the source handler.
  244.      *
  245.      */
  246.     STDMETHOD(Close) (THIS) PURE;
  247. };
  248. #endif  // _HXSRCIN_H_