summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordknn <yoann.blein@free.fr>2012-06-26 14:05:35 (GMT)
committerdknn <yoann.blein@free.fr>2012-09-22 08:53:12 (GMT)
commit39ac2af90938aec4f4e43b81a6e043e0ebcdd798 (patch)
treeadd99f9eb287778191ebde47917adbaa96a39b8a /Swiften/ScreenSharing/VideoFrame.h
parentf374887e7a27831771304a09a74d6cd54f8ef4e4 (diff)
downloadswift-contrib-39ac2af90938aec4f4e43b81a6e043e0ebcdd798.zip
swift-contrib-39ac2af90938aec4f4e43b81a6e043e0ebcdd798.tar.bz2
Single threaded codec
Diffstat (limited to 'Swiften/ScreenSharing/VideoFrame.h')
-rw-r--r--Swiften/ScreenSharing/VideoFrame.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/Swiften/ScreenSharing/VideoFrame.h b/Swiften/ScreenSharing/VideoFrame.h
deleted file mode 100644
index 1d98062..0000000
--- a/Swiften/ScreenSharing/VideoFrame.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * 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