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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2002 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.  *  
  7.  */
  8. /* "@(#) RF5_IEK 1.20.07 09-26-02 (swat-c12)" */
  9. /*
  10.  *  ======== celljpegenc.h ========
  11.  */
  12. #ifndef CELLJPEGENCATE_
  13. #define CELLJPEGENCATE_
  14. #include <icell.h>
  15. #include "ijpegenc.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. // v-table for this cell 
  20. extern ICELL_Fxns JPEGENC_CELLFXNS;
  21. // v-table for this cell's algorithm
  22. extern far IJPEGENC_Fxns JPEGENC_IJPEGENC;
  23. /*
  24.  *  ======== JPEGDEC_cellClose ========
  25.  *
  26.  */
  27. extern Bool JPEGENC_cellClose( ICELL_Handle handle );
  28. /*
  29.  *  ======== JPEGENC_cellExecute ========
  30.  *  Function used to execute the algorithm corresponding to the cell 
  31.  */
  32. extern Bool JPEGENC_cellExecute( ICELL_Handle handle, Arg arg );
  33. /*
  34.  *  ======== JPEGDEC_cellOpen ========
  35.  *
  36.  */
  37. extern Bool JPEGENC_cellOpen( ICELL_Handle handle );
  38. extern Int JPEGENC_cellControl(ICELL_Handle handle, IALG_Cmd cmd, IALG_Status *status);
  39. /* 
  40.  * ======== JPEGENC cell environment ========
  41.  */
  42. typedef struct JPEGENC_Env {
  43.     Char * butterflyIntBuf;
  44.     Char * procIntBuf;
  45.     Char * intYBuf;
  46.     Char * intCrBuf;
  47.     Char * intCbBuf;
  48. } JPEGENC_Env;
  49. #ifdef __cplusplus
  50. }
  51. #endif // extern "C" 
  52. #endif // CELLJPEGENC_