WebRtcVideoCapturer: Remove dead code |OnIncomingCapturedEncodedFrame|
The end goal except cleanup is to remove webrtc::VideoFrame. R=mflodman@webrtc.org, pbos@webrtc.org, perkj@webrtc.org Review URL: https://webrtc-codereview.appspot.com/36079004 Cr-Commit-Position: refs/heads/master@{#8393} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8393 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
7a91acb94a
commit
640313ce4f
@ -82,10 +82,6 @@ class WebRtcVideoCapturer : public VideoCapturer,
|
||||
// Callback when a frame is captured by camera.
|
||||
virtual void OnIncomingCapturedFrame(const int32_t id,
|
||||
webrtc::I420VideoFrame& frame);
|
||||
virtual void OnIncomingCapturedEncodedFrame(const int32_t id,
|
||||
webrtc::VideoFrame& frame,
|
||||
webrtc::VideoCodecType codec_type) {
|
||||
}
|
||||
virtual void OnCaptureDelayChanged(const int32_t id,
|
||||
const int32_t delay);
|
||||
|
||||
|
@ -142,12 +142,6 @@ class TestVideoCaptureCallback : public VideoCaptureDataCallback {
|
||||
last_render_time_ms_ = videoFrame.render_time_ms();
|
||||
last_frame_.CopyFrame(videoFrame);
|
||||
}
|
||||
virtual void OnIncomingCapturedEncodedFrame(const int32_t id,
|
||||
webrtc::VideoFrame& videoFrame,
|
||||
webrtc::VideoCodecType codecType)
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
virtual void OnCaptureDelayChanged(const int32_t id,
|
||||
const int32_t delay) {
|
||||
|
Loading…
Reference in New Issue
Block a user