input.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  ************************************************************************
  3.  * file input.h
  4.  *
  5.  * brief
  6.  *    Input related definitions
  7.  *
  8.  * author
  9.  *
  10.  ************************************************************************
  11.  */
  12. #ifndef _INPUT_H_
  13. #define _INPUT_H_
  14. int testEndian(void);
  15. void initInput(FrameFormat *source, FrameFormat *output);
  16. int AllocateFrameMemory (ImageParameters *img, int size);
  17. void DeleteFrameMemory (void);
  18. void ReadOneFrame (int FrameNoInFile, int HeaderSize, FrameFormat *source, FrameFormat *output);
  19. extern void (*buf2img) ( imgpel** imgX, unsigned char* buf, int size_x, int size_y, int osize_x, int o_size_y, int symbol_size_in_bytes, int bitshift);
  20. #endif