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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  ======== ijpegdec.c ========
  3.  *  This file defines the default parameter structure for ijpegdec.h
  4.  */
  5. #include <std.h>
  6. #include "ijpegdec.h"
  7. /*------------------------------------------------------------------*/
  8. /* Output pitch to use to paste decoded samples 4:2:0 structure.    */
  9. /* This will paste even a decoded image of 320x240 into a 720xX     */
  10. /* region.                                                          */
  11. /*------------------------------------------------------------------*/
  12. #define  HC 720
  13. /*
  14.  *  ======== JPEGDEC_PARAMS ========
  15.  *  This constant structure defines the default parameters for JPEGDEC objects
  16.  */
  17. IJPEGDEC_Params IJPEGDEC_PARAMS = 
  18. {
  19.     sizeof(IJPEGDEC_Params),
  20.     HC, (HC >>1), (HC >> 1)
  21. };
  22. /*------------------------------------------------------------------*/
  23. /* Texas Instruments Incorporated 1997-2003.                        */
  24. /*==================================================================*/
  25. /*                                                                  */
  26. /*------------------------------------------------------------------*/