diff options
| author | dknn <yoann.blein@free.fr> | 2012-07-15 16:18:18 (GMT) |
|---|---|---|
| committer | dknn <yoann.blein@free.fr> | 2012-09-22 09:01:49 (GMT) |
| commit | c9ba8e43fc23fccd47531ecea73224b3b9b552c3 (patch) | |
| tree | 9d9953000cc4d76e798cd1967e8f1e76ff102100 /Swiften/ScreenSharing/VP8RTPPacketizer.h | |
| parent | 70e395802de55b1d2eb9f92ad86349cd2d0d0575 (diff) | |
| download | swift-contrib-c9ba8e43fc23fccd47531ecea73224b3b9b552c3.zip swift-contrib-c9ba8e43fc23fccd47531ecea73224b3b9b552c3.tar.bz2 | |
Fix troubles in screen sharing example
Diffstat (limited to 'Swiften/ScreenSharing/VP8RTPPacketizer.h')
| -rw-r--r-- | Swiften/ScreenSharing/VP8RTPPacketizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/ScreenSharing/VP8RTPPacketizer.h b/Swiften/ScreenSharing/VP8RTPPacketizer.h index d5343c0..c56e754 100644 --- a/Swiften/ScreenSharing/VP8RTPPacketizer.h +++ b/Swiften/ScreenSharing/VP8RTPPacketizer.h @@ -28,9 +28,9 @@ namespace Swift { static const uint8_t SBit = 1 << 4; static const uint8_t HBit = 1 << 4; static const uint8_t Size0BitMask = 7; static const uint8_t Size0BitShift = 5; - static const size_t MaxRTPPayloadSize = 1400; // Replace with JRTPLIB's one + static const size_t MaxRTPPayloadSize = 1300; // Replace with JRTPLIB's one; TODO: fix the issue with maximum size std::vector<uint8_t> payloadBuffer; }; } |
Swift