geom.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.     geom.hpp
  24. Abstract:
  25.     2D geometry for polygons
  26. Revision History:
  27. *************************************************************************/
  28. #ifndef __GEOM_HPP_ 
  29. #define __GEOM_HPP_
  30. Class CPolygonI;
  31. Class CPolygonI {
  32. public:
  33. // Constructors
  34. CPolygonI () : m_csit (0), m_rgsit (NULL)
  35. {}
  36. CPolygonI (const CPolygonI& poly);
  37. CPolygonI (UInt csit, const CSite* rgsit, Bool bCheckCorner = FALSE, const CRct& rc = CRct ());
  38. CPolygonI (const CRct& r);
  39. ~CPolygonI () {delete [] m_rgsit, m_rgsit=NULL;}
  40. // operations
  41. Void crop (const CRct& rct); //crop to stay in rct
  42. Void close (); //close possible open polygons
  43. // Properties
  44. UInt nSites () const {return m_csit;}
  45. const CSite& operator [] (UInt i) const {return at (i);}
  46. Void unpack (UInt& csit, CSite*& rgsit) const;
  47. CPolygonI* sample (int rate=1, const CRct& rc = CRct());
  48. Void dump (const Char* pchFileName) const;
  49. protected:
  50. UInt m_csit;
  51. CSite* m_rgsit;
  52. const CSite& at (Int isit) const 
  53. {assert (isit < (Int) m_csit && isit >= - (Int) m_csit);
  54.  return m_rgsit[isit >= 0 ? isit : (isit + (Int) m_csit)];}
  55. void allocate (UInt n);
  56. Void checkCorner (const CRct& rc);
  57. };
  58. #endif // __GEOM_HPP