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

流媒体/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. and edited by
  9. Hiroyuki Katata (katata@imgsl.mkhar.sharp.co.jp), Sharp Corporation
  10. Norio Ito (norio@imgsl.mkhar.sharp.co.jp), Sharp Corporation
  11. Shuichi Watanabe (watanabe@imgsl.mkhar.sharp.co.jp), Sharp Corporation
  12. (date: October, 1997)
  13. in the course of development of the MPEG-4 Video (ISO/IEC 14496-2). 
  14. This software module is an implementation of a part of one or more MPEG-4 Video tools 
  15. as specified by the MPEG-4 Video. 
  16. ISO/IEC gives users of the MPEG-4 Video free license to this software module or modifications 
  17. thereof for use in hardware or software products claiming conformance to the MPEG-4 Video. 
  18. Those intending to use this software module in hardware or software products are advised that its use may infringe existing patents. 
  19. The original developer of this software module and his/her company, 
  20. the subsequent editors and their companies, 
  21. and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. 
  22. Copyright is not released for non MPEG-4 Video conforming products. 
  23. Sharp retains full right to use the code for his/her own purpose, 
  24. assign or donate the code to a third party and to inhibit third parties from using the code for non <MPEG standard> conforming products. 
  25. This copyright notice must be included in all copies or derivative works. 
  26. Copyright (c) 1997.
  27. Module Name:
  28. vopSeEncTPS.hpp
  29. Abstract:
  30. Encoder for one VO for object based temporal scalability
  31. Revision History:
  32. *************************************************************************/
  33. #ifndef __VOPSEENCTPS_HPP_ 
  34. #define __VOPSEENCTPS_HPP_
  35. class CEnhcBufferEncoder : public CEnhcBuffer
  36. {
  37. friend class CSessionEncoder;
  38. public:
  39. CEnhcBufferEncoder (Int iSessionWidth, Int iSessionHeight);
  40. // void dispose ();
  41. // bool empty ();
  42. Void copyBuf (const CEnhcBufferEncoder& srcBuf);
  43. Void getBuf (const CVideoObjectEncoder* pvopc);  // get params from Base layer
  44. Void putBufToQ0 (CVideoObjectEncoder* pvopc);  // store params to Enhancement layer
  45. Void putBufToQ1 (CVideoObjectEncoder* pvopc);  // store params to Enhancement layer
  46. };
  47. #endif