simpleintrapredictionprocess.h

来自「一个可以在DM642上运新的h.264算法」· C头文件 代码 · 共 35 行

H
35
字号
/*	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 + =
减小字号Ctrl + -
显示快捷键?