Index: talk/app/webrtc/androidvideocapturer.cc |
diff --git a/talk/app/webrtc/androidvideocapturer.cc b/talk/app/webrtc/androidvideocapturer.cc |
index 65f883ef9d04f0a57bda6099000932513b6c3c94..3b7540fdc6d0a129106142285950f7fb84826765 100644 |
--- a/talk/app/webrtc/androidvideocapturer.cc |
+++ b/talk/app/webrtc/androidvideocapturer.cc |
@@ -67,10 +67,14 @@ class AndroidVideoCapturer::FrameFactory : public cricket::VideoFrameFactory { |
void UpdateCapturedFrame(void* frame_data, |
int length, |
+ int width, |
+ int height, |
int rotation, |
int64 time_stamp_in_ns) { |
captured_frame_.fourcc = static_cast<uint32>(cricket::FOURCC_YV12); |
captured_frame_.data = frame_data; |
+ captured_frame_.width = width; |
+ captured_frame_.height = height; |
captured_frame_.elapsed_time = rtc::TimeNanos() - start_time_; |
captured_frame_.time_stamp = time_stamp_in_ns; |
captured_frame_.rotation = rotation; |
@@ -235,10 +239,13 @@ void AndroidVideoCapturer::OnCapturerStarted(bool success) { |
void AndroidVideoCapturer::OnIncomingFrame(void* frame_data, |
int length, |
+ int width, |
+ int height, |
int rotation, |
int64 time_stamp) { |
CHECK(thread_checker_.CalledOnValidThread()); |
- frame_factory_->UpdateCapturedFrame(frame_data, length, rotation, time_stamp); |
+ frame_factory_->UpdateCapturedFrame(frame_data, length, width, height, |
+ rotation, time_stamp); |
SignalFrameCaptured(this, frame_factory_->GetCapturedFrame()); |
} |