1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef ffmpeg_fas_wrapper_H #define ffmpeg_fas_wrapper_H #include <string> #include "ffmpeg_fas.h" namespace ffmpeg_fas { class decoder { public: bool open(std::string& fileName); fas_raw_image_type frame; }; } #endif