/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #ifndef VIDEOFRAME_H #define VIDEOFRAME_H #pragma once #include #include #include namespace Swift { class VideoFrame { public: typedef boost::shared_ptr ref; VideoFrame(int width, int height, uint8_t *rgb24data); int width; int height; std::vector data; }; } #endif // VIDEOFRAME_H