Removed unused variables and unnecessary assert: causing build error in vpm_test.

Review URL: http://webrtc-codereview.appspot.com/128001

git-svn-id: http://webrtc.googlecode.com/svn/trunk@440 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
marpan@google.com 2011-08-24 20:53:15 +00:00
parent 4f390000dd
commit 057efc8f98
2 changed files with 0 additions and 5 deletions

View File

@ -24,9 +24,6 @@ TEST_F(VideoProcessingModuleTest, ContentAnalysis)
_ca_c.Initialize(_width,_height);
_ca_sse.Initialize(_width,_height);
ASSERT_EQ(352, _width);
ASSERT_EQ(288, _height);
while (fread(_videoFrame.Buffer(), 1, _frameLength, _sourceFile)
== _frameLength)
{

View File

@ -268,7 +268,6 @@ TEST_F(VideoProcessingModuleTest, PreprocessorLogic)
TEST_F(VideoProcessingModuleTest, Resampler)
{
enum { NumRuns = 1 };
WebRtc_UWord32 frameNum = 0;
WebRtc_Word64 minRuntime = 0;
WebRtc_Word64 avgRuntime = 0;
@ -276,7 +275,6 @@ TEST_F(VideoProcessingModuleTest, Resampler)
TickTime t0;
TickTime t1;
TickInterval accTicks;
WebRtc_Word32 modifiedPixels = 0;
WebRtc_Word32 height = 288;
WebRtc_Word32 width = 352;
WebRtc_Word32 lengthSourceFrame = width*height*3/2;