00001 00002 /*! 00003 ************************************************************************ 00004 * \file io_raw.h 00005 * 00006 * \brief 00007 * I/O functions related to raw images 00008 * 00009 * \author 00010 * - Alexis Michael Tourapis <alexismt@ieee.org> 00011 * 00012 ************************************************************************ 00013 */ 00014 00015 #ifndef _IO_RAW_H_ 00016 #define _IO_RAW_H_ 00017 00018 extern void ReadFrameConcatenated (InputParameters *p_Inp, VideoDataFile *input_file, int FrameNoInFile, int HeaderSize, FrameFormat *source, unsigned char *buf); 00019 extern void ReadFrameSeparate (InputParameters *p_Inp, VideoDataFile *input_file, int FrameNoInFile, int HeaderSize, FrameFormat *source, unsigned char *buf); 00020 00021 #endif 00022