summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/RTPSession.h')
-rw-r--r--Swiften/ScreenSharing/RTPSession.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Swiften/ScreenSharing/RTPSession.h b/Swiften/ScreenSharing/RTPSession.h
index bdb2861..4399b2d 100644
--- a/Swiften/ScreenSharing/RTPSession.h
+++ b/Swiften/ScreenSharing/RTPSession.h
@@ -14,19 +14,15 @@
namespace Swift {
class UDPSocket;
+ class RTPPayloadType;
class RTPSession {
public:
typedef boost::shared_ptr<RTPSession> ref;
- enum PayloadType {
- VP8 = 98,
- };
-
public:
virtual ~RTPSession() {}
- virtual void create(boost::shared_ptr<UDPSocket> udpSocket, const HostAddressPort& remotePeer, PayloadType payloadType, int frequency) = 0;
virtual void poll() = 0;
virtual void checkIncomingPackets() = 0;
virtual void sendPacket(const SafeByteArray& data, int timestampinc, bool marker = false) = 0;