X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Fwebrtc%2Fvideo_engine%2Ftest%2Flibvietest%2Ftestbed%2Ftb_interfaces.cc;h=fc95967015ab3e1a5fb96f225877c324e549f834;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=bd4cdeddcbca5c69fbdda1055cfb77f5a444fd4a;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/webrtc/video_engine/test/libvietest/testbed/tb_interfaces.cc b/src/third_party/webrtc/video_engine/test/libvietest/testbed/tb_interfaces.cc index bd4cded..fc95967 100644 --- a/src/third_party/webrtc/video_engine/test/libvietest/testbed/tb_interfaces.cc +++ b/src/third_party/webrtc/video_engine/test/libvietest/testbed/tb_interfaces.cc @@ -21,8 +21,7 @@ TbInterfaces::TbInterfaces(const std::string& test_name) : rtp_rtcp(NULL), codec(NULL), network(NULL), - image_process(NULL), - encryption(NULL) + image_process(NULL) { std::string complete_path = webrtc::test::OutputPath() + test_name + "_trace.txt"; @@ -55,15 +54,10 @@ TbInterfaces::TbInterfaces(const std::string& test_name) : image_process = webrtc::ViEImageProcess::GetInterface(video_engine); EXPECT_TRUE(image_process != NULL); - - encryption = webrtc::ViEEncryption::GetInterface(video_engine); - EXPECT_TRUE(encryption != NULL); } TbInterfaces::~TbInterfaces(void) { - EXPECT_EQ(0, encryption->Release()); - encryption = NULL; EXPECT_EQ(0, image_process->Release()); image_process = NULL; EXPECT_EQ(0, codec->Release());