vp8 test: Updating creation of enc/dec

Review URL: https://webrtc-codereview.appspot.com/937036

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3246 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
mikhal@webrtc.org
2012-12-06 19:14:26 +00:00
parent 251f64e9e8
commit b968213f3c

View File

@ -9,7 +9,7 @@
*/
#include "gtest/gtest.h"
#include "webrtc/modules/video_coding/codecs/vp8/vp8_impl.h"
#include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h"
#include "webrtc/modules/video_coding/codecs/test_framework/video_source.h"
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
#include "webrtc/system_wrappers/interface/tick_util.h"
@ -95,8 +95,8 @@ int Vp8UnitTestDecodeCompleteCallback::Decoded(I420VideoFrame& image) {
class TestVp8Impl : public ::testing::Test {
protected:
virtual void SetUp() {
encoder_.reset(new VP8EncoderImpl());
decoder_.reset(new VP8DecoderImpl());
encoder_.reset(VP8Encoder::Create());
decoder_.reset(VP8Decoder::Create());
memset(&codec_inst_, 0, sizeof(codec_inst_));
encode_complete_callback_.reset(new
Vp8UnitTestEncodeCompleteCallback(&encoded_video_frame_, 0, NULL));