summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordknn <yoann.blein@free.fr>2012-07-09 11:57:44 (GMT)
committerdknn <yoann.blein@free.fr>2012-09-22 09:00:01 (GMT)
commit68c8467913451099154b28d5a876ae14c1a9e1dd (patch)
tree50fdc9ff78f95fc783c1ac80b0a510426202ae38 /Swiften
parent88822191fbc4deaad178a969e06f9527082e02d2 (diff)
downloadswift-contrib-68c8467913451099154b28d5a876ae14c1a9e1dd.zip
swift-contrib-68c8467913451099154b28d5a876ae14c1a9e1dd.tar.bz2
Fix linking errors + add libvpx
Diffstat (limited to 'Swiften')
-rw-r--r--Swiften/Network/UDPSocketFactory.h2
-rw-r--r--Swiften/ScreenSharing/RTPSession.h2
-rw-r--r--Swiften/ScreenSharing/SConscript17
-rw-r--r--Swiften/ScreenSharing/VP8Encoder.cpp1
-rw-r--r--Swiften/ScreenSharing/VP8RTPPacketizer.cpp1
-rw-r--r--Swiften/ScreenSharing/VP8RTPPacketizer.h8
6 files changed, 19 insertions, 12 deletions
diff --git a/Swiften/Network/UDPSocketFactory.h b/Swiften/Network/UDPSocketFactory.h
index 33dd78c..8e1cc6f 100644
--- a/Swiften/Network/UDPSocketFactory.h
+++ b/Swiften/Network/UDPSocketFactory.h
@@ -13,7 +13,7 @@ namespace Swift {
class UDPSocketFactory {
public:
- virtual ~UDPSocketFactory();
+ virtual ~UDPSocketFactory() {}
virtual boost::shared_ptr<UDPSocket> createUDPSocket() = 0;
};
diff --git a/Swiften/ScreenSharing/RTPSession.h b/Swiften/ScreenSharing/RTPSession.h
index 717ac17..bdb2861 100644
--- a/Swiften/ScreenSharing/RTPSession.h
+++ b/Swiften/ScreenSharing/RTPSession.h
@@ -24,7 +24,7 @@ namespace Swift {
};
public:
- virtual ~RTPSession();
+ virtual ~RTPSession() {}
virtual void create(boost::shared_ptr<UDPSocket> udpSocket, const HostAddressPort& remotePeer, PayloadType payloadType, int frequency) = 0;
virtual void poll() = 0;
diff --git a/Swiften/ScreenSharing/SConscript b/Swiften/ScreenSharing/SConscript
index 6504541..a593296 100644
--- a/Swiften/ScreenSharing/SConscript
+++ b/Swiften/ScreenSharing/SConscript
@@ -2,14 +2,10 @@ Import("swiften_env", "env")
sources = [
"Image.cpp",
- "VP8Encoder.cpp",
- "VP8RTPPacketizer.cpp",
- "VP8Decoder.cpp",
- "VP8RTPParser.cpp",
"ScreenSharing.cpp",
"OutgoingScreenSharing.cpp",
- "OutgoingScreenSharingManager.cpp",
"IncomingScreenSharing.cpp",
+ "OutgoingScreenSharingManager.cpp",
"IncomingScreenSharingManager.cpp",
"ScreenSharingManagerImpl.cpp",
]
@@ -24,6 +20,17 @@ if swiften_env["experimental"] :
"RTPSessionImpl.cpp",
])
+ # libvpx classes
+ libvpx_env = swiften_env.Clone()
+ #libvpx_env.Append(CPPDEFINES = libvpx_env["LIBVPX_FLAGS"].get("INTERNAL_CPPDEFINES", []))
+ libvpx_env.MergeFlags(libvpx_env.get("LIBVPX_FLAGS", {}))
+ objects += libvpx_env.SwiftenObject([
+ "VP8Encoder.cpp",
+ "VP8Decoder.cpp",
+ "VP8RTPPacketizer.cpp",
+ "VP8RTPParser.cpp",
+ ])
+
swiften_env.Append(SWIFTEN_OBJECTS = [objects])
#env.Append(UNITTEST_SOURCES = [])
diff --git a/Swiften/ScreenSharing/VP8Encoder.cpp b/Swiften/ScreenSharing/VP8Encoder.cpp
index 3ca0edd..ed4d3de 100644
--- a/Swiften/ScreenSharing/VP8Encoder.cpp
+++ b/Swiften/ScreenSharing/VP8Encoder.cpp
@@ -82,7 +82,6 @@ void VP8Encoder::encodeImage(const Image &frame)
while ((pkt = vpx_codec_get_cx_data(&codecContext, &iter))) {
switch (pkt->kind) {
case VPX_CODEC_CX_FRAME_PKT:
- // TODO: Packetize this frame data
packetizer->packetizeFrame(pkt);
break;
default:
diff --git a/Swiften/ScreenSharing/VP8RTPPacketizer.cpp b/Swiften/ScreenSharing/VP8RTPPacketizer.cpp
index 4c1e8e9..b88e2171 100644
--- a/Swiften/ScreenSharing/VP8RTPPacketizer.cpp
+++ b/Swiften/ScreenSharing/VP8RTPPacketizer.cpp
@@ -6,7 +6,6 @@
#include <Swiften/ScreenSharing/VP8RTPPacketizer.h>
-
namespace Swift {
VP8RTPPacketizer::VP8RTPPacketizer()
diff --git a/Swiften/ScreenSharing/VP8RTPPacketizer.h b/Swiften/ScreenSharing/VP8RTPPacketizer.h
index 50cc8a0..d5343c0 100644
--- a/Swiften/ScreenSharing/VP8RTPPacketizer.h
+++ b/Swiften/ScreenSharing/VP8RTPPacketizer.h
@@ -6,12 +6,14 @@
#pragma once
-#include <boost/shared_ptr.hpp>
+#include <Swiften/Base/boost_bsignals.h>
+
#include <vector>
#include <stdint.h>
-#include <Swiften/Base/boost_bsignals.h>
-#include "vpx/vpx_encoder.h"
+#include <boost/shared_ptr.hpp>
+
+#include "vpx/vpx_encoder.h"
namespace Swift {
class VP8RTPPacketizer {