vie_autotest_custom_call.cc - fixed VieAutotestDevcoderObserver to use const int for videoChannel for IncomingCodecChanged, RequestNewKeyFrame

- this caused vie_auto_test to fail for Windows (but fine for Linux & Mac).
Review URL: http://webrtc-codereview.appspot.com/253001

git-svn-id: http://webrtc.googlecode.com/svn/trunk@844 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
amyfong@webrtc.org
2011-10-31 19:10:26 +00:00
parent 4d8c81878e
commit 299e2c9ea4

View File

@@ -72,9 +72,9 @@ class ViEAutotestDecoderObserver: public webrtc::ViEDecoderObserver {
std::cout << "Received FR: " << framerate
<< " BR: " << bitrate << std::endl;
}
void IncomingCodecChanged(int videoChannel,
void IncomingCodecChanged(const int videoChannel,
const webrtc::VideoCodec& codec) {}
void RequestNewKeyFrame(int videoChannel) {
void RequestNewKeyFrame(const int videoChannel) {
std::cout << "Decoder requesting a new key frame." << std::endl;
}
};