git-svn-id: http://webrtc.googlecode.com/svn/trunk@1812 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
leozwang@webrtc.org
2012-03-01 16:31:00 +00:00
parent 1745e932cc
commit 0689271d64
4 changed files with 4 additions and 5 deletions

View File

@ -33,7 +33,7 @@ public:
VideoCaptureCapability& capability); VideoCaptureCapability& capability);
virtual WebRtc_Word32 GetBestMatchedCapability( virtual WebRtc_Word32 GetBestMatchedCapability(
const char*deviceUniqueIdUTF8, const char* deviceUniqueIdUTF8,
const VideoCaptureCapability& requested, const VideoCaptureCapability& requested,
VideoCaptureCapability& resulting); VideoCaptureCapability& resulting);
virtual WebRtc_Word32 GetOrientation( virtual WebRtc_Word32 GetOrientation(

View File

@ -19,7 +19,7 @@ void TestI420CallSetup(webrtc::ViECodec* codec_interface,
webrtc::ViEBase* base_interface, webrtc::ViEBase* base_interface,
webrtc::ViENetwork* network_interface, webrtc::ViENetwork* network_interface,
int video_channel, int video_channel,
const char *device_name) { const char* device_name) {
webrtc::VideoCodec video_codec; webrtc::VideoCodec video_codec;
memset(&video_codec, 0, sizeof(webrtc::VideoCodec)); memset(&video_codec, 0, sizeof(webrtc::VideoCodec));

View File

@ -27,6 +27,6 @@ void TestI420CallSetup(webrtc::ViECodec* codec_interface,
webrtc::ViEBase* base_interface, webrtc::ViEBase* base_interface,
webrtc::ViENetwork* network_interface, webrtc::ViENetwork* network_interface,
int video_channel, int video_channel,
const char *device_name); const char* device_name);
#endif // SRC_VIDEO_ENGINE_MAIN_TEST_AUTOTEST_SOURCE_BASE_PRIMITIVES_H_ #endif // SRC_VIDEO_ENGINE_MAIN_TEST_AUTOTEST_SOURCE_BASE_PRIMITIVES_H_

View File

@ -48,7 +48,7 @@ WebRtc_Word32 TbI420Encoder::VersionStatic(char* version,
return verLen; return verLen;
} }
WebRtc_Word32 TbI420Encoder::Version(char *version, WebRtc_Word32 TbI420Encoder::Version(char* version,
WebRtc_Word32 length) const WebRtc_Word32 length) const
{ {
return VersionStatic(version, length); return VersionStatic(version, length);
@ -321,4 +321,3 @@ TbI420Decoder::FunctionCalls TbI420Decoder::GetFunctionCalls()
{ {
return _functionCalls; return _functionCalls;
} }