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

📄 macroblock.cc

📁 Motion JPEG编解码器源代码
💻 CC
字号:
/* macroblock.hh macroblock class... *//*  (C) 2003 Andrew Stevens *//* These modifications are free software; you can redistribute it *  and/or modify it under the terms of the GNU General Public License *  as published by the Free Software Foundation; either version 2 of *  the License, or (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *  General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * */#include <stdio.h>#include "macroblock.hh"#include "mpeg2syntaxcodes.h"#include "picture.hh"void MacroBlock::Encode(){     MotionEstimate();    SelectCodingModeOnVariance();    Predict();    Transform();}void MacroBlock::MotionEstimate(){	if (picture->pict_struct==FRAME_PICTURE)	{					FrameMEs();	}	else	{				FieldME();	}}void MacroBlock::SelectCodingModeOnVariance(){    vector<MotionEst>::iterator i;    vector<MotionEst>::iterator min_me;    int best_score = INT_MAX;    int cur_score;    //    // Select motion estimate with lowest variance    // Penalise the INTRA motion type slightly because it can't be    // skip coded.    for( i = best_of_kind_me.begin(); i < best_of_kind_me.end(); ++ i)    {        cur_score = i->var + (i->mb_type == MB_INTRA ? 4*4*256 : 0);        if( cur_score < best_score )        {            best_score = cur_score;            min_me = i;        }    }    final_me = *min_me;} /*  * Local variables: *  c-file-style: "stroustrup" *  tab-width: 4 *  indent-tabs-mode: nil * End: */

⌨️ 快捷键说明

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