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

流媒体/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. MBDec.hpp
  24. Abstract:
  25. MacroBlock Decoder
  26. Revision History:
  27. *************************************************************************/
  28. #ifndef __MBDEC_HPP_
  29. #define __MBDEC_HPP_
  30. Class CMacroBlockDecoder : public CMacroBlock
  31. {
  32. friend class CVOPofMBsDecoder;
  33. public:
  34. // Constructors
  35. ~CMacroBlockDecoder ();
  36. CMacroBlockDecoder ( // decoder
  37. const CRct& rctVOP,
  38. const CIntImage* pfiRecA, 
  39. UInt indexX, // indexX is the x indexTH macroblock of vopF
  40. UInt indexY, // indexY is the y indexTH macroblock of vopF
  41. const VOLMode& volmd,
  42. const VOPMode& vopmd,
  43. const CVOPIntYUVBA* pvopfRef0, // reference VOP in a previous time
  44. const CVOPIntYUVBA* pvopfRef1, // reference VOP in a later time
  45. CInBitStream* pbitstrmIn, // input bitstream
  46. CEntropyDecoderSet* pentrdecSet // huffman decoder set
  47. ); 
  48. // attributes
  49. const CVOPIntYUVBA* pvopfError () {return m_pvopfError;}
  50. // Operations
  51. Void decodeOverhead (Int iPart = 0, const CMBMode* pmbmdColocatedRef1 = NULL);
  52. Void decodeMotionOverhead (const CMBMode* pmbmdColocatedRef1 = NULL); //for sepr SMT
  53. Void decodeTextureOverhead (const CMBMode* pmbmdColocatedRef1 = NULL); //for sepr SMT
  54. Void decodeAlphaOverhead ();
  55. Void textureDecode (const CMacroBlock* pmbPredLeft = NULL,
  56. const CMacroBlock* pmbPredTop = NULL,
  57. const CMacroBlock* pmbPredLeftTop = NULL);
  58. Void textureDecodeAlpha (const CMacroBlock* pmbPredLeft = NULL,
  59.  const CMacroBlock* pmbPredTop = NULL,
  60.  const CMacroBlock* pmbPredLeftTop = NULL);
  61. Void addPredMBToError (const CVOPIntYUVBA* pvopfPred); // set the predicted MB data
  62. ///////////////// implementation /////////////////
  63. private:
  64. own CVOPIntYUVBA* m_pvopfError; // recodntructed error signals
  65. CInBitStream* m_pbitstrmIn; // input bitstream
  66. CEntropyDecoderSet* m_pentrdecSet; // huffman decoder set
  67. CEntropyDecoder* m_pentrdecDCT; // huffman decoder for DCT
  68. CEntropyDecoder* m_pentrdecMCBPCintra; // encoder for MCBPC = intra 
  69. CEntropyDecoder* m_pentrdecMCBPCinter; // encoder for MCBPC = inter 
  70. CEntropyDecoder* m_pentrdecCBPY; // decoder for CBPY 
  71. CEntropyDecoder* m_pentrdecMbTypeBVOP; // decoder for MBTYPE (BVOP)
  72. Void setBlkToErrorMB (const CIntImage* pfiBlkQ, BlockNum blkNum); // overlay a quantized block to currQ 
  73. Void setErrorAlphaZero ();
  74. };
  75. #endif // __MBDEC_HPP_