blkenc.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. blkEnc.hpp
  24. Abstract:
  25. Block encoder, derived from CBlock
  26. Revision History:
  27. Add mpeg mode (wchen) 8-April-1996
  28. *************************************************************************/
  29. #ifndef __BLKENC_HPP_
  30. #define __BLKENC_HPP_
  31. Class CBlockEncoder : public CBlock
  32. {
  33. public:
  34. // Constructors
  35. ~CBlockEncoder ();
  36. CBlockEncoder (
  37. const CIntImage* pfiSrc, // the source data
  38. const CIntImage* pfiAlpha,
  39. const BlockNum thisBlockNum,
  40. const VOLMode& volmd,
  41. CMBMode* pmbmd, // coding mode for the current block
  42. CEntropyEncoderSet* pencset
  43. );
  44.    
  45. // Attributes
  46. const Float* dctCoeff () const {return m_rgfltDCTcoef;}// unquantized DCT coefficients
  47. // Operations
  48. Void quantize (); // return the quantized block 
  49. Void DCACPredictionAndZigzag (const CBlock* pblkencPredictor); //reset CBPY as well
  50. UInt encode ();
  51. ///////////////// implementation /////////////////
  52. private:
  53. own CIntImage* m_pfiTexture; // texture data (padded)
  54. CEntropyEncoderSet* m_pencset;
  55. own Float* m_rgfltDCTcoef; // unquantized DCT coefficients
  56. own CFDCT* m_pfdct;
  57. // Operations
  58. UInt encodeMPEG ();// mpeg-style encoding
  59. Void dct ();
  60. Void quantizeDCTcoef (); // quantization of DCT coeffs
  61. Void quantizeDCTcoefMPEG (); // mpeg2 method
  62. UInt sendDCTcoef ();
  63. UInt sendIntraDCmpeg (); //send intra-dc: mpeg2 method
  64. Int findVLCtableIndexOfNonLastEvent (UInt uiRun, UInt uiLevel);
  65. Int findVLCtableIndexOfLastEvent (UInt uiRun, UInt uiLevel);
  66. Int findVLCtableIndexOfIntra (Bool bIsLastRun, UInt uiRun, UInt uiLevel);
  67. UInt sendTCOEF ();
  68. UInt putBitsOfTCOEF (UInt uiRun, Int iLevel, Bool bIsLastRun);
  69. };
  70. #endif // __BLKENC_HPP_