⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hxqosinfo.h

📁 著名的 helix realplayer 基于手机 symbian 系统的 播放器全套源代码
💻 H
字号:
/* ***** BEGIN LICENSE BLOCK *****  
 * Source last modified: $Id: 
 *   
 * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.  
 *       
 * The contents of this file, and the files included with this file, 
 * are subject to the current version of the RealNetworks Public 
 * Source License (the "RPSL") available at 
 * http://www.helixcommunity.org/content/rpsl unless you have licensed 
 * the file under the current version of the RealNetworks Community 
 * Source License (the "RCSL") available at 
 * http://www.helixcommunity.org/content/rcsl, in which case the RCSL 
 * will apply. You may also obtain the license terms directly from 
 * RealNetworks.  You may not use this file except in compliance with 
 * the RPSL or, if you have a valid RCSL with RealNetworks applicable 
 * to this file, the RCSL.  Please see the applicable RPSL or RCSL for 
 * the rights, obligations and limitations governing use of the 
 * contents of the file. 
 *   
 * This file is part of the Helix DNA Technology. RealNetworks is the 
 * developer of the Original Code and owns the copyrights in the 
 * portions it created. 
 *   
 * This file, and the files included with this file, is distributed 
 * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY 
 * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS 
 * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES 
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET 
 * ENJOYMENT OR NON-INFRINGEMENT. 
 *  
 * Technology Compatibility Kit Test Suite(s) Location:  
 *    http://www.helixcommunity.org/content/tck  
 *  
 * Contributor(s):  
 *   
 * ***** END LICENSE BLOCK ***** */  

///////////////////////////////////////////////////////////////////////////////
// hxqosinfo.h - Interfaces for QoS Adaptation Info.
///////////////////////////////////////////////////////////////////////////////

#ifndef HXQOSINFO_H
#define HXQOSINFO_H

///////////////////////////////////////////////////////////////////////////////

_INTERFACE      IUnknown;
_INTERFACE      IHXQoSTransportAdaptationInfo;
_INTERFACE      IHXQoSSessionAdaptationInfo;
_INTERFACE      IHXQoSApplicationAdaptationInfo;


///////////////////////////////////////////////////////////////////////////////
// Interface: 
//
//      IHXQoSTransportAdaptationInfo
//
// Purpose:
//
//      Provides adaptation info for QoS transport layer.
//
// IID_IHXQoSTransportAdaptationInfo:
//
//      {213645C5-3A56-4945-A8A9-6702BB5604B6}
//
///////////////////////////////////////////////////////////////////////////////

// {213645C5-3A56-4945-A8A9-6702BB5604B6}
DEFINE_GUID(IID_IHXQoSTransportAdaptationInfo, 
            0x213645c5, 0x3a56, 0x4945, 0xa8, 0xa9, 0x67, 0x2, 0xbb, 0x56, 0x4, 0xb6);

#define CLSID_IHXQoSTransportAdaptationInfo     IID_IHXQoSTransportAdaptationInfo

#undef  INTERFACE
#define INTERFACE   IHXQoSTransportAdaptationInfo

DECLARE_INTERFACE_(IHXQoSTransportAdaptationInfo, IUnknown)
{
    STDMETHOD_(UINT32, GetRRFrequency) (THIS) PURE;
    STDMETHOD(SetRRFrequency) (THIS_
                               UINT32 ulRRFrequency) PURE;

    STDMETHOD_(UINT32, GetRTT) (THIS) PURE;
    STDMETHOD(SetRTT) (THIS_
                       UINT32 ulRTT) PURE;

    STDMETHOD_(UINT32, GetPacketLoss) (THIS) PURE;
    STDMETHOD(SetPacketLoss) (THIS_
                              UINT32 ulPacketLoss) PURE;

    STDMETHOD_(UINT32, GetReceivedThroughput) (THIS) PURE;
    STDMETHOD(SetReceivedThroughput) (THIS_
                                      UINT32 ulReceivedThroughput) PURE;

    STDMETHOD_(UINT32, GetSuccessfulResends)    (THIS) PURE;
    STDMETHOD(SetSuccessfulResends)             (THIS_
                                                UINT32 ulSuccessfulResends) PURE;

    STDMETHOD_(UINT32, GetFailedResends)    (THIS) PURE;
    STDMETHOD(SetFailedResends)             (THIS_
                                            UINT32 ulFailedResends) PURE;

    STDMETHOD_(IHXBuffer*, GetTxRateRange)    (THIS) PURE;
    STDMETHOD(SetTxRateRange)                 (THIS_
                                              IHXBuffer* pTxRateRange) PURE;

    STDMETHOD_(UINT32, GetPacketsSent)      (THIS) PURE;
    STDMETHOD(SetPacketsSent)               (THIS_
                                            UINT32 ulPacketsSent) PURE;

    STDMETHOD_(UINT64, GetBytesSent)        (THIS) PURE;
    STDMETHOD(SetBytesSent)                 (THIS_
                                            UINT64 ulBytesSent) PURE;

};


