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

流媒体/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, 1996)
  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. shpdec.cpp
  21. Abstract:
  22. binary shape decoding. 
  23. Revision History:
  24. *************************************************************************/
  25. Class CShapeDecoder : public CShapeCodec
  26. {
  27. public:
  28. // Constructors
  29. ~CShapeDecoder ();
  30. CShapeDecoder ();
  31. CShapeDecoder (CVOPofMBsDecoder* pvmdec);
  32. // Atributes
  33. // Operations
  34. Void decodeShapeMode (Int iMB, const ShapeMode& shpmdColocatedMB = UNKNOWN);
  35. Void decode  (Int iMB, /*const ShapeMode& shpmdColocatedMB,*/ 
  36. const CIntImage* pfiPred = NULL);
  37. private:
  38. CEntropyDecoderSet* m_pentrdec; // decoder for shape mv part 2
  39. CInBitStream* m_pibstrm;
  40. Void decodeCrAndSt ();
  41. Void decodeMVDS ();
  42. };