Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / video_engine / test / libvietest / testbed / tb_interfaces.cc
index bd4cded..fc95967 100644 (file)
@@ -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());