block.hpp
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*************************************************************************
  2. This software module was originally developed by 
  3. Ming-Chieh Lee (mingcl@microsoft.com), Microsoft Corporation
  4. Wei-ge Chen (wchen@microsoft.com), Microsoft Corporation
  5. Bruce Lin (blin@microsoft.com), Microsoft Corporation
  6. Chuang Gu (chuanggu@microsoft.com), Microsoft Corporation
  7. (date: March, 1996)
  8. in the course of development of the MPEG-4 Video (ISO/IEC 14496-2). 
  9. This software module is an implementation of a part of one or more MPEG-4 Video tools 
  10. as specified by the MPEG-4 Video. 
  11. ISO/IEC gives users of the MPEG-4 Video free license to this software module or modifications 
  12. thereof for use in hardware or software products claiming conformance to the MPEG-4 Video. 
  13. Those intending to use this software module in hardware or software products are advised that its use may infringe existing patents. 
  14. The original developer of this software module and his/her company, 
  15. the subsequent editors and their companies, 
  16. and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. 
  17. Copyright is not released for non MPEG-4 Video conforming products. 
  18. Microsoft retains full right to use the code for his/her own purpose, 
  19. assign or donate the code to a third party and to inhibit third parties from using the code for non <MPEG standard> conforming products. 
  20. This copyright notice must be included in all copies or derivative works. 
  21. Copyright (c) 1996, 1997.
  22. Module Name:
  23. block.hpp
  24. Abstract:
  25. Block base class
  26. Revision History:
  27. *************************************************************************/
  28. #ifndef __BLOCK_HPP_
  29. #define __BLOCK_HPP_
  30. Class CBlock
  31. {
  32. public:
  33. // Constructors
  34. virtual ~CBlock ();
  35. CBlock (
  36. const VOLMode& volmd,
  37. CMBMode* pmbmdFromMB, // (de)coding mode for the current block
  38. const CIntImage* pfiAlpha,
  39. const BlockNum thisBlockNum);
  40.    
  41. // Attributes
  42. const CIntImage* textureQ () const {return m_pfiTextureQ;}// the texture (padded) data
  43. const Int* dctCoeffQ () const {return m_rgiDCTcoefQ;}// reconstructed DCT coefficients
  44. const Float* dctCoefRecon () const {return m_rgfltDCTcoefRecon;}// reconstructed DCT coefficients
  45. const CRct& where () const {return m_pfiAlpha -> where();}
  46. const CMBMode* pmbmd () const {return m_pmbmdFromMB;} //mode of curr mb
  47. // Operations
  48. ///////////////// implementation /////////////////
  49. protected:
  50. const VOLMode& m_volmd; // coding mode of vop
  51. CMBMode* m_pmbmdFromMB; // the coding mode information
  52. own CIntImage* m_pfiAlpha; // the alpha data (for padding)
  53. BlockNum m_blockNum;
  54. own CIntImage* m_pfiTextureQ; // quantized texture data (will be de-padded)
  55. own Int* m_rgiDCTcoefQ; // quantized DCT coefficients
  56. own Int* m_rgiDCTcoefQD; // quantized DCT coefficients, differentiated
  57. own Int* m_rgiDCTcoefQDZ; // quantized DCT coefficients, differentiated and zigzag scanned
  58. own Float* m_rgfltDCTcoefRecon; // reconstructed (de-quantized) DCT coefficients
  59. CIDCT* m_pidct;
  60. Void idct ();
  61. Void inverseQuantizeDCTcoef ();
  62. Void inverseQuantizeDCTcoefMPEG (); // mpeg2 method
  63. };
  64. #endif // __BLOCK_HPP_