Move DeliverCapturedFrame from private to protected.

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@765 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
wu@webrtc.org 2011-10-19 00:16:36 +00:00
parent 1305a1d05e
commit 8fd93d4d96

View File

@ -115,6 +115,9 @@ public:
protected:
VideoCaptureImpl(const WebRtc_Word32 id);
virtual ~VideoCaptureImpl();
WebRtc_Word32 DeliverCapturedFrame(
VideoFrame& captureFrame, WebRtc_Word32 width, WebRtc_Word32 height,
WebRtc_Word64 capture_time, VideoCodecType codec_type);
WebRtc_Word32 _id; // Module ID
WebRtc_UWord8* _deviceUniqueId; // current Device unique name;
@ -124,9 +127,6 @@ protected:
private:
void UpdateFrameCount();
WebRtc_UWord32 CalculateFrameRate(const TickTime& now);
WebRtc_Word32 DeliverCapturedFrame(
VideoFrame& captureFrame, WebRtc_Word32 width, WebRtc_Word32 height,
WebRtc_Word64 capture_time, VideoCodecType codec_type);
CriticalSectionWrapper& _callBackCs;