celljpegdec_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.  *  ======== celljpegdec.h ========
  11.  */
  12. #ifndef CELLJPEGDEC_
  13. #define CELLJPEGDEC_
  14. #include <icell.h>
  15. #include "ijpegdec.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. // v-table for this cell 
  20. extern ICELL_Fxns JPEGDEC_CELLFXNS;
  21. // v-table for this cell's algorithm
  22. extern far IJPEGDEC_Fxns JPEGDEC_IJPEGDEC;
  23. /*
  24.  *  ======== JPEGDEC_cellClose ========
  25.  *
  26.  */
  27. extern Bool JPEGDEC_cellClose( ICELL_Handle handle );
  28. /*
  29.  *  ======== JPEGDEC_cellExecute ========
  30.  *  Function used to execute the algorithm corresponding to the cell 
  31.  */
  32. extern Bool JPEGDEC_cellExecute( ICELL_Handle handle, Arg arg );
  33. /*
  34.  *  ======== JPEGDEC_cellOpen ========
  35.  *
  36.  */
  37. extern Bool JPEGDEC_cellOpen( ICELL_Handle handle );
  38. /* 
  39.  * ======== JPEGDEC cell environment ========
  40.  */
  41. typedef struct JPEGDEC_Env {
  42.     Char * butterflyIntBuf;
  43.     Char * procIntBuf;
  44.     Char * intYBuf;
  45.     Char * intCrBuf;
  46.     Char * intCbBuf;
  47. } JPEGDEC_Env;
  48. #ifdef __cplusplus
  49. }
  50. #endif // extern "C" 
  51. #endif // CELLJPEGDEC_