From f448ccd16c5de7cb27edb2127464f6d66df98550 Mon Sep 17 00:00:00 2001 From: "turaj@webrtc.org" Date: Thu, 10 May 2012 22:52:19 +0000 Subject: [PATCH] Revert 2216 - Fix for receive only channels. A series of CL:s by Patrik W. is breaking the auto-test. It started with CL 2211, but the later CL:s seems dependent on another. So I decided to go in reverse order and revert all of them. TBR Review URL: https://webrtc-codereview.appspot.com/564008 TBR=pwestin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/579011 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2221 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/video_engine/vie_channel_manager.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video_engine/vie_channel_manager.cc b/src/video_engine/vie_channel_manager.cc index 777bcccc29..3fbaff8c9d 100644 --- a/src/video_engine/vie_channel_manager.cc +++ b/src/video_engine/vie_channel_manager.cc @@ -206,6 +206,8 @@ int ViEChannelManager::DeleteChannel(int channel_id) { // Check if other channels are using the same encoder. if (ChannelUsingViEEncoder(channel_id)) { + // Not supported. + assert(false); vie_encoder = NULL; } else { // Delete later when we've released the critsect.