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

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 _IHXRECORD_H_
  36. #define _IHXRECORD_H_
  37. #include "hxcom.h"
  38. #include "hxsmartptr.h"
  39. #include "hxformt.h"
  40. /*
  41.  * Forward declarations of some interfaces defined or used here-in.
  42.  */
  43. typedef _INTERFACE IHXRecordManager IHXRecordManager;
  44. typedef _INTERFACE IHXRecordService IHXRecordService;
  45. typedef _INTERFACE IHXRecordSource IHXRecordSource;
  46. /****************************************************************************
  47.  * 
  48.  *  Interface:
  49.  *
  50.  * IHXRecordManager
  51.  *
  52.  *  Purpose:
  53.  *
  54.  * Interface implemented by the Core (HXPlayer) for connection of
  55.  *      RMA sources to record sources.
  56.  *
  57.  *  IID_IHXRecordManager:
  58.  *
  59.  * {9B7854DD-92C8-42c6-936C-565EC373E2AD}
  60.  *
  61.  */
  62. DEFINE_GUID(IID_IHXRecordManager, 
  63. 0x9b7854dd, 0x92c8, 0x42c6, 0x93, 0x6c, 0x56, 0x5e, 0xc3, 0x73, 0xe2, 0xad);
  64. DECLARE_INTERFACE_(IHXRecordManager, IUnknown)
  65. {
  66.     /************************************************************************
  67.      * Method:
  68.      *     IHXRecordManager::LoadRecordService
  69.      * Purpose:
  70.      *     Called by TLC to supply the Core with record service.
  71.      */
  72.     STDMETHOD(LoadRecordService) (THIS_ IHXRecordService* pRecordService) PURE;
  73.     /************************************************************************
  74.      * Method:
  75.      *     IHXRecordManager::GetRecordService
  76.      * Purpose:
  77.      *     return current record service for the Player.
  78.      */
  79.     STDMETHOD(GetRecordService) (THIS_ REF(IHXRecordService*) pRecordService) PURE;
  80.     /************************************************************************
  81.      * Method:
  82.      *     IHXRecordManager::UnloadRecordService
  83.      * Purpose:
  84.      *     Called by TLC to ask the Core to stop using record service.
  85.      */
  86.     STDMETHOD(UnloadRecordService) (THIS) PURE;
  87. };
  88. /****************************************************************************
  89.  * 
  90.  *  Interface:
  91.  *
  92.  * IHXRecordService
  93.  *
  94.  *  Purpose:
  95.  *
  96.  * Interface implemented by TLC to allow Core create record sources.
  97.  *
  98.  *  IID_IHXRecordService
  99.  *
  100.  * {F2F8C09A-A607-40c9-9C26-483BBBC4A086}
  101.  */
  102. DEFINE_GUID(IID_IHXRecordService, 
  103. 0xf2f8c09a, 0xa607, 0x40c9, 0x9c, 0x26, 0x48, 0x3b, 0xbb, 0xc4, 0xa0, 0x86);
  104. DECLARE_INTERFACE_(IHXRecordService, IUnknown)
  105. {
  106.     /************************************************************************
  107.      * Method:
  108.      *     IHXRecordService::Init
  109.      * Purpose:
  110.      *     Initializes record service according to context.
  111.      */
  112.     STDMETHOD(Init) (THIS_ IUnknown* pContext, BOOL bDiskIO) PURE;
  113.     /************************************************************************
  114.      * Method:
  115.      *     IHXRecordService::CreateRecordSource
  116.      * Purpose:
  117.      *     creates a record source for a given.
  118.      */
  119.     STDMETHOD(CreateRecordSource) (THIS_ IUnknown* pUnkSource, 
  120.  REF(IHXRecordSource*) pRecordSource) PURE;
  121.     /************************************************************************
  122.      * Method:
  123.      *     IHXRecordService::OpenRecordSource
  124.      * Purpose:
  125.      *     open recorded source.
  126.      */
  127.     STDMETHOD(OpenRecordSource) (THIS_ const char* szURL, IUnknown* pUnkFileObject, 
  128.        REF(IHXRecordSource*) pRecordSource) PURE;
  129.     /************************************************************************
  130.      * Method:
  131.      *     IHXRecordService::CloseRecordSource
  132.      * Purpose:
  133.      *     closes record source.
  134.      */
  135.     STDMETHOD(CloseRecordSource) (THIS_ IHXRecordSource* pRecordSource) PURE;
  136. };
  137. /****************************************************************************
  138.  * 
  139.  *  Interface:
  140.  * 
  141.  * IHXRecordSource
  142.  * 
  143.  *  Purpose:
  144.  * 
  145.  * provide methods for RMA source recording.
  146.  * 
  147.  *  IID_IHXRecordSource:
  148.  * 
  149.  * {E007F531-4EC9-4555-8EC5-1D58499904DF}
  150.  * 
  151.  */
  152. DEFINE_GUID(IID_IHXRecordSource, 
  153. 0xe007f531, 0x4ec9, 0x4555, 0x8e, 0xc5, 0x1d, 0x58, 0x49, 0x99, 0x4, 0xdf);
  154. DECLARE_INTERFACE_(IHXRecordSource, IUnknown)
  155. {
  156.     /******************************************************************
  157.      * Method:
  158.      *     IHXRecordSource::OnFileHeader
  159.      *
  160.      * Purpose:
  161.      *    send file header to record source
  162.      *
  163.      */
  164.     STDMETHOD(OnFileHeader) (THIS_ IHXValues* pValues) PURE;
  165.     /******************************************************************
  166.      * Method:
  167.      *    IHXRecordSource::OnStreamHeader
  168.      *
  169.      * Purpose:
  170.      *    send stream headers to record source
  171.      */
  172.     STDMETHOD(OnStreamHeader) (THIS_ IHXValues* pValues) PURE;
  173.     /******************************************************************
  174.      * Method:
  175.      *    IHXRecordSource::OnPacket
  176.      *
  177.      * Purpose:
  178.      *    send packets to record source
  179.      */
  180.     STDMETHOD(OnPacket) (THIS_ IHXPacket* pPacket, INT32 nTimeOffset) PURE;
  181.     /******************************************************************
  182.      * Method:
  183.      *    IHXRecordSource::OnEndOfPackets
  184.      *
  185.      * Purpose:
  186.      *    notification of source completion.
  187.      */
  188.     STDMETHOD(OnEndOfPackets) (THIS) PURE;
  189.     /******************************************************************
  190.      * Method:
  191.      *    IHXRecordSource::Flush
  192.      *
  193.      * Purpose:
  194.      *    removes all previously recorded packets.
  195.      */
  196.     STDMETHOD(Flush) (THIS) PURE;
  197.     /******************************************************************
  198.      * Method:
  199.      *     IHXRecordSource::SetFormatResponse
  200.      *
  201.      * Purpose:
  202.      *    sets formant response interface
  203.      *
  204.      */
  205.     STDMETHOD(SetFormatResponse) (THIS_ IHXFormatResponse* pFormatResponse) PURE;
  206.     /******************************************************************
  207.      * Method:
  208.      *     IHXRecordSource::GetFormatResponse
  209.      *
  210.      * Purpose:
  211.      *    gets current formant response interface
  212.      *
  213.      */
  214.     STDMETHOD(GetFormatResponse) (THIS_ REF(IHXFormatResponse*) pFormatResponse) PURE;
  215.     /******************************************************************
  216.      * Method:
  217.      *     IHXRecordSource::GetFileHeader
  218.      *
  219.      * Purpose:
  220.      *    asks for a file header
  221.      *
  222.      */
  223.     STDMETHOD(GetFileHeader) (THIS) PURE;
  224.     /******************************************************************
  225.      * Method:
  226.      *    IHXRecordSource::GetStreamHeader
  227.      *
  228.      * Purpose:
  229.      *    asks for a stream headers
  230.      *
  231.      */
  232.     STDMETHOD(GetStreamHeader)(UINT32 uStreamNumber) PURE;
  233.     /******************************************************************
  234.      * Method:
  235.      *    IHXRecordSource::GetPacket
  236.      *
  237.      * Purpose:
  238.      *    asks for a packet 
  239.      *
  240.      */
  241.     STDMETHOD(GetPacket) (THIS_ UINT16 nStreamNumber) PURE;
  242.     /******************************************************************
  243.      * Method:
  244.      *    IHXRecordSource::Seek
  245.      *
  246.      * Purpose:
  247.      *    seeks to a certain position inside recorded content
  248.      *
  249.      */
  250.     STDMETHOD(Seek) (THIS_ UINT32 nPosition) PURE;
  251.     /******************************************************************
  252.      * Method:
  253.      *    IHXRecordSource::Pause
  254.      *
  255.      * Purpose:
  256.      *    notification about pausing 
  257.      *
  258.      */
  259.     STDMETHOD(Pause) (THIS) PURE;
  260.     /******************************************************************
  261.      * Method:
  262.      *     IHXRecordSource::SetSource
  263.      *
  264.      * Purpose:
  265.      *    passes stream source to the record source.
  266.      *
  267.      */
  268.     STDMETHOD(SetSource) (THIS_ IUnknown* pUnkSource) PURE;
  269. };
  270. HX_SMART_POINTER_INLINE( SPIHXRecordManager, IHXRecordManager );
  271. HX_SMART_POINTER_INLINE( SPIHXRecordService, IHXRecordService );
  272. HX_SMART_POINTER_INLINE( SPIHXRecordSource, IHXRecordSource );
  273. #endif /* _IHXRECORD_H_ */