Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.4 KiB

  1. /*
  2. * @DEC_COPYRIGHT@
  3. */
  4. /*
  5. * HISTORY
  6. * $Log: h263.h,v $
  7. * $EndLog$
  8. */
  9. /*****************************************************************************
  10. ** Copyright (c) Digital Equipment Corporation, 1995 **
  11. ** **
  12. ** All Rights Reserved. Unpublished rights reserved under the copyright **
  13. ** laws of the United States. **
  14. ** **
  15. ** The software contained on this media is proprietary to and embodies **
  16. ** the confidential technology of Digital Equipment Corporation. **
  17. ** Possession, use, duplication or dissemination of the software and **
  18. ** media is authorized only pursuant to a valid written license from **
  19. ** Digital Equipment Corporation. **
  20. ** **
  21. ** RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure by the U.S. **
  22. ** Government is subject to restrictions as set forth in Subparagraph **
  23. ** (c)(1)(ii) of DFARS 252.227-7013, or in FAR 52.227-19, as applicable. **
  24. ******************************************************************************/
  25. #ifndef _H263_H_
  26. #define _H263_H_
  27. /************** H263 parsing definitions **************/
  28. #define H263_PSC 1
  29. #define H263_PSC_LENGTH 17
  30. #define H263_MODE_INTER 0
  31. #define H263_MODE_INTER_Q 1
  32. #define H263_MODE_INTER4V 2
  33. #define H263_MODE_INTRA 3
  34. #define H263_MODE_INTRA_Q 4
  35. #define H263_PBMODE_NORMAL 0
  36. #define H263_PBMODE_MVDB 1
  37. #define H263_PBMODE_CBPB_MVDB 2
  38. #define H263_ESCAPE 7167
  39. #define H263_PCT_INTER 1
  40. #define H263_PCT_INTRA 0
  41. #define H263_SF_SQCIF 1 /* 001 */
  42. #define H263_SF_QCIF 2 /* 010 */
  43. #define H263_SF_CIF 3 /* 011 */
  44. #define H263_SF_4CIF 4 /* 100 */
  45. #define H263_SF_16CIF 5 /* 101 */
  46. /* From sim.h */
  47. #define H263_SE_CODE 31
  48. #define H263_ESCAPE_INDEX 102
  49. #endif /* _H263_H_ */