vopmbdec.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. vopmbDec.hpp
  24. Abstract:
  25. Decoder for VOP composed of MB's
  26. Revision History:
  27. *************************************************************************/
  28. #ifndef __VOPMBDEC_HPP_
  29. #define __VOPMBDEC_HPP_
  30. Class CVOPofMBsDecoder : public CVOPofMBs
  31. {
  32. friend Class CShapeDecoder;
  33. public:
  34. // Constructors
  35. ~CVOPofMBsDecoder ();
  36. CVOPofMBsDecoder (
  37. Time tBCounter, // B-VOP counter
  38. VOLMode& volmd, 
  39. VOPMode& vopmd, 
  40. const CRct& rctVOP,
  41. const CIntImage* pfiRecA, 
  42. const CVOPIntYUVBA* pvopfRefer0, // reference VOP in a previous time
  43. const CVOPIntYUVBA* pvopfRefer1, // reference VOP in a later time
  44. const CDirectModeData* pdrtmdRef1, // for B-VOP direct mode 
  45. CInBitStream* pbitstrmIn, // bitstream
  46. CEntropyDecoderSet* pentrdecSet // huffman decoder set
  47. );
  48. // Operations
  49. Void decode ();
  50. ///////////////// implementation /////////////////
  51. private:
  52. CInBitStream* m_pbitstrmIn; // bitstream
  53. CEntropyDecoder* m_pentrdecMV; // huffman decoder for MV
  54. CEntropyDecoderSet* m_pentrdecSet; // huffman decoder set
  55. CShapeDecoder** m_ppshpdec; // shape decoders
  56. //motion dec funcs
  57. Void decodeMV (const UInt ix, const UInt iy);
  58. Int deScaleMV ( const Int iVLC, const UInt uiResidual, 
  59. const UInt uiScaleFactor);
  60. CVector2D getDiffMV ();
  61. Void setForwardMVofDirect (
  62. CMacroBlock* pmbCurr,
  63. const CVector2D& vctMVdelta, 
  64. const CVector2D& vctMVRef, 
  65. const Double dblTimeScale,
  66. const BlockNum blkn
  67. );
  68. Void decodeMVforward (UInt ix, UInt iy);
  69. Void decodeMVbackward (UInt ix, UInt iy);
  70. Void decodeMVdirect (UInt ix, UInt iy);
  71. //motion dec funcs for the d*n sepr mode
  72. Void decodeMVD (const UInt ix, const UInt iy);
  73. Void forwardMVfromMVD (UInt ix, UInt iy);
  74. Void backwardMVfromMVD (UInt ix, UInt iy);
  75. Void mvFromMVD (const UInt ix, const UInt iy);
  76. Void decodeMVDforward (UInt ix, UInt iy);
  77. Void decodeMVDbackward (UInt ix, UInt iy);
  78. Void decodeNS ();
  79. Void decodeSI ();
  80. Void decodeSPB ();
  81. };
  82. #endif // __VOPMBDEC_HPP_