ijpeg.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 1999 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  U.S. Patent Nos. 5,283,900  5,392,448
  7.  */
  8. /* "@(#) XDAS 2.00 11-12-99 (__imports)" */
  9. /*
  10.  *  ======== ijpeg.h ========
  11.  *  This header defines all types and constants common to all JPEG
  12.  *  encoder and decoder modules.
  13.  */
  14. #ifndef IJPEG_
  15. #define IJPEG_
  16. /*
  17.  *  ======== IJPEG_Cmd ========
  18.  *  This structure defines the control commands for the JPEG encoder
  19.  *  and decoder instance objects.
  20.  */
  21. typedef enum IJPEG_Cmd {
  22.     IJPEG_GETSTATUS,
  23.     IJPEG_SETSTATUS
  24. } IJPEG_Cmd;
  25. #endif  /* IJPEG_ */