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.

42 lines
1.9 KiB

  1. /*
  2. * @DEC_COPYRIGHT@
  3. */
  4. /*
  5. * HISTORY
  6. * $Log: jpeg.h,v $
  7. * Revision 1.1.2.2 1995/12/07 19:35:59 Hans_Graves
  8. * Created under SLIB
  9. * [1995/12/07 19:34:59 Hans_Graves]
  10. *
  11. * $EndLog$
  12. */
  13. /*****************************************************************************
  14. ** Copyright (c) Digital Equipment Corporation, 1995 **
  15. ** **
  16. ** All Rights Reserved. Unpublished rights reserved under the copyright **
  17. ** laws of the United States. **
  18. ** **
  19. ** The software contained on this media is proprietary to and embodies **
  20. ** the confidential technology of Digital Equipment Corporation. **
  21. ** Possession, use, duplication or dissemination of the software and **
  22. ** media is authorized only pursuant to a valid written license from **
  23. ** Digital Equipment Corporation. **
  24. ** **
  25. ** RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure by the U.S. **
  26. ** Government is subject to restrictions as set forth in Subparagraph **
  27. ** (c)(1)(ii) of DFARS 252.227-7013, or in FAR 52.227-19, as applicable. **
  28. ******************************************************************************/
  29. #ifndef _JPEG_H_
  30. #define _JPEG_H_
  31. /************** MPEG 1 parsing definitions **************/
  32. #define JPEG_MARKER 0xFF
  33. #define JPEG_MARKER_LEN 8
  34. #define JPEG_SOF0 0xC0 /* Baseline DCT */
  35. #define JPEG_SOF1 0xC1 /* Extended sequential DCT */
  36. #define JPEG_SOF2 0xC2 /* Progressive DCT */
  37. #define JPEG_SOF3 0xC3 /* Lossless (sequential) */
  38. #endif _JPEG_H_