summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/VideoFrame.h')
-rw-r--r--Swiften/ScreenSharing/VideoFrame.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Swiften/ScreenSharing/VideoFrame.h b/Swiften/ScreenSharing/VideoFrame.h
new file mode 100644
index 0000000..1d98062
--- /dev/null
+++ b/Swiften/ScreenSharing/VideoFrame.h
@@ -0,0 +1,29 @@
+/*
+ * 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 <boost/shared_ptr.hpp>
+#include <vector>
+#include <stdint.h>
+
+namespace Swift {
+ class VideoFrame {
+ public:
+ typedef boost::shared_ptr<VideoFrame> ref;
+
+ VideoFrame(int width, int height, uint8_t *rgb24data);
+
+ int width;
+ int height;
+ std::vector<uint8_t> data;
+ };
+}
+
+#endif // VIDEOFRAME_H