summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/RTPSession.h')
-rw-r--r--Swiften/ScreenSharing/RTPSession.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Swiften/ScreenSharing/RTPSession.h b/Swiften/ScreenSharing/RTPSession.h
index e4aa9c1..c9c6ae8 100644
--- a/Swiften/ScreenSharing/RTPSession.h
+++ b/Swiften/ScreenSharing/RTPSession.h
@@ -29,9 +29,14 @@ namespace Swift {
virtual void injectData(const SafeByteArray& data) = 0;
virtual void stop(int maxWaitMs = 100) = 0;
+ virtual void sendSLIFeedback(int pictureID) = 0;
+ virtual void sendRPSIFeedback(int pictureID) = 0;
+
virtual size_t getMaxRTPPayloadSize() const = 0;
public:
boost::signal<void (uint8_t* data, size_t len, bool marker)> onIncomingPacket;
+ boost::signal<void (int sixLeastBitsPictureID)> onSLIFeedback;
+ boost::signal<void (int pictureID)> onRPSIFeedback;
};
}