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

📄 simpleintrapredictionprocess.h

📁 一个可以在DM642上运新的h.264算法
💻 H
字号:
/*	Open H.264
 *
 *	#include	<standard_disclaimer>
 *
 *  Authors:    aitorgaray@yifan.net
 *              _
 */

#include    "../Common.h"
#include    "IntraPredictionProcess.h"

#if !defined( __SIMPLE_INTRA_PREDICTION_PROCESS_H)
#define __SIMPLE_INTRA_PREDICTION_PROCESS_H

class SimpleIntraPredictionProcess: IntraPredictionProcess {

    public:

        SimpleIntraPredictionProcess( IntraPredictor& intraPredictor, Transform& transform, SADCalculator& sadCalculator, Quantize& quantize);

    public:

        //  returns:    16  if 16x16 choosed, macroblockMode is filled
        //  returns:    4   if 4x4 choosed, blockModes[][] is filled
        virtual int predictLumaMacroBlock( /* in out */ LumaMacroblock& macroblock,
                                           /* out */ int* macroblockMode, int blockModes[ 4][ 4],
                                           /* in */ int qp);
};

#endif

/*  $Log:$
 *
 */

⌨️ 快捷键说明

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