亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? skl_mpg4.h

?? mpeg4編解碼器
?? H
?? 第 1 頁 / 共 2 頁
字號:
          @see SKL_MEM_I */    virtual SKL_MEM_I *Set_Memory_Manager(SKL_MEM_I *Mem=0) = 0;      /** Sets the CPU feature to use.          @param Cpu : see the enum description for a list of available           cpu features. */    virtual void Set_CPU(SKL_CPU_FEATURE Cpu = SKL_CPU_DETECT) = 0;      /** Sets the custom quantization matrix for MPEG4 quantization type (0).          @param Intra Should be 1 to use the custom matrix for intra macroblocks, or 0          for inter macroblocks.          @param M a pointer to 64 bytes containing the 8x8 matrix coefficients. If          the pointer is null, the coefficients are restored to their default, initial,          values. */    virtual void Set_Custom_Matrix(int Intra, const SKL_BYTE *M=0) = 0;      /** This function plugs a new analyzer code in replacement of          the previous one.           @return Set_Analyzer() returns previous analyzer.          @param Analyzer Should be 0 to restore the default, built-in, analyzer.          @see Get_analyzer          @see SKL_MP4_ANALYZER */    virtual SKL_MP4_ANALYZER *Set_Analyzer(SKL_MP4_ANALYZER *Analyzer=0) = 0;      /** Returns the analyzer currently associated with the encoder.           @see Set_analyzer */    virtual SKL_MP4_ANALYZER *Get_Analyzer() const = 0;       /** Set post-coding hook function. The signature of this function           is the following typedef: <p>           typedef void (*SKL_MP4_SLICER)(const SKL_MP4_PIC *Pic, int y, int Height, SKL_ANY Data);           @param Slicer callback function to use           @param Slicer_Data can be anything, and will be passed as is           to the Slicer hook function. */    virtual void Set_Slicer(SKL_MP4_SLICER Slicer, SKL_ANY Slicer_Data=0) = 0;      /** @internal           For debug only. Returns all the Y/U/V planes in a single, edged, frame           @param Pic the structure filled with frame's pixels  */    virtual void Get_All_Frames(SKL_MP4_PIC *Pic) const = 0;      /** @internal Sets the internal debug level. */    virtual void Set_Debug_Level(int Level=0) = 0;     /** This method can be used for very special syntax controls over the bitstream.        @param Param can be one of the following constant strings:<br>        <ul>        <li>"emit-key-headers": for streaming purpose, the bitstream will contain        a VOL header every time a keyframe is transmitted.<br></li>        <li>"no-emit-key-headers": disables the above (default).<br></li>        <li>"emit-sequence-codes": the bitstream will contain a SEQUENCE_START and        SEQUENCE_END codes at the beginning and the end.<br></li>        <li>"no-sequence-codes": disables the above (default).<br></li>        </ul>        Note: Call to this method should occur preferably at the beginning of        the encoding process.       */    virtual int Ioctl(SKL_CST_STRING Param) = 0;};////////////////////////////////////////////////////////////  SKL_MP4_ANALYZER// Frame analyzers to be plugged into SKL_MP4_ENC//////////////////////////////////////////////////////////  /** @struct SKL_MP4_INFOS       SKL_MP4_INFOS is used to share informations between      the bitstream-coding core (instance of SKL_MP4_ENC)      and the frame analyzer (instance of SKL_MP4_ANALYZER)    */struct SKL_MP4_INFOS{  SKL_MP4_INFOS(SKL_MEM_I *Memory=0);  SKL_MEM_I *Mem;                                   /**< Memory pool */  SKL_MEM_I *Set_Memory_Manager(SKL_MEM_I *mem);    /**< mem=0 => use C++ heap */    /** public infos of general interest */  int Width;             /**< Width of picture, in pixel. */  int Height;            /**< Height of picture, in pixel. */  int BpS;               /**< Bytes Per Scanline */  int Frame_Number;      /**< Frame number in display order. */  int MB_W;              /**< Width of padded picture, in macroblock units */  int MB_H;              /**< Height of padded picture, in macroblock units */  int MV_Stride;         /**< stride for motion vectors array */  int Texture_Bits;  int MV_Bits;  int Coded_Bits;  SKL_MP4_PIC *Past;     /**< The past picture use for reference */  SKL_MP4_PIC *Cur;      /**< The current picture being motion-searched */  SKL_MP4_PIC *Future;   /**< The future reference picture, if applicable (B-VOP). */  const SKL_IMG_DSP *Img_Dsp;   /**< Image low-level DSP functions */  const SKL_MB_DSP  *MB_Dsp;    /**< Macroblock low-level DSP functions */  SKL_GMC_DSP       *GMC_Dsp;   /**< GMC low-level DSP functions */};  /** @class SKL_MP4_ANALYZER      Base class for analyzing input, making coding decisions      and performing bit-rate control. Actually drives      the bitstream-coder (SKL_MP4_ENC).       Setting/Access/Control of internal parameter is granted       through the Set_Param() and Get_Param() functions.      See description of this function for details. We encourage you      to have a look at the example 'tmp4.cpp', that exercises every      possible params of Set_Param() through the command-line options.      @see SKL_MP4_ENC    */class SKL_MP4_ANALYZER{  protected:    SKL_MEM_I *_Mem;       /**< @internal Memory pool, for allocating auxiliary data, e.g. */  public:    SKL_MP4_ANALYZER(SKL_MEM_I *Mem=0) : _Mem(Mem) {}    virtual ~SKL_MP4_ANALYZER() {}      /** This function is called when the invoked analyzer is about to be enabled. */    virtual void Wake_Up(SKL_MP4_ANALYZER *Previous) = 0;      /** this function is called when the invoked analyzer is about to be disabled. */    virtual void Shut_Down() = 0;      /** This function is responsible for motion estimation.          It should populate the array of motion          vectors MVs[] and the macroblock map *Map with the          desired macroblock types.          @return          return code: 0: intra coding required (I-VOP)                       1/2: predictive coding required (1=P or 2=B-VOP)                       3: GMC coding requested       */    virtual int Analyze(SKL_MP4_INFOS * const Frame) = 0;      /** This function handles variable per-macroblocks quantization.          New->Map[].dQ should be filled with dQ hints.           This is a separate virtual, not merged with the above Analyze()           motion estimation, since the coding type can be changed by the          encoder inbetween. This impacts the range of allowed dQ           values (eg.: for B-VOP).        */    virtual void Analyze_dQ(SKL_MP4_INFOS * const Frame, int For_BVOP) = 0;      /** Post-coding update (for rate control, e.g.)          @param Infos contains informations about the last coded frame       */    virtual void Post_Coding_Update(const SKL_MP4_INFOS * const Infos) = 0;      /** Sets the value of the integer parameter described by Param string.          These parameter settings control the core of the codec during          motion estimation and bitstream coding.          @return 0 if parameter is not applicable, or -1 if Value has invalid range.          @param Param can be one of the following constant strings:<br>          <ul>          <li>"buffer-size": If non-zero, specify the size of coded bits buffer to allocate for each frame coding.<br></li>          <li>"quant": Sets the main quantizer (the lower, the higher the quality).           Should be in range [1..31]. When variable bitrate is used, this value is           internally adjusted after each frame coding, while trying to meet the          desired bitrate.<br></li>          <li>"base-quant": Similar to "quant" parameter, but sets the quantizer of key-frames.           By default, key-frames are assumed to share the global quantizer, if this parameter          is not set.<br></li>          <li>"quant-type": Quantization method used: 0 for H263's, 1 for MPEG4's.<br></li>          <li>"hi-mem": Consumes more memory for faster motion search. Only useful for Quarter Pixel.</li>          <li>"intra-limit": Percentage of INTRA macroblock necessary to trigger a scene           change (with key frame signaled).<br></li>          <li>"intra-max-delay": Maximum allowed number of P-frames between each INTRA key-frame.<br></li>          <li>"intra-max-count": Counter for "intra-max-delay". When it reaches 0, an INTRA frame is emitted.<br></li>          <li>"rounding": Block-interpolation rounding mode: 0 (down) or 1 (up)<br></li>          <li>"subpixel": Subpixel precision to use: 0=full-pixel, 1=half-pixel (default), 2=quarter pixel.<br></li>          <li>"use-trellis": Switch trellis-based quantization on (non-zero Value) or off (Value=0)<br></li>          <li>"search-size": size in 16-pixels units of the search window. When          bitrate control is on, this size is changed adaptively.<br></li>          <li>"base-search-size": Similar to "search-size", this is the default value          used as starting point after each key-frame.<br></li>          <li>"search-method": Internal searcho method (0 to 5)<br></li>          <li>"search-metric": Metric for evaluating match: 0=SAD (default), 1=SSD, 2=Hadamard.<br></li>          <li>"4v-probing": Worthiness Threshold (as percentage) of 4-motion-vector blocks to probe.<br></li>          <li>"sad-skip-limit": Metric threshold below which a block is SKIPed <br></li>          <li>"sad-intra-limit": Metric threshold above which a block is coded INTRA<br></li>          <li>"inter-threshold": Amplitude of INTER coefficient below which a sub-block is skipped (using Coded Block Pattern)<br></li>          <li>"bitrate": If non-zero, turns (simplistic) bitrate control on. It then will adjust "quant", "search-size"          parameter, and use the "framerate" setting too.<br></li>          <li>"field-pred-probing": Worthiness Threshold (as percentage) for field/frame block decision.<br></li>          <li>"interlace-field": Use interlace-block coding if non-zero<br></li>          <li>"interlace-dct": Use interlace-block DCT coding of coefficient, if non-zero<br></li>          <li>"gmc-pts": Number of GMC points to use (0 to 3)<br></li>          <li>"gmc-mode": If non-zero, turns GMC estimation on (experimental)<br></li>          <li>"gmc-accuracy": GMC interpolation precision (0 to 3)<br></li>          <li>"reduced-frame": Use reduced-frame coding, if non-zero<br></li>          <li>"luminance-masking": Switch luminance-masking on (non-zero Value) or off (Value=0)<br></li>          <li>"frequency": Frequency of frame-tick resets.<br></li>          <li>"frame-ticks": Precision of frame-tick coding<br></li>          </ul>          @param Value the parameter value to set.          Note: call to Set_Param() can occur any time during the encoding process          and will take effect immediately during next call to Encode(). In particular,          this method can be used during two-pass encoding to restore modified parameters          stored in a first-pass file.        */    virtual int Set_Param(const char * const Param, int Value) = 0;      /** Sets the value of the float parameter described by Param string.          These parameter settings control the core of the codec during          motion estimation and bitstream coding.           @return 0 if parameter is not applicable, or -1 if Value has invalid range.          @param Param can be one of the following constant strings:<br>          <ul>          <li>"dquant-amp": If non-zero, turns luminance-masking on, with the specified Amplitude (the higher, the higher the effect, and the lower the quality).<br></li>          <li>"framerate": Number of frame-per-seconds to achieve when bit-rate control is on.<br></li>          <li>"quant": Specify the quantizer as a float value.<br></li>          <li>"base-quant": Specify the base quantizer as a float value.<br></li>          <li>"search-size": Specify the search-window size as a float value.<br></li>          <li>"base-search-size":Specify the base search-window size as a float value.<br></li>          </ul>          Note: call to Set_Param() can occur any time during the encoding process          and will take effect immediately during next call to Encode(). In particular,          this method can be used during two-pass encoding to restore modified parameters          stored in a first-pass file.          @param Value the parameter value to set.        */    virtual int Set_Param(const char * const Param, float Value) = 0;      /** Sets the value of the string parameter described by Param string.          @return 0 if parameter is not applicable, or -1 if Value has invalid range.          @param Param can be one of the following constant strings:<br>          <ul>          <li>"passfile": Name of log file to use for 2-pass bitrate control. This parameter          should be set before encoding process begins.<br></li>          </ul>          @param Value the string parameter value to set.        */    virtual int Set_Param(const char * const Param, const char * const Value) = 0;      /** Returns the current value of the integer parameter described by Param string.          @return 0 if parameter is not applicable.          @see Set_Param()          @param Value          @param Param This string can be one of the corresponding ones passed to Set_Param().          In addition, there are some non-settable parameters, whose values can be          accessed using the following string:          <ul>          <li>"fcode": Desired typical length of motion vectors (bitstream syntax).<br></li>          <li>"version": the version of the core (analyzer)<br></li>          </ul>          @param Value pointer the parameter value.        */    virtual int Get_Param(const char * const Param, int *Value) const = 0;      /** Returns the current value of the float parameter described by Param string.          @return 0 if parameter is not applicable.          @see Set_Param()          @param Param: This string can be one of the corresponding ones passed to Set_Param().          @param Value pointer the parameter value.        */    virtual int Get_Param(const char * const Param, float *Value) const = 0;      /** Returns the current value of the string parameter described by Param string.          @return 0 if parameter is not applicable.          @see Set_Param()          @param Param: This string can be one of the corresponding ones passed to Set_Param().          @param Value pointer the parameter value.        */    virtual int Get_Param(const char * const Param, const char ** const Value) const = 0;      /** Get read-only internal data. Returns NULL is not applicable. This          is mainly for internal use. */    virtual const int *Get_Param(const char * const Param) const = 0;      /** Set a new memory pool to use internally for subsequent memory allocation.          Warning: it should preferably be called at start-up only,           to ensure that cycles of New()/Delete() are performed on the          same memory pool.          @param Mem The memory pool to use. If equal to 0 (default),          the C++ heap will be used.           @return This function will return the previous memory manager.          @see SKL_MEM_I           @see Get_Mem() */    virtual SKL_MEM_I *Set_Memory_Manager(SKL_MEM_I *Mem=0) = 0;      /** This function returns the current memory pool, as set by        Set_Memory_Manager()        @see Get_Memory_Manager()        @see SKL_MEM_I  */    SKL_MEM_I *Get_Mem() const { return _Mem; }     /** @internal prints analyzer's capabilities.  */    virtual void Print_Caps() = 0;};  /** factory for default Analyzer. Note that it is already assigned by default      to each SKL_MP4_ENC instances. You need not set another one. */extern SKL_EXPORT SKL_MP4_ANALYZER *Skl_MP4_Get_Default_Analyzer(SKL_MEM_I *Mem);  /** Destructor of default analyzer.      @param Analyzer Must be an instance returned by Skl_MP4_Get_Default_Analyzer */extern SKL_EXPORT void Skl_MP4_Destroy_Default_Analyzer(SKL_MP4_ANALYZER *Analyzer);//////////////////////////////////////////////////////////#endif   /* _SKL_MPG4_H_ */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美在线观看一区二区三区| 久久久国际精品| 精品乱人伦小说| 亚洲欧美另类图片小说| 美女被吸乳得到大胸91| 99精品久久只有精品| 久久久久青草大香线综合精品| 91精品婷婷国产综合久久竹菊| 国产亚洲1区2区3区| 国产一级精品在线| 中文字幕精品综合| 欧美三电影在线| 日韩高清在线电影| 精品久久久久一区二区国产| 久久97超碰色| 亚洲精品国产高清久久伦理二区| 欧美一区二区三区在线观看视频| 欧美精品在线观看一区二区| 国产精品精品国产色婷婷| 国产呦精品一区二区三区网站| 欧美三级午夜理伦三级中视频| 国产精品国产三级国产专播品爱网| 韩国毛片一区二区三区| 日韩免费在线观看| 日本强好片久久久久久aaa| 欧洲视频一区二区| 亚洲精品你懂的| 日本丶国产丶欧美色综合| 久久久久国产一区二区三区四区| 免费在线观看精品| 7777精品久久久大香线蕉| 亚洲一二三级电影| 欧美日韩国产在线观看| 午夜精彩视频在线观看不卡| 一本色道久久综合精品竹菊| 一区二区高清视频在线观看| 91成人国产精品| 一区二区三区四区不卡在线 | 欧美精品丝袜久久久中文字幕| 国产精品剧情在线亚洲| 99re在线视频这里只有精品| 亚洲素人一区二区| 一本久久a久久免费精品不卡| 亚洲欧洲中文日韩久久av乱码| 色综合中文字幕国产| 亚洲精品欧美二区三区中文字幕| 99热在这里有精品免费| 亚洲欧美另类小说| 欧美精品色综合| 麻豆精品久久久| 久久免费看少妇高潮| 成人听书哪个软件好| 中文字幕一区二区在线观看| 91九色02白丝porn| 日本欧美肥老太交大片| 精品国精品自拍自在线| 丰满白嫩尤物一区二区| 亚洲国产中文字幕| 日韩女优制服丝袜电影| www.成人网.com| 亚洲国产aⅴ天堂久久| 精品盗摄一区二区三区| 99国产欧美久久久精品| 偷窥国产亚洲免费视频| 久久蜜桃av一区精品变态类天堂 | 青草av.久久免费一区| xnxx国产精品| 色综合中文字幕| 久久成人免费网| 亚洲欧美日本在线| 欧美电影免费观看完整版| 99在线视频精品| 久久99精品久久只有精品| 亚洲人快播电影网| 精品99一区二区| 91精品国产综合久久小美女| 国产东北露脸精品视频| 亚洲国产欧美在线| 欧美经典一区二区| 91精品国产91综合久久蜜臀| 成人黄色av网站在线| 丝瓜av网站精品一区二区 | 欧美sm美女调教| 91在线一区二区三区| 精品无人区卡一卡二卡三乱码免费卡| 亚洲欧美视频一区| 国产蜜臀av在线一区二区三区| 欧美乱妇15p| 91麻豆成人久久精品二区三区| 免费的国产精品| 亚洲一区二区三区精品在线| 日本一区二区不卡视频| 日韩欧美亚洲国产另类| 欧美色图12p| 色综合欧美在线| 国产美女精品人人做人人爽 | 亚洲一区二区在线视频| 国产欧美日韩在线看| 欧美r级电影在线观看| 欧美色图免费看| 91精彩视频在线| 色婷婷av一区| 色呦呦国产精品| 91老师国产黑色丝袜在线| 成人免费观看av| 高清在线不卡av| 国产精品2024| 成人做爰69片免费看网站| 精品一区二区免费| 国产在线播精品第三| 久久se这里有精品| 久久99久久精品欧美| 久草这里只有精品视频| 看片网站欧美日韩| 国内精品免费**视频| 国产伦理精品不卡| 国产一区二区剧情av在线| 麻豆精品久久精品色综合| 免费美女久久99| 国产在线一区二区综合免费视频| 久久99热狠狠色一区二区| 国产自产2019最新不卡| 国产高清不卡一区二区| av一区二区久久| 色系网站成人免费| 欧美久久久久久久久中文字幕| 欧美日韩小视频| 日韩一级片网站| 久久久国产一区二区三区四区小说| 欧美激情综合在线| 一级日本不卡的影视| 午夜免费欧美电影| 国内精品写真在线观看| 成av人片一区二区| 91电影在线观看| 91精品国产综合久久香蕉麻豆| 欧美成人女星排行榜| 国产精品视频第一区| 亚洲精品乱码久久久久久| 亚洲123区在线观看| 久久国产尿小便嘘嘘尿| 国产精品综合久久| 色女孩综合影院| 日韩午夜激情免费电影| 国产精品无码永久免费888| 一区二区三区四区不卡视频| 麻豆一区二区三| 99精品国产99久久久久久白柏| 欧美高清视频www夜色资源网| 欧美mv和日韩mv的网站| 综合精品久久久| 卡一卡二国产精品| 色综合咪咪久久| 精品久久久久久无| 亚洲天堂网中文字| 乱一区二区av| 欧美综合久久久| 久久视频一区二区| 亚洲国产成人av网| 成人在线视频一区二区| 91精品国产入口在线| 国产精品久久影院| 久久99精品国产麻豆婷婷| 91蝌蚪porny| 久久精品综合网| 青青草原综合久久大伊人精品优势| jlzzjlzz国产精品久久| 欧美大片拔萝卜| 亚洲成人免费看| 91年精品国产| 中文字幕第一区| 久久99国内精品| 欧美挠脚心视频网站| 亚洲免费观看高清完整版在线观看熊| 老司机一区二区| 欧美丰满一区二区免费视频| 中文字幕亚洲不卡| 懂色av一区二区在线播放| 日韩免费观看高清完整版| 一区二区三区四区精品在线视频| 成人性生交大片免费看中文网站| 欧美撒尿777hd撒尿| 久久精品国产99| 欧美日韩国产另类不卡| 成人av资源站| 国产精品伦理在线| 日本久久电影网| 亚洲电影第三页| 欧美电视剧在线看免费| 丝袜a∨在线一区二区三区不卡| 在线精品视频小说1| 亚洲一区二区三区视频在线| 欧美老肥妇做.爰bbww视频| 丝袜美腿亚洲一区| 亚洲欧洲无码一区二区三区| 7777精品伊人久久久大香线蕉的| 欧美日韩一区二区在线观看| 中文字幕制服丝袜一区二区三区| 国产成人精品亚洲日本在线桃色| 2022国产精品视频|