1
0

img_io.h 984 B

12345678910111213141516171819202122232425262728
  1. /*!
  2. *************************************************************************************
  3. * \file img_io.h
  4. *
  5. * \brief
  6. * image I/O related functions
  7. *
  8. * \author
  9. * Main contributors (see contributors.h for copyright, address and affiliation details)
  10. * - Alexis Michael Tourapis <[email protected]>
  11. *************************************************************************************
  12. */
  13. #include "global.h"
  14. #ifndef _IMG_IO_H_
  15. #define _IMG_IO_H_
  16. #include "io_video.h"
  17. extern int ParseSizeFromString (VideoDataFile *input_file, int *xlen, int *ylen, double *fps);
  18. extern void ParseFrameNoFormatFromString (VideoDataFile *input_file);
  19. extern void OpenFrameFile (VideoDataFile *input_file, int FrameNumberInFile);
  20. extern void OpenFiles (VideoDataFile *input_file);
  21. extern void CloseFiles (VideoDataFile *input_file);
  22. extern VideoFileType ParseVideoType (VideoDataFile *input_file);
  23. #endif