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