summaryrefslogtreecommitdiff
path: root/rotord/src/ffmpeg-fas_wrapper.h
blob: dedff62c08a3125a4ac578ef650d6e851f5a6322 (plain)
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