Remove a test case that only causes problems due to badly

synchronized test. The test is as useful without this test case.
Review URL: http://webrtc-codereview.appspot.com/47003

git-svn-id: http://webrtc.googlecode.com/svn/trunk@115 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
holmer@google.com 2011-06-22 08:37:54 +00:00
parent d3b208d1c9
commit 868b857395

View File

@ -54,7 +54,6 @@ bool DecodeThread(void* obj)
{
SharedState* state = static_cast<SharedState*>(obj);
WebRtc_Word32 ret = state->_vcm.Decode(10000);
TEST(ret == VCM_OK || ret == VCM_UNINITIALIZED || ret == VCM_NO_CODEC_REGISTERED);
while (state->_vcm.DecodeDualFrame(0) == 1);
return true;
}