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

📄 dllindex.h

📁 linux下的一款播放器
💻 H
字号:
/* ***** BEGIN LICENSE BLOCK ***** * Source last modified: $Id: dllindex.h,v 1.2.40.1 2004/07/09 01:56:22 hubbe Exp $ *  * Portions Copyright (c) 1995-2004 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. *  * Alternatively, the contents of this file may be used under the * terms of the GNU General Public License Version 2 or later (the * "GPL") in which case the provisions of the GPL are applicable * instead of those above. If you wish to allow use of your version of * this file only under the terms of the GPL, and not to allow others * to use your version of this file under the terms of either the RPSL * or RCSL, indicate your decision by deleting the provisions above * and replace them with the notice and other provisions required by * the GPL. If you do not delete the provisions above, a recipient may * use your version of this file under the terms of any one of the * RPSL, the RCSL or the GPL. *  * 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 ***** */#ifndef _INC_DLLINDEX#define _INC_DLLINDEX   1#include "h261type.h"#include "hvenc.h"typedef enum coderState {    framePreProcessed,    frameCoding,    frameReconstructed} coderState;/* The H261CodingControl struct passes bitrate control information from * "the outside world" to the H261 encoder.*/typedef struct {    long    qTargetBits; // This is the number of bits the coder should try to produce for                        // the current frame. We will use R(video) * 1/Target_Frame_Rate.                        // Typically targetBits is within +/- 20% of actual bits acheived.    long    minBits;    // Minimum number of bits to generate for the current                        // frame. Used to avoid under-run condition.     long    maxBits;    // Maximum number of bits to generate for current frame.    S32     effFactor;  // Efficiency factor (used in QuantSelect).    short   maxQuant;   // Maximum quantizer step to use.    short   minQuant;   // Minimum quantizer step to use.    S32     K3;         // MahKeeNack controls:    S32     KAll;    S32     Min3;    S32     MinAll;    S32     weight_1;   // Tweak factors for coding type decision.    S32     weight_2;    S32     sendGobHeaders;    S32     prevBits;       // Bits produced in last frame (used by QuantSelect)    S32     prevQuality;    // Quant/"quality" in last frame (used by QuantSelect)    double  prevK;          // K value computed in last frame (used by QuantSelect)    unsigned short  vidType;    // Frame type} H261CodingControl;/* The H261Stats struct retains information the coder uses to *  regulate its output.*/typedef struct {    MbInfo      *mi;                // Array of MbInfo structures    FrameInfo   fi;                 // Frame information structure for tuning     long        prevTargetBits;     // Target bits for last frame    long        prevTotalBits;      // Total bits generated for last frame    long        *GOBError;          // Error for each GOB    long        *GOBBits;           // Number of bits generated for each GOB    long        frame_counter;      // Incremented after each picture to generate                                    // "phases" for subsampling etc. No need to initialize.     short       *GOBQuant;          // Quantizer step used for each GOB     double      SNR;                // Signal To Noise Ratio of last frame    S32         mvSum;              // Sum of magnitude of all motion vectors} H261Stats;                                                                                                /* The H261Encoder struct defines the I/O and steady-state data * for the H261 encoder. * NOTE: This stucture is only passed as a pointer, so we don't worry about its size. md 02.24.94*/typedef struct h261enc *H261EncoderPtr;typedef struct h261enc {    PICTURE             newIn;      // New input frame (second input frame if PBframeMode)    PICTURE             oldIn;      // Old input frame/prediction/newOut    PICTURE             oldOut;     // Old output frame    PICTURE             B_In;       // First input frame (if PBframeMode)    PICTURE             BPred;      // Temporary array used for B-frame encoding    BS_PTR              bsStart;    // Points to start of bitstream     BS_PTR              bsEnd;      // Updated bitstream pointer    H261CodingControl   cntrl;      // Coding control structure    H261Stats           stats;      // Coder statistics    GOB_DESCR           *gob;       // Array of GOB descriptors    MACROBLOCK_DESCR    *mb;        // Array of MB descriptors    long                *mbDiff;    // Sq. diff between newIn and oldIn for each MB    long                *blkIntra;  // 8x8 block variances    SYMBOL              *sym;       // Work array to hold Run-Level symbols                                    // Possible to use same area for oldOut and sym                                     // (although sym is larger for worst-case)    long                maxsym;     // Dimension of sym[]    BS_PTR              bsAbs;      // Points to fixed bitstream area.    short               formatCap;  // CIF or QCIF    short               dummy;      // struct alignment     int                 ptype;      // PTYPE field of last bitstream    int                 gfid;       // GFID field of last bitstream    int                 trPrev;     // Hold on to Temp Reference for prev. picture    enum coderState     state;      // coder state    MBMap               mestMap[2]; // Map of motion vector macroblock types.} H261Encoder; /* The H261PicDescriptor struct passes picture layer information from *  "the outside world" to the coder.*/typedef struct {    unsigned short  temporalRef;    // Temporal reference. 5 bits indicating number of                                    // frames "skipped" ( see H.261 standard )    unsigned short  fastUpdate;     // Fast update request, 1 = do entire frame Intra    unsigned short  splitScreen;    // 0 = off, 1 = on    unsigned short  docCamera;      // 0 = off, 1 = on    unsigned short  format;         // 0 = QCIF, 1 = CIF, 2 = other    unsigned short  hiRes;          // 0 = on, 1 = off     unsigned short  codingMethod;   // 0 = H.261, 1 = H.263    unsigned short  unrestrictedMv; // 0 = off, 1 = on    unsigned short  advancedPred;   // 0 = off, 1 = on    unsigned short  syntax_basedAC; // 0 = off, 1 = on    unsigned short  PBframeMode;    // 0 = off, 1 = on    unsigned short  reducedResUpdate;       // 0 = off, 1 = on    unsigned short  deblockingFilterMode;   // 0 = off, 1 = on    unsigned short  advancedIntraMode;      // 0 = off, 1 = on    unsigned short  tempRefBframe;  // Present if PB-frame; add these 3 bits to TR for                                    // prev. P-frame to get TR for B-frame    unsigned short  dbQuant;        // Quantization info for B-pictures (2 bits)    unsigned long   width;          // Width of luma     unsigned long   height;         // Height of luma    unsigned long   peiCount;       // Number of p	unsigned long	forcedUpdateThresh;		// Number of Inter Coded Frames before Intra update    unsigned long   fastUpdateGOB;          // 1 = Fast Update a subset of GOBs    unsigned long   fastUpdateFirstGOB;     // First GOB to intracode    unsigned long   fastUpdateNumberGOBs;   // Number of GOB    unsigned char   pSpare[MAX_PEI_COUNT]; /* Flawfinder: ignore */} H261PicDescriptor;// H261DecState contains state variables to support decoding in "chunks"#define SC_MAX              (50)    // Max # of startcodes to process per calltypedef struct {    BS_PTR  bspStartCode[SC_MAX];   // Position of startcodes ("start")    int     gobNumber[SC_MAX];      // GOB numbers following each startcode ("gn")    int     nStartCodes;            // Number of startcodes found ("num_sc")    int     currentStartCode;       // Startcode currently processed ("sc")    GOB_DESCR   currentGob; // Can refer to several GOBs, if GOB headers are left out ("gob")    int     mbnum;          // internal variable in recon_gob    int     col;            // internal variable in recon_gob    int     i;              // internal variable in recon_gob    int     actComp;        // Keeps track of amount of computations} H261DecState;/* The H261Decoder struct defines the I/O for the H261 decoder. * NOTE: This stucture is only passed as a pointer, so we don't worry about its size. md 02.24.94*/#define DECODER_STATUS_SIZE 4typedef struct {     BS_PTR              bsStart;    // Start of bitstream    BS_PTR              bsEnd;      // End of bitstream    BS_PTR              newBs;      // Returns next "bsStart"    BS_PTR              bsAbs;      // Points to fixed bitstream area.    MACROBLOCK_DESCR *  mb;         // Work array: describes each macroblock    int                 maxMbnum;   // Dimension of mb[] array    SYMBOL *            sym;        // Work array for symbol decoding    int                 maxSym;     // Dimension of sym[] array    H261DecState        state;      // State variables to support decoding with "timeout"    int                 maxComp;    // Return when actComp exceeds this number                                    // Set to zero to decode without "timeout"    PICTURE             oldOut;     // Old output frame (predictor input)    PICTURE             newOut;     // New output frame (second output if PBframeMode)    PICTURE             B_Out;      // First output frame (if PBframeMode)    PICTURE             prevOldOut; // Doublebuffering of output frames    PICTURE *           pNewPic;    // Points to most recent output frame    PICTURE *           pPrevPic;   // Points to previous output frame    PICTURE             convertPic; // Used for any necessary upsampling after decoding    PICTURE_DESCR       pic_layer;  // Returns Picture layer info    S32                 next_gob;   // I/O: Next GOB to process. Search for PSC if 0.    VvDecoderStats      status;     // Return status    short               formatCap;  // CIF or QCIF     unsigned short      codingMethod;   // 0 = H.261, 1 = H.263    S32                 PBframeCap; // If 0: don't reconstruct B frame (just parse the bits)    S32                 pendingFrame;   // Set to 1 when returning B-frame, otherwise 0    int                 ptype;      // PTYPE field of last bitstream    int                 gfid;       // GFID field of last bitstream    MBMap               decMB;      // Map of decoded macroblock types.} H261Decoder; /* Use this frame definition until videoCompressionStreamHandler is written */typedef struct frame *FramePtr;typedef struct frame {    unsigned long   lpData;     // Point to data (cannot use * because of DLL hooey)    unsigned long   width;      // Width of luma     unsigned long   height;     // Height of luma    unsigned long   imgSize;    // Total Size of Image Data    unsigned long   imgOffset;  // Offset to image data    unsigned short  chromaDiv;  // To get size of chroma planes    unsigned short  vidType;    // Frame type} Frame;/* Misc defines*/#define NO_ERROR            0L#define UNKNOWN_VIDTYPE     1#define VIDTYPE_NOT_SUPPORTED_YET   2/* VvOpenEncoder and VvCloseEncoder defines */#define MAX_NUM_ENCODERS    2#ifndef AP_VIDEORESIZING  #define MAX_NUM_DECODERS    2#else  #define MAX_NUM_DECODERS    20#endif/* VvOpenEncoder and VvCloseEncoder error codes */#define MAX_ENCODERS_OPEN       MAX_NUM_ENCODERS + 10#define FAILED_MALLOC           MAX_NUM_ENCODERS + 11#define NO_ENCODERS_OPEN        MAX_NUM_ENCODERS + 12#define MAX_DECODERS_OPEN       MAX_NUM_ENCODERS + 13#define NO_DECODERS_OPEN        MAX_NUM_ENCODERS + 14#define UNKNOWN_PICTURE_FORMAT  MAX_NUM_ENCODERS + 15                #endif

⌨️ 快捷键说明

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