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:
@@ -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;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user