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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*************************************************************************
  2. This software module was originally developed by 
  3. Wei-ge Chen (wchen@microsoft.com), Microsoft Corporation
  4. (date: April, 1997)
  5. in the course of development of the MPEG-4 Video (ISO/IEC 14496-2). 
  6. This software module is an implementation of a part of one or more MPEG-4 Video tools 
  7. as specified by the MPEG-4 Video. 
  8. ISO/IEC gives users of the MPEG-4 Video free license to this software module or modifications 
  9. thereof for use in hardware or software products claiming conformance to the MPEG-4 Video. 
  10. Those intending to use this software module in hardware or software products are advised that its use may infringe existing patents. 
  11. The original developer of this software module and his/her company, 
  12. the subsequent editors and their companies, 
  13. and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. 
  14. Copyright is not released for non MPEG-4 Video conforming products. 
  15. Microsoft retains full right to use the code for his/her own purpose, 
  16. assign or donate the code to a third party and to inhibit third parties from using the code for non <MPEG standard> conforming products. 
  17. This copyright notice must be included in all copies or derivative works. 
  18. Copyright (c) 1996, 1997.
  19. Module Name:
  20. shape.hpp
  21. Abstract:
  22. binary shape codec
  23. Revision History:
  24. *************************************************************************/
  25. #ifndef __SHAPE_HPP_
  26. #define __SHAPE_HPP_
  27. #define BAB_TOTAL_SIZE 20
  28. #define BAB_BORDER_SIZE 2
  29. #define BAB_BORDER_SIZE_DBL 4
  30. #define MCBAB_BORDER_SIZE 1
  31. #define MCBAB_BORDER_SIZE_DBL 2
  32. #define MCBAB_TOTAL_SIZE 18
  33. Class CShapeCodec
  34. {
  35. public:
  36. // Constructors
  37. virtual ~CShapeCodec ();
  38. CShapeCodec (CVOPofMBs* pvopmbs);
  39. // Atributes
  40. const CIntImage* reconShape () {return m_pfiShapeRecon;}
  41. TransparentStatus trnspstts () const {return m_trnspstts;}
  42. ShapeMode encodingMode () const {return m_shpmd;}
  43. Bool interShape () const {assert (FALSE); return 0;}
  44. CVector mvDiff () const {return m_vctMVDS;}
  45. // operations
  46. Void setFirstMmr (TransparentStatus trnspstts, Bool bInterShapeCoding) {;}  //useless: only for sepr mode
  47. protected:
  48. CVOPofMBs* m_pvopmbs; //place to copy the source data from
  49. Int m_rgiTopBorder  [BAB_BORDER_SIZE] [BAB_TOTAL_SIZE];
  50. Int m_rgiLeftBorder [BAB_TOTAL_SIZE]  [BAB_BORDER_SIZE];
  51. Int m_rgiCurrShp [BAB_TOTAL_SIZE]  [BAB_TOTAL_SIZE];
  52. Int m_rgiPredShp [MCBAB_TOTAL_SIZE][MCBAB_TOTAL_SIZE];
  53. Int m_iContextNumber;
  54. ArCodec* m_parcodec;
  55. own CIntImage* m_pfiPred;
  56. Int m_iWidthOfAlphaMB; //after downsampling
  57. CRct m_rct;
  58. TransparentStatus m_trnspstts;
  59. CAEScanDirection m_msdir; //scanning direction
  60. ShapeMode m_shpmd;
  61. CIntImage* m_pfiShapeRecon;
  62. Int m_iInverseCR;
  63. CVector m_vctMVDS;
  64. // pre-processing functions
  65. own CIntImage* downSample (const CIntImage* pfiSrc, const CRct& rctSrc = CRct (), Int iRate = 1);
  66. own CIntImage* upSample (const CIntImage* pfiCurrDown, Int iRate = 1);
  67. Void readyReference (ShapeMode shpmd = UNKNOWN, Bool bDownSample = TRUE);
  68. Void transposeData (ShapeMode shpmd = UNKNOWN);
  69. Void computeContext (CoordI iX, CoordI iY, ShapeMode shpmd = UNKNOWN);
  70. };
  71. #endif // __SHAPE_HPP