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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxlvpix.h,v 1.1.32.3 2004/07/09 01:45:08 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. /*
  50.  *  RealPix live encoder interfaces
  51.  *
  52.  */
  53. #ifndef _HXLVPIX_H
  54. #define _HXLVPIX_H
  55. /*
  56.  * PixInitInfo
  57.  *
  58.  * This struct contains initialization information
  59.  * and is passed in in the IHXLiveRealPix::StartEncoder()
  60.  * method. All of the members of this struct are input variables.
  61.  */
  62. typedef struct HXEXPORT_CLASS _PixInitInfo
  63. {
  64.     UINT32  m_ulStructLength;       /* length in bytes of this structure */
  65.     char   *m_pServerAddress;       /* name or ip address of server */
  66.     UINT32  m_ulServerPort;         /* pn-encoder port on server */
  67.     char   *m_pUsername;            /* username for authentication on server */
  68.     char   *m_pPassword;            /* password for authentication on server */
  69.     char   *m_pFilename;            /* filename which clients should open */
  70.     char   *m_pTitle;               /* title of live presentation */
  71.     char   *m_pAuthor;              /* author of live presentation */
  72.     char   *m_pCopyright;           /* copyright on live presentation */
  73.     UINT32  m_ulBitrate;            /* bitrate of realpix stream */
  74.     UINT32  m_ulMaxFps;             /* max frames per second of effects */
  75.     UINT32  m_ulDisplayWidth;       /* display width in pixels */
  76.     UINT32  m_ulDisplayHeight;      /* display height in pixels */
  77.     BOOL    m_bPreserveAspect;      /* preserve aspect ratio by default? */
  78.     char   *m_pDefaultURL;          /* default URL to send browser to when clicked */
  79.     UINT32  m_ulNumImageCodecs;     /* number of image codecs used in this stream */
  80.     char  **m_ppImageCodec;         /* string names of codecs */
  81.     UINT32  m_ulNumEffectPackages;  /* number of external effect packages used */
  82.     char  **m_ppEffectPackage;      /* string names of effect packages*/
  83. }
  84. PixInitInfo;
  85. /*
  86.  * PixImageInfo
  87.  *
  88.  * This struct contains all the information for images which
  89.  * should be sent down the stream. This struct is used in the 
  90.  * IHXLiveRealPix::InitImage() method.
  91.  */
  92. typedef struct HXEXPORT_CLASS _PixImageInfo
  93. {
  94.     UINT32  m_ulStructLength;      /* Input:  size of struct */
  95.     BYTE   *m_pImageBuffer;        /* Input:  buffer holding image data */
  96.     UINT32  m_ulImageBufferSize;   /* Input:  size of image buffer */
  97.     char   *m_pImageCodec;         /* Input:  image codec to be used */
  98.     UINT32  m_ulHandle;            /* Output: image handle */
  99.     UINT32  m_ulNumPackets;        /* Output: number of packets image will be sent */
  100.     UINT32  m_ulTimeToSend;        /* Output: milliseconds required to send image */
  101. }
  102. PixImageInfo;
  103. #define EFFECT_FILL           0
  104. #define EFFECT_FADEIN         1
  105. #define EFFECT_FADEOUT        2
  106. #define EFFECT_CROSSFADE      3
  107. #define EFFECT_WIPE           4
  108. #define EFFECT_VIEWCHANGE     5
  109. #define EFFECT_EXTERNAL       6
  110. #define EFFECT_ANIMATE        7
  111. #define WIPE_DIRECTION_UP     0
  112. #define WIPE_DIRECTION_DOWN   1
  113. #define WIPE_DIRECTION_LEFT   2
  114. #define WIPE_DIRECTION_RIGHT  3
  115. #define WIPE_TYPE_NORMAL      0
  116. #define WIPE_TYPE_PUSH        1
  117. /*
  118.  * PixEffectInfo
  119.  *
  120.  * This struct contains all the information about the effect which 
  121.  * the RealPix renderer should perform. This struct is used in the
  122.  * IHXLiveRealPix::SendEffect() method.
  123.  */
  124. typedef struct HXEXPORT_CLASS _PixEffectInfo
  125. {
  126.     UINT32  m_ulStructLength;      /* Input:  Length in bytes of this struct */
  127.     BYTE    m_ucEffectType;        /* Input:  Effect Type: EFFECT_FILL, EFFECT_FADEIN, etc. */
  128.     UINT32  m_ulStart;             /* Input:  Start time in milliseconds of effect */
  129.     UINT32  m_ulDuration;          /* Input:  Duration in milliseconds of effect */
  130.     UINT32  m_ulTarget;            /* Input:  Handle of image to perform effect on */
  131.     UINT32  m_ulSrcX;              /* Input:  Horizontal offset of source rectangle */
  132.     UINT32  m_ulSrcY;              /* Input:  Vertical offset of source rectangle */
  133.     UINT32  m_ulSrcW;              /* Input:  Width of source rectangle */
  134.     UINT32  m_ulSrcH;              /* Input:  Height of source rectangle */
  135.     UINT32  m_ulDstX;              /* Input:  Horizontal offset of destination rectangle */
  136.     UINT32  m_ulDstY;              /* Input:  Vertical offset of destination rectangle */
  137.     UINT32  m_ulDstW;              /* Input:  Width of destination rectangle */
  138.     UINT32  m_ulDstH;              /* Input:  Height of destination rectangle */
  139.     UINT32  m_ulMaxFps;            /* Input:  Max frames per second for this effect */
  140.     BOOL    m_bAspectFlag;         /* Input:  TRUE: preserve aspect on this effect; FALSE: don't preserve */
  141.     BYTE    m_ucRed;               /* Input:  Red component of fill or fadeout color */
  142.     BYTE    m_ucGreen;             /* Input:  Green component of fill or fadeout color */
  143.     BYTE    m_ucBlue;              /* Input:  Blue component of fill or fadeout color */
  144.     BYTE    m_ucWipeDirection;     /* Input:  WIPE_DIRECTION_xxx, where xxx is UP, DOWN, LEFT, or RIGHT */
  145.     BYTE    m_ucWipeType;          /* Input:  WIPE_TYPE_NORMAL or WIPE_TYPE_PUSH */
  146.     char   *m_pURL;                /* Input:  URL for this effect */
  147.     char   *m_pExtPackage;         /* Input:  Name of external effect package */
  148.     char   *m_pExtName;            /* Input:  Name of external effect within the package */
  149.     char   *m_pExtData;            /* Input   Opaque string data for external effect */
  150.     char   *m_pExtFile;            /* Input:  File contents of external effect data */
  151.     BOOL    m_bDiscardImage;       /* Input:  TRUE: discard image after doing effect; FALSE: don't discard */
  152.     BOOL    m_bDisplayImmediately; /* Input:  FALSE: obey start time; TRUE: do effect immediately */
  153. UINT32  m_ulHandle;            /* Output: Handle by which effect will be referred to */
  154. }
  155. PixEffectInfo;
  156. /*
  157.  * Forward declarations of some interfaces defined here.
  158.  */
  159. typedef _INTERFACE IHXLiveRealPix         IHXLiveRealPix;
  160. typedef _INTERFACE IHXLiveRealPixResponse IHXLiveRealPixResponse;
  161. typedef _INTERFACE IHXLiveRealPixResend   IHXLiveRealPixResend;
  162. /*
  163.  * Forward declarations of interfaces used here
  164.  */
  165. typedef _INTERFACE IHXValues              IHXValues;
  166. /*
  167.  * Declaration of the DLL entry point
  168.  */
  169. STDAPI CreateLiveRealPix(IHXLiveRealPix **);
  170. typedef HX_RESULT (HXEXPORT_PTR FPRMCREATELIVEREALPIX)(IHXLiveRealPix **ppLiveRealPix);
  171. /****************************************************************************
  172.  * 
  173.  *  Interface:
  174.  * 
  175.  *  IHXLivePix
  176.  * 
  177.  *  Purpose:
  178.  * 
  179.  *  Asynchronous interface that allows an application to encode live RealPix
  180.  * 
  181.  *  IID_IHXLiveRealPix:
  182.  * 
  183.  *  {E7ADF466-477D-11d2-AA0C-0060972D23A7}
  184.  *
  185.  */
  186. DEFINE_GUID(IID_IHXLiveRealPix,  0xe7adf466, 0x477d, 0x11d2, 0xaa, 0xc, 0x0,
  187.             0x60, 0x97, 0x2d, 0x23, 0xa7);
  188. #undef  INTERFACE
  189. #define INTERFACE   IHXLiveRealPix
  190. DECLARE_INTERFACE_(IHXLiveRealPix, IUnknown)
  191. {
  192.     /*
  193.      *  IUnknown methods
  194.      */
  195.     STDMETHOD(QueryInterface)      (THIS_ REFIID riid, void **ppvObj) PURE;
  196.     STDMETHOD_(ULONG32,AddRef)     (THIS) PURE;
  197.     STDMETHOD_(ULONG32,Release)    (THIS) PURE;
  198.     /*
  199.      *  IHXLiveRealPix methods
  200.      */
  201.     /*
  202.      * StartEncoder() must be called before anything else and a pointer to
  203.      * an IHXLiveRealPixResponse interface must be passed in. The encoder will
  204.      * respond to this call asynchronously with IHXLiveRealPixResponse::EncoderStarted().
  205.      */
  206.     STDMETHOD(StartEncoder)        (THIS_ PixInitInfo             *pInitInfo,
  207.                                           IHXLiveRealPixResponse *pResponse) PURE;
  208.     /*
  209.      * InitImage() is called to prep an image for being sent. It returns several useful
  210.      * pieces of information which the caller can make use of: the handle to refer to
  211.      * the image in SendImage(), the number of packets this image will be broken up into,
  212.      * and the time required to send this image in milliseconds. Note that InitImage()
  213.      * simply breaks the image up into packets - nothing has been sent to the server yet.
  214.      * This is not an asynchronous call - all processing has finished by the time this
  215.      * call returns.
  216.      */
  217.     STDMETHOD(InitImage)           (THIS_ PixImageInfo *pImageInfo) PURE;
  218.     /*
  219.      * SendImage() tranfers the all the packets for the image referred to by ulImageHandle
  220.      * into the packet send queue. Further calls to Process() will result in these
  221.      * packets being sent to the RealServer. When all the packets for this image have
  222.      * been sent, the encoder will respond with IHXLiveRealPixResponse::ImageSent().
  223.      */
  224.     STDMETHOD(SendImage)           (THIS_ UINT32 ulImageHandle) PURE;
  225.     /*
  226.      * SendEffect() creates an effect packet with the information contained in
  227.      * the PixEffectInfo struct and immediately adds this packet to the packet
  228.      * send queue. Further calls to Process() will result in this packet being 
  229.      * sent to the server. A handle is returned in the PixEffectInfo struct by
  230.      * which this effect can later be identified. When the effect has been
  231.      * sent to the server, the encoder will respond with
  232.      * IHXLiveRealPixResponse::EffectSent().
  233.      */
  234.     STDMETHOD(SendEffect)          (THIS_ PixEffectInfo *pEffectInfo) PURE;
  235.     /*
  236.      * StopEncoder() may be called at any time after calling StartEncoder().
  237.      * This tells the encoder that no more images of effects are going to
  238.      * be sent to the encoder. The encoder shuts down the connection to
  239.      * the server and responds with IHXLiveRealPixResponse::EncoderStopped().
  240.      */
  241.     STDMETHOD(StopEncoder)         (THIS) PURE;
  242.     /*
  243.      * GetTime() returns the time in milliseconds since the encoder library was initialized.
  244.      */
  245.     STDMETHOD_(UINT32, GetTime)    (THIS) PURE;
  246.     /*
  247.      * Process() must be called in order to give the library time to send
  248.      * packets to the server. It should be called very often in between SendImage()
  249.      * and ImageSent(), as well as between SendEffect() and EffectSent(). Other
  250.      * that these times, it should be called every 3-5 seconds.
  251.      */
  252.     STDMETHOD(Process)             (THIS) PURE;
  253. };
  254. /****************************************************************************
  255.  * 
  256.  *  Interface:
  257.  * 
  258.  *  IHXLiveRealPixResponse
  259.  * 
  260.  *  Purpose:
  261.  * 
  262.  *  Asynchronous response interface that allows an application to
  263.  *  encode live RealPix
  264.  * 
  265.  *  IID_IHXLiveRealPixResponse:
  266.  * 
  267.  *  {E7ADF46C-477D-11d2-AA0C-0060972D23A7}
  268.  *
  269.  */
  270. DEFINE_GUID(IID_IHXLiveRealPixResponse, 0xe7adf46c, 0x477d, 0x11d2, 0xaa, 0xc, 0x0,
  271.             0x60, 0x97, 0x2d, 0x23, 0xa7);
  272. #undef  INTERFACE
  273. #define INTERFACE   IHXLiveRealPixResponse
  274. DECLARE_INTERFACE_(IHXLiveRealPixResponse, IUnknown)
  275. {
  276.     /*
  277.      *  IUnknown methods
  278.      */
  279.     STDMETHOD(QueryInterface)      (THIS_ REFIID riid, void **ppvObj) PURE;
  280.     STDMETHOD_(ULONG32,AddRef)     (THIS) PURE;
  281.     STDMETHOD_(ULONG32,Release)    (THIS) PURE;
  282.     /*
  283.      *  IHXLiveRealPixResponse methods
  284.      */
  285.     /*
  286.      * EncoderStarted() is the asynchronous response to StartEncoder(). The status
  287.      * argument tells whether initializing the server was successful or not, and the pszHeaderString
  288.      * argument returns the text string returned by the RealServer.
  289.      */
  290.     STDMETHOD(EncoderStarted)      (THIS_ HX_RESULT status, const char *pszHeaderString) PURE;
  291.     /*
  292.      * ImageSent() is the asynchronous response to SendImage(). The ulImageHandle argument
  293.      * identifies which image has just completed sending to the server, and the status 
  294.      * argument tells whether or not the send was successful or not.
  295.      */
  296.     STDMETHOD(ImageSent)           (THIS_ HX_RESULT status, UINT32 ulImageHandle) PURE;
  297.     /*
  298.      * EffectSent() is the asynchronous response to SendEffect(). The ulEffectHandle argument
  299.      * identifies which effect has just completed sending to the server, and the status 
  300.      * argument tells whether or not the send was successful or not.
  301.      */
  302.     STDMETHOD(EffectSent)          (THIS_ HX_RESULT status, UINT32 ulEffectHandle) PURE;
  303.     /*
  304.      * EncoderStopped() is the asynchronous response to StopEncoder(). The status
  305.      * argument tells whether or not the stopping of the encoder was successful.
  306.      * If the status is HXR_OK, then the application can then shut down or turn
  307.      * around and call StartEncoder() again.
  308.      */
  309.     STDMETHOD(EncoderStopped)      (THIS_ HX_RESULT status) PURE;
  310.     /*
  311.      * ErrorOccurred() is called when the encoder receives an error from the RealServer.
  312.      * Depending upon the severity of the error, the RealServer may then shut down
  313.      * the encoder and an EncoderStopped() call would be made. Therefore, the
  314.      * application should be ready to handle an EncoderStopped() call at any time.
  315.      * If an error occurs, it's probably a good idea to call StopEncoder() and shut
  316.      * down the encoder from the application side anyway.
  317.      */
  318.     STDMETHOD(ErrorOccurred)       (THIS_ const UINT8   unSeverity,
  319.                                           const ULONG32 ulHXCode,
  320.                                           const ULONG32 ulUserCode,
  321.                                           const char   *pszUserString,
  322.                                           const char   *pszMoreInfoURL) PURE;
  323. };
  324. /****************************************************************************
  325.  * 
  326.  *  Interface:
  327.  * 
  328.  *  IHXLiveRealPixResend
  329.  * 
  330.  *  Purpose:
  331.  * 
  332.  *  Allows re-sending and releasing of images with IHXLiveRealPix
  333.  * 
  334.  *  IID_IHXLiveRealPixResend:
  335.  * 
  336.  *  {D814DA11-8B02-11D3-8AF3-00C0F030B4E5}
  337.  */
  338. DEFINE_GUID(IID_IHXLiveRealPixResend, 0xd814da11, 0x8b02, 0x11d3, 0x8a, 0xfe, 0x0,
  339.             0xc0, 0xf0, 0x30, 0xb4, 0xe5);
  340. #undef  INTERFACE
  341. #define INTERFACE   IHXLiveRealPixResend
  342. DECLARE_INTERFACE_(IHXLiveRealPixResend, IUnknown)
  343. {
  344.     /*
  345.      *  IUnknown methods
  346.      */
  347.     STDMETHOD(QueryInterface)      (THIS_ REFIID riid, void** ppvObj) PURE;
  348.     STDMETHOD_(ULONG32,AddRef)     (THIS) PURE;
  349.     STDMETHOD_(ULONG32,Release)    (THIS) PURE;
  350.     /*
  351.      *  IHXLiveRealPixResend methods
  352.      */
  353.     /*
  354.      * InitResend() informs the encoder that from now on, after an
  355.      * image is sent with SendImage() it should not be discarded 
  356.      * but held in the encoder until ReleaseImage() is called().
  357.      */
  358.     STDMETHOD(InitResend)   (THIS_ IHXValues* pOptions) PURE;
  359.     /*
  360.      * ReleaseImage() informs the encoder that the application no longer
  361.      * intends to call SendImage() on the image referenced by ulImageHandle
  362.      * and that it can discard the image. Further calls to SendImage(x) will
  363.      * return HXR_UNKNOWN_IMAGE after ReleaseImage(x) has been called.
  364.      * ReleaseImage(x) will return HXR_UNKNOWN_IMAGE if x is an unknown handle.
  365.      */
  366.     STDMETHOD(ReleaseImage) (THIS_ UINT32 ulImageHandle) PURE;
  367.     /*
  368.      * DumpAllQueuedPackets() clears any packets currently waiting to be
  369.      * sent to the server. These packets were put on the send queue by
  370.      * either IHXLiveRealPix::SendImage() or IHXLiveRealPix::SendEffect().
  371.      */
  372.     STDMETHOD(DumpAllQueuedPackets) (THIS) PURE;
  373. };
  374. #endif