///////////////////////////////////////////////////////////////////////////////
// Interface: 
//
//      IHXQoSSessionAdaptationInfo
//
// Purpose:
//
//      Provides adaptation info for QoS Session layer.
//
// IID_IHXQoSSessionAdaptationInfo:
//
//      {AED09295-0A71-4520-9D7F-BFA9B5A97245}
//
///////////////////////////////////////////////////////////////////////////////

// {AED09295-0A71-4520-9D7F-BFA9B5A97245}
DEFINE_GUID(IID_IHXQoSSessionAdaptationInfo, 
            0xaed09295, 0xa71, 0x4520, 0x9d, 0x7f, 0xbf, 0xa9, 0xb5, 0xa9, 0x72, 0x45);

#define CLSID_IHXQoSSessionAdaptationInfo     IID_IHXQoSSessionAdaptationInfo

#undef  INTERFACE
#define INTERFACE   IHXQoSSessionAdaptationInfo

DECLARE_INTERFACE_(IHXQoSSessionAdaptationInfo, IUnknown)
{
    STDMETHOD_(UINT32, GetEstimatedPlayerBufferUnderruns) (THIS) PURE;
    STDMETHOD(SetEstimatedPlayerBufferUnderruns) (THIS_
                                                  UINT32 ulEstimatedPlayerBufferUnderruns) PURE;

    STDMETHOD_(UINT32, GetEstimatedPlayerBufferOverruns) (THIS) PURE;
    STDMETHOD(SetEstimatedPlayerBufferOverruns) (THIS_
                                                 UINT32 ulEstimatedPlayerBufferOverruns) PURE;

    STDMETHOD_(UINT32, GetBufferDepthTime) (THIS) PURE;
    STDMETHOD(SetBufferDepthTime) (THIS_
                                   UINT32 ulBufferDepthTime) PURE;

    STDMETHOD_(UINT32, GetBufferDepthBytes) (THIS) PURE;
    STDMETHOD(SetBufferDepthBytes) (THIS_
                                    UINT32 ulBufferDepthBytes) PURE;
};


///////////////////////////////////////////////////////////////////////////////
// Interface: 
//
//      IHXQoSApplicationAdaptationInfo
//
// Purpose:
//
//      Provides adaptation info for QoS Application layer.
//
// IID_IHXQoSApplicationAdaptationInfo:
//
//      {207E23E5-F71F-4a18-B7D0-F4F865A2058B}
//
///////////////////////////////////////////////////////////////////////////////

// {207E23E5-F71F-4a18-B7D0-F4F865A2058B}
DEFINE_GUID(IID_IHXQoSApplicationAdaptationInfo, 
            0x207e23e5, 0xf71f, 0x4a18, 0xb7, 0xd0, 0xf4, 0xf8, 0x65, 0xa2, 0x5, 0x8b);

#define CLSID_IHXQoSApplicationAdaptationInfo     IID_IHXQoSApplicationAdaptationInfo

#undef  INTERFACE
#define INTERFACE   IHXQoSApplicationAdaptationInfo

DECLARE_INTERFACE_(IHXQoSApplicationAdaptationInfo, IUnknown)
{
    STDMETHOD_(UINT32, GetTotalBitrateAdaptations) (THIS) PURE;
    STDMETHOD(SetTotalBitrateAdaptations) (THIS_
                                           UINT32 ulTotalBitrateAdaptations) PURE;

    STDMETHOD_(UINT32, GetCurrentBitrate) (THIS) PURE;
    STDMETHOD(SetCurrentBitrate) (THIS_
                                  UINT32 ulCurrentBitrate) PURE;

    STDMETHOD_(UINT32, GetTotalUpshifts)    (THIS) PURE;
    STDMETHOD(SetTotalUpshifts)             (THIS_
                                            UINT32 ulTotalUpshifts) PURE;

    STDMETHOD_(UINT32, GetTotalDownshifts)  (THIS) PURE;
    STDMETHOD(SetTotalDownshifts)           (THIS_
                                            UINT32 ulTotalDownshifts) PURE;

    STDMETHOD_(UINT32, GetASMSubscribes)    (THIS) PURE;
    STDMETHOD(SetASMSubscribes)             (THIS_
                                            UINT32 ulASMSubscribes) PURE;

    STDMETHOD_(UINT32, GetASMUnsubscribes)  (THIS) PURE;
    STDMETHOD(SetASMUnsubscribes)           (THIS_
                                            UINT32 ulASMUnsubscribes) PURE;

};


#endif //defined HXQOSINFO_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -