diff --git a/src/modules/video_coding/codecs/vp8/main/test/rps_test.cc b/src/modules/video_coding/codecs/vp8/main/test/rps_test.cc index ffc6d6dca..80f21a356 100644 --- a/src/modules/video_coding/codecs/vp8/main/test/rps_test.cc +++ b/src/modules/video_coding/codecs/vp8/main/test/rps_test.cc @@ -77,7 +77,7 @@ void VP8RpsTest::Perform() { double starttime = clock()/(double)CLOCKS_PER_SEC; while (!complete) { CodecSpecific_InitBitrate(); - complete = Encode(&decCallback2); + complete = EncodeRps(&decCallback2); if (!frameQueue.Empty() || complete) { while (!frameQueue.Empty()) { _frameToDecode = @@ -132,7 +132,7 @@ void VP8RpsTest::Perform() { Teardown(); } -bool VP8RpsTest::Encode(RpsDecodeCompleteCallback* decodeCallback) { +bool VP8RpsTest::EncodeRps(RpsDecodeCompleteCallback* decodeCallback) { _lengthEncFrame = 0; size_t bytes_read = fread(_sourceBuffer, 1, _lengthSourceFrame, _sourceFile); if (bytes_read < _lengthSourceFrame) diff --git a/src/modules/video_coding/codecs/vp8/main/test/rps_test.h b/src/modules/video_coding/codecs/vp8/main/test/rps_test.h index e8ff930dd..cbdbfa32d 100644 --- a/src/modules/video_coding/codecs/vp8/main/test/rps_test.h +++ b/src/modules/video_coding/codecs/vp8/main/test/rps_test.h @@ -25,7 +25,7 @@ class VP8RpsTest : public VP8NormalAsyncTest { private: VP8RpsTest(std::string name, std::string description, unsigned int testNo) : VP8NormalAsyncTest(name, description, testNo) {} - virtual bool Encode(RpsDecodeCompleteCallback* decodeCallback); + virtual bool EncodeRps(RpsDecodeCompleteCallback* decodeCallback); virtual int Decode(int lossValue = 0); static bool CheckIfBitExact(const void *ptrA, unsigned int aLengthBytes,