home *** CD-ROM | disk | FTP | other *** search
/ IRIS Development Option 6.2 / IRIS_Development_Option_6.2_814-0478-001.iso / dist / dmedia_dev.idb / usr / include / dmedia / cl_jpeg.h.z / cl_jpeg.h
C/C++ Source or Header  |  1996-03-14  |  2KB  |  53 lines

  1. /*****************************************************************************
  2.  *
  3.  * SGI compression library 
  4.  *
  5.  * cl_jpeg.h : JPEG parameters
  6.  *
  7.  * Copyright 1992, 1993 & 1994, Silicon Graphics, Inc.
  8.  * All Rights Reserved.
  9.  *
  10.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  11.  * the contents of this file may not be disclosed to third parties, copied or
  12.  * duplicated in any form, in whole or in part, without the prior written
  13.  * permission of Silicon Graphics, Inc.
  14.  *
  15.  * RESTRICTED RIGHTS LEGEND:
  16.  * Use, duplication or disclosure by the Government is subject to restrictions
  17.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  18.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  19.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  20.  * rights reserved under the Copyright Laws of the United States.
  21.  *
  22.  ****************************************************************************/
  23.  
  24. #ifndef _INC_CL_JPEG_H
  25. #define _INC_CL_JPEG_H
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30.  
  31. #define CL_JPEG_QUALITY_FACTOR                  (CL_ParamID(1, 0))
  32. #define CL_JPEG_STREAM_HEADERS                     (CL_ParamID(1, 1))
  33. #define CL_JPEG_QUANTIZATION_TABLES                (CL_ParamID(1, 2))
  34. #define CL_JPEG_NUM_PARAMS                      11 
  35.  
  36. /*************************************************************************** 
  37. *
  38. * Backwards Compatibility
  39. *
  40. ***************************************************************************/
  41.  
  42. #define CL_QUALITY_FACTOR                CL_JPEG_QUALITY_FACTOR 
  43. #define CL_STREAM_HEADERS                CL_JPEG_STREAM_HEADERS
  44. #define CL_NUMBER_OF_QUANTIZATION_TABLES CL_JPEG_NUMBER_OF_QUANTIZATION_TABLES
  45. #define CL_QUANTIZATION_TABLES           CL_JPEG_QUANTIZATION_TABLES  
  46. #define CL_CURRENT_QUANTIZATION_TABLE    CL_JPEG_CURRENT_QUANTIZATION_TABLE
  47.  
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51.  
  52. #endif /* _INC_CL_JPEG_H */
  53.