motion_estimate.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:4k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2. *
  3. * $Id: motion_estimate.h,v 1.2 2005/01/30 05:11:42 gabest Exp $ $Name:  $
  4. *
  5. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  6. *
  7. * The contents of this file are subject to the Mozilla Public License
  8. * Version 1.1 (the "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. * http://www.mozilla.org/MPL/
  11. *
  12. * Software distributed under the License is distributed on an "AS IS" basis,
  13. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
  14. * the specific language governing rights and limitations under the License.
  15. *
  16. * The Original Code is BBC Research and Development code.
  17. *
  18. * The Initial Developer of the Original Code is the British Broadcasting
  19. * Corporation.
  20. * Portions created by the Initial Developer are Copyright (C) 2004.
  21. * All Rights Reserved.
  22. *
  23. * Contributor(s): Thomas Davies (Original Author)
  24. *
  25. * Alternatively, the contents of this file may be used under the terms of
  26. * the GNU General Public License Version 2 (the "GPL"), or the GNU Lesser
  27. * Public License Version 2.1 (the "LGPL"), in which case the provisions of
  28. * the GPL or the LGPL are applicable instead of those above. If you wish to
  29. * allow use of your version of this file only under the terms of the either
  30. * the GPL or LGPL and not to allow others to use your version of this file
  31. * under the MPL, indicate your decision by deleting the provisions above
  32. * and replace them with the notice and other provisions required by the GPL
  33. * or LGPL. If you do not delete the provisions above, a recipient may use
  34. * your version of this file under the terms of any one of the MPL, the GPL
  35. * or the LGPL.
  36. * ***** END LICENSE BLOCK ***** */
  37. #ifndef _MOTION_ESTIMATE_H_
  38. #define _MOTION_ESTIMATE_H_
  39. #include <libdirac_common/motion.h>
  40. namespace dirac
  41. {
  42.     class FrameBuffer;
  43.     //! Class to handle the whole motion estimation process. 
  44.     /*!
  45.      
  46.      Class to handle the whole motion estimation process, which works in 
  47.      three stages. 
  48.      First a pixel-accurate estimate is formed by looking at the current 
  49.      frame data and the data from the reference frame(s). Motion vectors
  50.      are found for every block.
  51.      Second, these pixel-accurate motion vectors are refined to sub-pixel
  52.      accuracy. This means some sort of upconversion needs to be applied to
  53.      the reference. This can be done by actually upconverting the reference
  54.      to create a bigger picture or by doing some interpolation of values
  55.      on the fly.
  56.      Third, mode decisions have to be made. This means choosing which (if
  57.      any) reference to use for each block, and whether to use the same 
  58.      motion vectors for groups of blocks together. A 2x2 group of blocks is
  59.      called a sub-MB and a 4x4 group of blocks is a MB (Macroblock). All 
  60.      the MV data is organised by MB.
  61.     */
  62.     class MotionEstimator{
  63.     public:
  64.         //! Constructor
  65.         MotionEstimator( const EncoderParams& encp );
  66.         //! Destructor
  67.         ~MotionEstimator(){}
  68.         //! Do the motion estimation
  69.         bool DoME(const FrameBuffer& my_buffer , int frame_num , MEData& me_data);
  70.     private:
  71.         //! Copy constructor: private, body-less - class should not be copied
  72.         MotionEstimator( const MotionEstimator& cpy );
  73.         //! Assignment= : //private, body-less - class should not be assigned
  74.         MotionEstimator& operator=( const MotionEstimator& rhs );
  75.         //! Go through all the intra blocks and extract the chroma dc values to be coded
  76.         void SetChromaDC(const FrameBuffer& my_buffer, int frame_num, MvData& mv_data);
  77.         //! Called by previous fn for each component
  78.         void SetChromaDC(const PicArray& pic_data, MvData& mv_data,CompSort csort);        
  79.         //! Called by previous fn for each block
  80.         ValueType GetChromaBlockDC(const PicArray& pic_data, int xloc,int yloc,int split);
  81.         //! Analyses the ME data and returns true if a cut is detected, false otherwise
  82.         bool IsACut( const MEData& ) const;
  83.         // Member variables
  84.         //! A local reference to the encoder parameters
  85.         const EncoderParams& m_encparams;
  86.     };
  87. } // namespace dirac
  88. #endif