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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: dllindex.h,v 1.2.40.1 2004/07/09 01:56:22 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 _INC_DLLINDEX
  50. #define _INC_DLLINDEX   1
  51. #include "h261type.h"
  52. #include "hvenc.h"
  53. typedef enum coderState {
  54.     framePreProcessed,
  55.     frameCoding,
  56.     frameReconstructed
  57. } coderState;
  58. /* The H261CodingControl struct passes bitrate control information from
  59.  * "the outside world" to the H261 encoder.
  60. */
  61. typedef struct {
  62.     long    qTargetBits; // This is the number of bits the coder should try to produce for
  63.                         // the current frame. We will use R(video) * 1/Target_Frame_Rate.
  64.                         // Typically targetBits is within +/- 20% of actual bits acheived.
  65.     long    minBits;    // Minimum number of bits to generate for the current
  66.                         // frame. Used to avoid under-run condition. 
  67.     long    maxBits;    // Maximum number of bits to generate for current frame.
  68.     S32     effFactor;  // Efficiency factor (used in QuantSelect).
  69.     short   maxQuant;   // Maximum quantizer step to use.
  70.     short   minQuant;   // Minimum quantizer step to use.
  71.     S32     K3;         // MahKeeNack controls:
  72.     S32     KAll;
  73.     S32     Min3;
  74.     S32     MinAll;
  75.     S32     weight_1;   // Tweak factors for coding type decision.
  76.     S32     weight_2;
  77.     S32     sendGobHeaders;
  78.     S32     prevBits;       // Bits produced in last frame (used by QuantSelect)
  79.     S32     prevQuality;    // Quant/"quality" in last frame (used by QuantSelect)
  80.     double  prevK;          // K value computed in last frame (used by QuantSelect)
  81.     unsigned short  vidType;    // Frame type
  82. } H261CodingControl;
  83. /* The H261Stats struct retains information the coder uses to
  84.  *  regulate its output.
  85. */
  86. typedef struct {
  87.     MbInfo      *mi;                // Array of MbInfo structures
  88.     FrameInfo   fi;                 // Frame information structure for tuning 
  89.     long        prevTargetBits;     // Target bits for last frame
  90.     long        prevTotalBits;      // Total bits generated for last frame
  91.     long        *GOBError;          // Error for each GOB
  92.     long        *GOBBits;           // Number of bits generated for each GOB
  93.     long        frame_counter;      // Incremented after each picture to generate
  94.                                     // "phases" for subsampling etc. No need to initialize. 
  95.     short       *GOBQuant;          // Quantizer step used for each GOB 
  96.     double      SNR;                // Signal To Noise Ratio of last frame
  97.     S32         mvSum;              // Sum of magnitude of all motion vectors
  98. } H261Stats;                
  99.                                                                                 
  100. /* The H261Encoder struct defines the I/O and steady-state data
  101.  * for the H261 encoder.
  102.  * NOTE: This stucture is only passed as a pointer, so we don't worry about its size. md 02.24.94
  103. */
  104. typedef struct h261enc *H261EncoderPtr;
  105. typedef struct h261enc {
  106.     PICTURE             newIn;      // New input frame (second input frame if PBframeMode)
  107.     PICTURE             oldIn;      // Old input frame/prediction/newOut
  108.     PICTURE             oldOut;     // Old output frame
  109.     PICTURE             B_In;       // First input frame (if PBframeMode)
  110.     PICTURE             BPred;      // Temporary array used for B-frame encoding
  111.     BS_PTR              bsStart;    // Points to start of bitstream 
  112.     BS_PTR              bsEnd;      // Updated bitstream pointer
  113.     H261CodingControl   cntrl;      // Coding control structure
  114.     H261Stats           stats;      // Coder statistics
  115.     GOB_DESCR           *gob;       // Array of GOB descriptors
  116.     MACROBLOCK_DESCR    *mb;        // Array of MB descriptors
  117.     long                *mbDiff;    // Sq. diff between newIn and oldIn for each MB
  118.     long                *blkIntra;  // 8x8 block variances
  119.     SYMBOL              *sym;       // Work array to hold Run-Level symbols
  120.                                     // Possible to use same area for oldOut and sym 
  121.                                     // (although sym is larger for worst-case)
  122.     long                maxsym;     // Dimension of sym[]
  123.     BS_PTR              bsAbs;      // Points to fixed bitstream area.
  124.     short               formatCap;  // CIF or QCIF
  125.     short               dummy;      // struct alignment 
  126.     int                 ptype;      // PTYPE field of last bitstream
  127.     int                 gfid;       // GFID field of last bitstream
  128.     int                 trPrev;     // Hold on to Temp Reference for prev. picture
  129.     enum coderState     state;      // coder state
  130.     MBMap               mestMap[2]; // Map of motion vector macroblock types.
  131. } H261Encoder; 
  132. /* The H261PicDescriptor struct passes picture layer information from
  133.  *  "the outside world" to the coder.
  134. */
  135. typedef struct {
  136.     unsigned short  temporalRef;    // Temporal reference. 5 bits indicating number of
  137.                                     // frames "skipped" ( see H.261 standard )
  138.     unsigned short  fastUpdate;     // Fast update request, 1 = do entire frame Intra
  139.     unsigned short  splitScreen;    // 0 = off, 1 = on
  140.     unsigned short  docCamera;      // 0 = off, 1 = on
  141.     unsigned short  format;         // 0 = QCIF, 1 = CIF, 2 = other
  142.     unsigned short  hiRes;          // 0 = on, 1 = off 
  143.     unsigned short  codingMethod;   // 0 = H.261, 1 = H.263
  144.     unsigned short  unrestrictedMv; // 0 = off, 1 = on
  145.     unsigned short  advancedPred;   // 0 = off, 1 = on
  146.     unsigned short  syntax_basedAC; // 0 = off, 1 = on
  147.     unsigned short  PBframeMode;    // 0 = off, 1 = on
  148.     unsigned short  reducedResUpdate;       // 0 = off, 1 = on
  149.     unsigned short  deblockingFilterMode;   // 0 = off, 1 = on
  150.     unsigned short  advancedIntraMode;      // 0 = off, 1 = on
  151.     unsigned short  tempRefBframe;  // Present if PB-frame; add these 3 bits to TR for
  152.                                     // prev. P-frame to get TR for B-frame
  153.     unsigned short  dbQuant;        // Quantization info for B-pictures (2 bits)
  154.     unsigned long   width;          // Width of luma 
  155.     unsigned long   height;         // Height of luma
  156.     unsigned long   peiCount;       // Number of p
  157. unsigned long forcedUpdateThresh; // Number of Inter Coded Frames before Intra update
  158.     unsigned long   fastUpdateGOB;          // 1 = Fast Update a subset of GOBs
  159.     unsigned long   fastUpdateFirstGOB;     // First GOB to intracode
  160.     unsigned long   fastUpdateNumberGOBs;   // Number of GOB
  161.     unsigned char   pSpare[MAX_PEI_COUNT]; /* Flawfinder: ignore */
  162. } H261PicDescriptor;
  163. // H261DecState contains state variables to support decoding in "chunks"
  164. #define SC_MAX              (50)    // Max # of startcodes to process per call
  165. typedef struct {
  166.     BS_PTR  bspStartCode[SC_MAX];   // Position of startcodes ("start")
  167.     int     gobNumber[SC_MAX];      // GOB numbers following each startcode ("gn")
  168.     int     nStartCodes;            // Number of startcodes found ("num_sc")
  169.     int     currentStartCode;       // Startcode currently processed ("sc")
  170.     GOB_DESCR   currentGob; // Can refer to several GOBs, if GOB headers are left out ("gob")
  171.     int     mbnum;          // internal variable in recon_gob
  172.     int     col;            // internal variable in recon_gob
  173.     int     i;              // internal variable in recon_gob
  174.     int     actComp;        // Keeps track of amount of computations
  175. } H261DecState;
  176. /* The H261Decoder struct defines the I/O for the H261 decoder.
  177.  * NOTE: This stucture is only passed as a pointer, so we don't worry about its size. md 02.24.94
  178. */
  179. #define DECODER_STATUS_SIZE 4
  180. typedef struct { 
  181.     BS_PTR              bsStart;    // Start of bitstream
  182.     BS_PTR              bsEnd;      // End of bitstream
  183.     BS_PTR              newBs;      // Returns next "bsStart"
  184.     BS_PTR              bsAbs;      // Points to fixed bitstream area.
  185.     MACROBLOCK_DESCR *  mb;         // Work array: describes each macroblock
  186.     int                 maxMbnum;   // Dimension of mb[] array
  187.     SYMBOL *            sym;        // Work array for symbol decoding
  188.     int                 maxSym;     // Dimension of sym[] array
  189.     H261DecState        state;      // State variables to support decoding with "timeout"
  190.     int                 maxComp;    // Return when actComp exceeds this number
  191.                                     // Set to zero to decode without "timeout"
  192.     PICTURE             oldOut;     // Old output frame (predictor input)
  193.     PICTURE             newOut;     // New output frame (second output if PBframeMode)
  194.     PICTURE             B_Out;      // First output frame (if PBframeMode)
  195.     PICTURE             prevOldOut; // Doublebuffering of output frames
  196.     PICTURE *           pNewPic;    // Points to most recent output frame
  197.     PICTURE *           pPrevPic;   // Points to previous output frame
  198.     PICTURE             convertPic; // Used for any necessary upsampling after decoding
  199.     PICTURE_DESCR       pic_layer;  // Returns Picture layer info
  200.     S32                 next_gob;   // I/O: Next GOB to process. Search for PSC if 0.
  201.     VvDecoderStats      status;     // Return status
  202.     short               formatCap;  // CIF or QCIF 
  203.     unsigned short      codingMethod;   // 0 = H.261, 1 = H.263
  204.     S32                 PBframeCap; // If 0: don't reconstruct B frame (just parse the bits)
  205.     S32                 pendingFrame;   // Set to 1 when returning B-frame, otherwise 0
  206.     int                 ptype;      // PTYPE field of last bitstream
  207.     int                 gfid;       // GFID field of last bitstream
  208.     MBMap               decMB;      // Map of decoded macroblock types.
  209. } H261Decoder; 
  210. /* Use this frame definition until videoCompressionStreamHandler is written */
  211. typedef struct frame *FramePtr;
  212. typedef struct frame {
  213.     unsigned long   lpData;     // Point to data (cannot use * because of DLL hooey)
  214.     unsigned long   width;      // Width of luma 
  215.     unsigned long   height;     // Height of luma
  216.     unsigned long   imgSize;    // Total Size of Image Data
  217.     unsigned long   imgOffset;  // Offset to image data
  218.     unsigned short  chromaDiv;  // To get size of chroma planes
  219.     unsigned short  vidType;    // Frame type
  220. } Frame;
  221. /* Misc defines*/
  222. #define NO_ERROR            0L
  223. #define UNKNOWN_VIDTYPE     1
  224. #define VIDTYPE_NOT_SUPPORTED_YET   2
  225. /* VvOpenEncoder and VvCloseEncoder defines */
  226. #define MAX_NUM_ENCODERS    2
  227. #ifndef AP_VIDEORESIZING
  228.   #define MAX_NUM_DECODERS    2
  229. #else
  230.   #define MAX_NUM_DECODERS    20
  231. #endif
  232. /* VvOpenEncoder and VvCloseEncoder error codes */
  233. #define MAX_ENCODERS_OPEN       MAX_NUM_ENCODERS + 10
  234. #define FAILED_MALLOC           MAX_NUM_ENCODERS + 11
  235. #define NO_ENCODERS_OPEN        MAX_NUM_ENCODERS + 12
  236. #define MAX_DECODERS_OPEN       MAX_NUM_ENCODERS + 13
  237. #define NO_DECODERS_OPEN        MAX_NUM_ENCODERS + 14
  238. #define UNKNOWN_PICTURE_FORMAT  MAX_NUM_ENCODERS + 15
  239.                 
  240. #endif