entropy.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. entropy.hpp
  24. Abstract:
  25. base classes for entropy encoder/decoder
  26. Revision History:
  27. *************************************************************************/
  28. #ifndef __ENTROPY_HPP_
  29. #define __ENTROPY_HPP_
  30. class istream;
  31. class ostream;
  32. class CInBitStream;
  33. class COutBitStream;
  34. typedef struct VlcTableTag {
  35. Int lSymbol;
  36. char *pchBits;
  37. } VlcTable;
  38. Class CEntropyEncoder
  39. {
  40. public:
  41. virtual ~CEntropyEncoder () {};
  42.     virtual Void loadTable (istream &Table) = 0;
  43. virtual Void loadTable (VlcTable *pVlc) = 0;
  44.     virtual Void attachStream (COutBitStream &BitStream) = 0;
  45.     virtual UInt encodeSymbol (Int lSymbol, Char* rgchSymbolName = NULL, Bool bDontSendBits = FALSE) = 0;
  46. virtual COutBitStream* bitstream () = 0;
  47. };
  48. Class CEntropyDecoder
  49. {
  50. public:
  51. virtual ~CEntropyDecoder () {};
  52.     virtual Void loadTable (istream &Table, Bool bIncompleteTree=TRUE) = 0;
  53. virtual Void loadTable (VlcTable *pVlc, Bool bIncompleteTree=TRUE) = 0;
  54.     virtual Int decodeSymbol () = 0;
  55.     virtual Void attachStream (CInBitStream &bitStream) = 0;
  56. virtual CInBitStream* bitstream () = 0;
  57. };
  58. #endif // __ENTROPY_HPP_