summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordknn <yoann.blein@free.fr>2012-07-03 08:41:38 (GMT)
committerdknn <yoann.blein@free.fr>2012-09-22 08:53:12 (GMT)
commit63f031be6dc042ea7d769d5de283af466399371e (patch)
tree9386d5be56a60f41f4636cc2460b736a654585db /Swiften/ScreenSharing/RTPSession.cpp
parent9af0239df10283e03ace0a6a9d719bbe8dc32398 (diff)
downloadswift-contrib-63f031be6dc042ea7d769d5de283af466399371e.zip
swift-contrib-63f031be6dc042ea7d769d5de283af466399371e.tar.bz2
Abstract layer between Swiften & JRTPLIB
Diffstat (limited to 'Swiften/ScreenSharing/RTPSession.cpp')
-rw-r--r--Swiften/ScreenSharing/RTPSession.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/Swiften/ScreenSharing/RTPSession.cpp b/Swiften/ScreenSharing/RTPSession.cpp
new file mode 100644
index 0000000..9af62f1
--- /dev/null
+++ b/Swiften/ScreenSharing/RTPSession.cpp
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2012 Yoann Blein
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+#include <Swiften/ScreenSharing/RTPSession.h>
+
+namespace Swift {
+
+RTPSession::RTPSession(const HostAddressPort &remotePeer, PayloadType payloadType, int frequency)
+ : remotePeer(remotePeer), payloadType(payloadType), frequency(frequency)
+{
+}
+
+RTPSession::~RTPSession()
+{
+}
+
+}