summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/ScreenSharing/VP8RTPParser.h')
-rw-r--r--Swiften/ScreenSharing/VP8RTPParser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swiften/ScreenSharing/VP8RTPParser.h b/Swiften/ScreenSharing/VP8RTPParser.h
index c88e2a6..1594c66 100644
--- a/Swiften/ScreenSharing/VP8RTPParser.h
+++ b/Swiften/ScreenSharing/VP8RTPParser.h
@@ -11,11 +11,11 @@
#include <stddef.h>
namespace Swift {
- class VP8Decoder;
+ class VideoDecoder;
class VP8RTPParser {
public:
- VP8RTPParser(VP8Decoder* decoder);
+ VP8RTPParser(VideoDecoder* decoder);
void newPayloadReceived(const uint8_t* data, size_t len, bool hasMarker);
@@ -24,7 +24,7 @@ namespace Swift {
static const uint8_t HBit = 1 << 4;
static const uint8_t Size0BitShift = 5;
- VP8Decoder* decoder;
+ VideoDecoder* decoder;
std::vector<uint8_t> buffer;
bool firstPacket;