summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/Image.cpp')
-rw-r--r--Swiften/ScreenSharing/Image.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/Swiften/ScreenSharing/Image.cpp b/Swiften/ScreenSharing/Image.cpp
new file mode 100644
index 0000000..c3acd69
--- /dev/null
+++ b/Swiften/ScreenSharing/Image.cpp
@@ -0,0 +1,22 @@
+/*
+ * Copyright (c) 2012 Yoann Blein
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+#include <Swiften/ScreenSharing/Image.h>
+
+namespace Swift {
+
+Image::Image(int width, int height, uint8_t* rgb24data)
+ : width(width), height(height)
+{
+ int len = width * height * 3;
+ if (rgb24data) {
+ data.insert(data.begin(), rgb24data, rgb24data + len);
+ } else {
+ data.resize(len);
+ }
+}
+
+}