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

多媒体编程

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2. *
  3. * $Id: frame_compress.h,v 1.2 2005/01/30 05:11:41 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. *                 Scott R Ladd,
  25. *                 Anuradha Suraparaju
  26. *
  27. * Alternatively, the contents of this file may be used under the terms of
  28. * the GNU General Public License Version 2 (the "GPL"), or the GNU Lesser
  29. * Public License Version 2.1 (the "LGPL"), in which case the provisions of
  30. * the GPL or the LGPL are applicable instead of those above. If you wish to
  31. * allow use of your version of this file only under the terms of the either
  32. * the GPL or LGPL and not to allow others to use your version of this file
  33. * under the MPL, indicate your decision by deleting the provisions above
  34. * and replace them with the notice and other provisions required by the GPL
  35. * or LGPL. If you do not delete the provisions above, a recipient may use
  36. * your version of this file under the terms of any one of the MPL, the GPL
  37. * or the LGPL.
  38. * ***** END LICENSE BLOCK ***** */
  39. #ifndef _FRAME_COMPRESS_H_
  40. #define _FRAME_COMPRESS_H_
  41. #include <libdirac_common/frame_buffer.h>
  42. #include <libdirac_common/common.h>
  43. #include <libdirac_common/motion.h>
  44. namespace dirac
  45. {
  46.     class MvData;
  47.     //! Compress a single image frame
  48.     /*!
  49.         This class compresses a single frame at a time, using parameters
  50.         supplied at its construction. FrameCompressor is used by
  51.         SequenceCompressor.
  52.     */
  53.     class FrameCompressor
  54.     {
  55.     public:
  56.         //! Constructor
  57.         /*!
  58.             Creates a FrameEncoder with specific set of parameters the control
  59.             the compression process. It encodes motion data before encoding
  60.             each component of the frame. 
  61.             param encp encoder parameters
  62.         */
  63.         FrameCompressor( EncoderParams& encp ); 
  64.         //! Destructor
  65.         ~FrameCompressor( );
  66.         //! Compress a specific frame within a group of pictures (GOP)
  67.         /*!
  68.             Compresses a specified frame within a group of pictures. 
  69.             param fbuffer picture buffer in which the frame resides
  70.             param orig_buffer the corresponding picture buffer of uncoded originals
  71.             param fnum      frame number to compress
  72.         */
  73.         void Compress( FrameBuffer& fbuffer , const FrameBuffer& orig_buffer , int fnum );
  74.         //! Returns true if the frame has been skipped rather than coded normally
  75.         bool IsSkipped(){ return m_skipped; }
  76.         //! Returns true if Motion estimation data is available
  77.         bool IsMEDataAvail() const { return m_medata_avail; }
  78.         //! Returns the motion estimation data
  79.         const MEData* GetMEData() const;
  80.     private:
  81.         //! Copy constructor is private and body-less
  82.         /*!
  83.             Copy constructor is private and body-less. This class should not
  84.             be copied.
  85.         */
  86.         FrameCompressor( const FrameCompressor& cpy );
  87.         //! Assignment = is private and body-less
  88.         /*!
  89.             Assignment = is private and body-less. This class should not be
  90.             assigned.
  91.         */
  92.         FrameCompressor& operator=(const FrameCompressor& rhs);
  93.         //! Write the frame compression header
  94.         void WriteFrameHeader(const FrameParams& fparams);
  95.         //member variables
  96.         // a local copy of the encoder params
  97.         EncoderParams& m_encparams;
  98.      
  99.         // Pointer to the motion vector data
  100.         MEData* m_me_data;
  101.         // True if the frame has been skipped, false otherwise
  102.         bool m_skipped;                
  103.         // True if we use global motion vectors, false otherwise
  104.         bool m_use_global;
  105.         // True if we use block motion vectors, false otherwise
  106.         bool m_use_block_mv;
  107.         
  108.         // Prediction mode to use if we only have global motion vectors
  109.         PredMode m_global_pred_mode;
  110.         
  111.         // True if motion estimation data is available
  112.         bool m_medata_avail;
  113.     };
  114. } // namespace dirac
  115. #endif