/* ***** BEGIN LICENSE BLOCK ***** * * $Id: motion_estimate.cpp,v 1.19 2007/04/03 13:02:38 asuraparaju Exp $ $Name: Dirac_0_7_0 $ * * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License. * * The Original Code is BBC Research and Development code. * * The Initial Developer of the Original Code is the British Broadcasting * Corporation. * Portions created by the Initial Developer are Copyright (C) 2004. * All Rights Reserved. * * Contributor(s): Thomas Davies (Original Author) * * Alternatively, the contents of this file may be used under the terms of * the GNU General Public License Version 2 (the "GPL"), or the GNU Lesser * Public License Version 2.1 (the "LGPL"), in which case the provisions of * the GPL or the LGPL are applicable instead of those above. If you wish to * allow use of your version of this file only under the terms of the either * the GPL or LGPL and not to allow others to use your version of this file * under the MPL, indicate your decision by deleting the provisions above * and replace them with the notice and other provisions required by the GPL * or LGPL. 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 MPL, the GPL * or the LGPL. * ***** END LICENSE BLOCK ***** */ #include #include #include #include #include using namespace dirac; #include #include MotionEstimator::MotionEstimator( const EncoderParams& encp ): m_encparams( encp ) {} void MotionEstimator::DoME(const FrameBuffer& my_buffer, int frame_num, MEData& me_data) { const FrameParams& fparams = my_buffer.GetFrame(frame_num).GetFparams(); // Step 1. //Initial search gives vectors for each reference accurate to 1 pixel PixelMatcher pix_match( m_encparams ); pix_match.DoSearch( my_buffer , frame_num , me_data); float lambda; // Get the references const std::vector& refs = my_buffer.GetFrame(frame_num).GetFparams().Refs(); const int num_refs = refs.size(); if ( fparams.IsBFrame()) lambda = m_encparams.L2MELambda(); else lambda = m_encparams.L1MELambda(); // Set up the lambda to be used me_data.SetLambdaMap( num_refs , lambda ); MVPrecisionType orig_prec = m_encparams.MVPrecision(); // Step 2. // Pixel accurate vectors are then refined to sub-pixel accuracy if (orig_prec != MV_PRECISION_PIXEL) { SubpelRefine pelrefine( m_encparams ); pelrefine.DoSubpel( my_buffer , frame_num , me_data ); } else { // FIXME: HACK HACK // Mutiplying the motion vectors by 2 and setting MV precision to // HALF_PIXEL to implement pixel accurate motion estimate MvArray &mv_arr1 = me_data.Vectors(1); for (int j = 0; j < mv_arr1.LengthY(); ++j) { for (int i = 0; i < mv_arr1.LengthX(); ++i) mv_arr1[j][i] = mv_arr1[j][i] << 1; } if (num_refs > 1) { MvArray &mv_arr2 = me_data.Vectors(2); for (int j = 0; j < mv_arr2.LengthY(); ++j) { for (int i = 0; i < mv_arr2.LengthX(); ++i) mv_arr2[j][i] = mv_arr2[j][i] << 1; } } m_encparams.SetMVPrecision(MV_PRECISION_HALF_PIXEL); } // Step3. // We now have to decide how each macroblock should be split // and which references should be used, and so on. ModeDecider my_mode_dec( m_encparams ); my_mode_dec.DoModeDecn( my_buffer , frame_num , me_data ); if (orig_prec == MV_PRECISION_PIXEL) { // FIXME: HACK HACK // Divide the motion vectors by 2 to convert back to pixel // accurate motion vectors and reset MV precision to // PIXEL accuracy MvArray &mv_arr1 = me_data.Vectors(1); for (int j = 0; j < mv_arr1.LengthY(); ++j) { for (int i = 0; i < mv_arr1.LengthX(); ++i) mv_arr1[j][i] = mv_arr1[j][i] >> 1; } if (num_refs > 1) { MvArray &mv_arr2 = me_data.Vectors(2); for (int j = 0; j < mv_arr2.LengthY(); ++j) { for (int i = 0; i < mv_arr2.LengthX(); ++i) mv_arr2[j][i] = mv_arr2[j][i]>>1; } } m_encparams.SetMVPrecision(MV_PRECISION_PIXEL); } // Finally, although not strictly part of motion estimation, // we have to assign DC values for chroma components for // blocks we're decided are intra. SetChromaDC( my_buffer , frame_num , me_data ); //return false; } ValueType MotionEstimator::GetChromaBlockDC(const PicArray& pic_data, int xunit , int yunit , int split) { BlockDiffParams dparams; dparams.SetBlockLimits( m_encparams.ChromaBParams( split ) , pic_data, xunit , yunit); ValueType dc; IntraBlockDiff intradiff( pic_data ); intradiff.Diff( dparams , dc ); return dc; } void MotionEstimator::SetChromaDC( const PicArray& pic_data , MvData& mv_data , CompSort csort ) { // Lower limit of block coords in MB int xtl,ytl; // Upper limit of block coords in MB int xbr,ybr; // Ditto, for subMBs int xsubMBtl,ysubMBtl; int xsubMBbr,ysubMBbr; TwoDArray& dcarray = mv_data.DC( csort ); ValueType dc = 0; // Coords of the prediction units (at appropriate level) int xunit, yunit; // The delimiters of the blocks contained in the prediction unit int xstart, ystart; int xend, yend; int level; for ( int ymb=0 ; ymb