Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/capture/video/video_capture_device_client.h" | 5 #include "media/capture/video/video_capture_device_client.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 31 namespace { | 31 namespace { |
| 32 | 32 |
| 33 bool IsFormatSupported(media::VideoPixelFormat pixel_format) { | 33 bool IsFormatSupported(media::VideoPixelFormat pixel_format) { |
| 34 return (pixel_format == media::PIXEL_FORMAT_I420 || | 34 return (pixel_format == media::PIXEL_FORMAT_I420 || |
| 35 pixel_format == media::PIXEL_FORMAT_Y16); | 35 pixel_format == media::PIXEL_FORMAT_Y16); |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace media { | 39 namespace media { |
| 40 | 40 |
| 41 // Class combining a Client::Buffer interface implementation and a pool buffer | 41 class BufferPoolProducerReservation |
| 42 // implementation to guarantee proper cleanup on destruction on our side. | 42 : public VideoCaptureDevice::Client::Buffer::ScopedAccessPermission { |
| 43 class AutoReleaseBuffer : public media::VideoCaptureDevice::Client::Buffer { | |
| 44 public: | 43 public: |
| 45 AutoReleaseBuffer(scoped_refptr<VideoCaptureBufferPool> pool, | 44 BufferPoolProducerReservation( |
| 46 int buffer_id, | 45 scoped_refptr<VideoCaptureBufferPool> buffer_pool, |
| 47 int frame_feedback_id) | 46 int buffer_id) |
| 48 : pool_(std::move(pool)), | 47 : buffer_pool_(std::move(buffer_pool)), buffer_id_(buffer_id) { |
| 49 id_(buffer_id), | 48 // The code invoking this contstructor is supposed to have already made a |
|
mcasas
2017/01/05 20:37:02
s/contstructor/constructor/
would there be a way
chfremer
2017/01/05 22:44:48
Hmm, not without changing the public API of VideoC
| |
| 50 frame_feedback_id_(frame_feedback_id), | 49 // producer reservation on the buffer from pool. |
| 51 buffer_handle_(pool_->GetBufferHandle(buffer_id)) { | |
| 52 DCHECK(pool_.get()); | |
| 53 } | 50 } |
| 54 int id() const override { return id_; } | 51 |
| 55 int frame_feedback_id() const override { return frame_feedback_id_; } | 52 ~BufferPoolProducerReservation() override { |
| 56 gfx::Size dimensions() const override { return buffer_handle_->dimensions(); } | 53 buffer_pool_->RelinquishProducerReservation(buffer_id_); |
| 57 size_t mapped_size() const override { return buffer_handle_->mapped_size(); } | |
| 58 void* data(int plane) override { return buffer_handle_->data(plane); } | |
| 59 #if defined(OS_POSIX) && !defined(OS_MACOSX) | |
| 60 base::FileDescriptor AsPlatformFile() override { | |
| 61 return buffer_handle_->AsPlatformFile(); | |
| 62 } | |
| 63 #endif | |
| 64 bool IsBackedByVideoFrame() const override { | |
| 65 return buffer_handle_->IsBackedByVideoFrame(); | |
| 66 } | |
| 67 scoped_refptr<VideoFrame> GetVideoFrame() override { | |
| 68 return buffer_handle_->GetVideoFrame(); | |
| 69 } | 54 } |
| 70 | 55 |
| 71 private: | 56 private: |
| 72 ~AutoReleaseBuffer() override { pool_->RelinquishProducerReservation(id_); } | 57 const scoped_refptr<VideoCaptureBufferPool> buffer_pool_; |
| 58 const int buffer_id_; | |
| 59 }; | |
| 73 | 60 |
| 74 const scoped_refptr<VideoCaptureBufferPool> pool_; | 61 class BufferPoolBufferHandleProvider |
| 75 const int id_; | 62 : public VideoCaptureDevice::Client::Buffer::HandleProvider { |
| 76 const int frame_feedback_id_; | 63 public: |
| 77 const std::unique_ptr<VideoCaptureBufferHandle> buffer_handle_; | 64 BufferPoolBufferHandleProvider( |
| 65 scoped_refptr<VideoCaptureBufferPool> buffer_pool, | |
| 66 int buffer_id) | |
| 67 : buffer_pool_(std::move(buffer_pool)), buffer_id_(buffer_id) {} | |
| 68 | |
| 69 // Implementation of HandleProvider: | |
| 70 mojo::ScopedSharedBufferHandle GetHandleForInterProcessTransit() override { | |
| 71 return buffer_pool_->GetHandleForInterProcessTransit(buffer_id_); | |
| 72 } | |
| 73 std::unique_ptr<VideoCaptureBufferHandle> GetHandleForInProcessAccess() | |
| 74 override { | |
| 75 return buffer_pool_->GetHandleForInProcessAccess(buffer_id_); | |
| 76 } | |
| 77 | |
| 78 private: | |
| 79 const scoped_refptr<VideoCaptureBufferPool> buffer_pool_; | |
| 80 const int buffer_id_; | |
| 78 }; | 81 }; |
| 79 | 82 |
| 80 VideoCaptureDeviceClient::VideoCaptureDeviceClient( | 83 VideoCaptureDeviceClient::VideoCaptureDeviceClient( |
| 81 std::unique_ptr<VideoFrameReceiver> receiver, | 84 std::unique_ptr<VideoFrameReceiver> receiver, |
| 82 scoped_refptr<VideoCaptureBufferPool> buffer_pool, | 85 scoped_refptr<VideoCaptureBufferPool> buffer_pool, |
| 83 const VideoCaptureJpegDecoderFactoryCB& jpeg_decoder_factory) | 86 const VideoCaptureJpegDecoderFactoryCB& jpeg_decoder_factory) |
| 84 : receiver_(std::move(receiver)), | 87 : receiver_(std::move(receiver)), |
| 85 jpeg_decoder_factory_callback_(jpeg_decoder_factory), | 88 jpeg_decoder_factory_callback_(jpeg_decoder_factory), |
| 86 external_jpeg_decoder_initialized_(false), | 89 external_jpeg_decoder_initialized_(false), |
| 87 buffer_pool_(std::move(buffer_pool)), | 90 buffer_pool_(std::move(buffer_pool)), |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 141 << rotation; | 144 << rotation; |
| 142 libyuv::RotationMode rotation_mode = libyuv::kRotate0; | 145 libyuv::RotationMode rotation_mode = libyuv::kRotate0; |
| 143 if (rotation == 90) | 146 if (rotation == 90) |
| 144 rotation_mode = libyuv::kRotate90; | 147 rotation_mode = libyuv::kRotate90; |
| 145 else if (rotation == 180) | 148 else if (rotation == 180) |
| 146 rotation_mode = libyuv::kRotate180; | 149 rotation_mode = libyuv::kRotate180; |
| 147 else if (rotation == 270) | 150 else if (rotation == 270) |
| 148 rotation_mode = libyuv::kRotate270; | 151 rotation_mode = libyuv::kRotate270; |
| 149 | 152 |
| 150 const gfx::Size dimensions(destination_width, destination_height); | 153 const gfx::Size dimensions(destination_width, destination_height); |
| 151 uint8_t *y_plane_data, *u_plane_data, *v_plane_data; | 154 Buffer buffer = |
| 152 std::unique_ptr<Buffer> buffer(ReserveI420OutputBuffer( | 155 ReserveOutputBuffer(dimensions, media::PIXEL_FORMAT_I420, |
| 153 dimensions, media::PIXEL_STORAGE_CPU, frame_feedback_id, &y_plane_data, | 156 media::PIXEL_STORAGE_CPU, frame_feedback_id); |
| 154 &u_plane_data, &v_plane_data)); | |
| 155 #if DCHECK_IS_ON() | 157 #if DCHECK_IS_ON() |
| 156 dropped_frame_counter_ = buffer.get() ? 0 : dropped_frame_counter_ + 1; | 158 dropped_frame_counter_ = buffer.is_valid() ? 0 : dropped_frame_counter_ + 1; |
| 157 if (dropped_frame_counter_ >= kMaxDroppedFrames) | 159 if (dropped_frame_counter_ >= kMaxDroppedFrames) |
| 158 OnError(FROM_HERE, "Too many frames dropped"); | 160 OnError(FROM_HERE, "Too many frames dropped"); |
| 159 #endif | 161 #endif |
| 160 // Failed to reserve I420 output buffer, so drop the frame. | 162 // Failed to reserve I420 output buffer, so drop the frame. |
| 161 if (!buffer.get()) | 163 if (!buffer.is_valid()) |
| 162 return; | 164 return; |
| 163 | 165 |
| 166 auto buffer_access = buffer.handle_provider->GetHandleForInProcessAccess(); | |
| 167 uint8_t *y_plane_data, *u_plane_data, *v_plane_data; | |
| 168 InitializeI420PlanePointers(dimensions, buffer_access->data(), &y_plane_data, | |
| 169 &u_plane_data, &v_plane_data); | |
| 170 | |
| 164 const int yplane_stride = dimensions.width(); | 171 const int yplane_stride = dimensions.width(); |
| 165 const int uv_plane_stride = yplane_stride / 2; | 172 const int uv_plane_stride = yplane_stride / 2; |
| 166 int crop_x = 0; | 173 int crop_x = 0; |
| 167 int crop_y = 0; | 174 int crop_y = 0; |
| 168 libyuv::FourCC origin_colorspace = libyuv::FOURCC_ANY; | 175 libyuv::FourCC origin_colorspace = libyuv::FOURCC_ANY; |
| 169 | 176 |
| 170 bool flip = false; | 177 bool flip = false; |
| 171 switch (format.pixel_format) { | 178 switch (format.pixel_format) { |
| 172 case media::PIXEL_FORMAT_UNKNOWN: // Color format not set. | 179 case media::PIXEL_FORMAT_UNKNOWN: // Color format not set. |
| 173 break; | 180 break; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 260 return; | 267 return; |
| 261 } | 268 } |
| 262 | 269 |
| 263 const VideoCaptureFormat output_format = | 270 const VideoCaptureFormat output_format = |
| 264 VideoCaptureFormat(dimensions, format.frame_rate, | 271 VideoCaptureFormat(dimensions, format.frame_rate, |
| 265 media::PIXEL_FORMAT_I420, media::PIXEL_STORAGE_CPU); | 272 media::PIXEL_FORMAT_I420, media::PIXEL_STORAGE_CPU); |
| 266 OnIncomingCapturedBuffer(std::move(buffer), output_format, reference_time, | 273 OnIncomingCapturedBuffer(std::move(buffer), output_format, reference_time, |
| 267 timestamp); | 274 timestamp); |
| 268 } | 275 } |
| 269 | 276 |
| 270 std::unique_ptr<media::VideoCaptureDevice::Client::Buffer> | 277 media::VideoCaptureDevice::Client::Buffer |
| 271 VideoCaptureDeviceClient::ReserveOutputBuffer( | 278 VideoCaptureDeviceClient::ReserveOutputBuffer( |
| 272 const gfx::Size& frame_size, | 279 const gfx::Size& frame_size, |
| 273 media::VideoPixelFormat pixel_format, | 280 media::VideoPixelFormat pixel_format, |
| 274 media::VideoPixelStorage pixel_storage, | 281 media::VideoPixelStorage pixel_storage, |
| 275 int frame_feedback_id) { | 282 int frame_feedback_id) { |
| 276 DCHECK_GT(frame_size.width(), 0); | 283 DCHECK_GT(frame_size.width(), 0); |
| 277 DCHECK_GT(frame_size.height(), 0); | 284 DCHECK_GT(frame_size.height(), 0); |
| 278 DCHECK(IsFormatSupported(pixel_format)); | 285 DCHECK(IsFormatSupported(pixel_format)); |
| 279 | 286 |
| 280 // TODO(mcasas): For PIXEL_STORAGE_GPUMEMORYBUFFER, find a way to indicate if | |
| 281 // it's a ShMem GMB or a DmaBuf GMB. | |
| 282 int buffer_id_to_drop = VideoCaptureBufferPool::kInvalidId; | 287 int buffer_id_to_drop = VideoCaptureBufferPool::kInvalidId; |
| 283 const int buffer_id = | 288 const int buffer_id = |
| 284 buffer_pool_->ReserveForProducer(frame_size, pixel_format, pixel_storage, | 289 buffer_pool_->ReserveForProducer(frame_size, pixel_format, pixel_storage, |
| 285 frame_feedback_id, &buffer_id_to_drop); | 290 frame_feedback_id, &buffer_id_to_drop); |
| 286 if (buffer_id_to_drop != VideoCaptureBufferPool::kInvalidId) | 291 if (buffer_id_to_drop != VideoCaptureBufferPool::kInvalidId) |
| 287 receiver_->OnBufferDestroyed(buffer_id_to_drop); | 292 receiver_->OnBufferDestroyed(buffer_id_to_drop); |
| 288 if (buffer_id == VideoCaptureBufferPool::kInvalidId) | 293 if (buffer_id == VideoCaptureBufferPool::kInvalidId) |
| 289 return nullptr; | 294 return Buffer(); |
| 290 return base::WrapUnique<Buffer>( | 295 return MakeBufferStruct(buffer_pool_, buffer_id, frame_feedback_id); |
| 291 new AutoReleaseBuffer(buffer_pool_, buffer_id, frame_feedback_id)); | |
| 292 } | 296 } |
| 293 | 297 |
| 294 void VideoCaptureDeviceClient::OnIncomingCapturedBuffer( | 298 void VideoCaptureDeviceClient::OnIncomingCapturedBuffer( |
| 295 std::unique_ptr<Buffer> buffer, | 299 Buffer buffer, |
| 296 const VideoCaptureFormat& format, | 300 const VideoCaptureFormat& format, |
| 297 base::TimeTicks reference_time, | 301 base::TimeTicks reference_time, |
| 298 base::TimeDelta timestamp) { | 302 base::TimeDelta timestamp) { |
| 299 OnIncomingCapturedBufferExt(std::move(buffer), format, reference_time, | 303 OnIncomingCapturedBufferExt(std::move(buffer), format, reference_time, |
| 300 timestamp, gfx::Rect(format.frame_size), | 304 timestamp, gfx::Rect(format.frame_size), |
| 301 VideoFrameMetadata()); | 305 VideoFrameMetadata()); |
| 302 } | 306 } |
| 303 | 307 |
| 304 void VideoCaptureDeviceClient::OnIncomingCapturedBufferExt( | 308 void VideoCaptureDeviceClient::OnIncomingCapturedBufferExt( |
| 305 std::unique_ptr<Buffer> buffer, | 309 Buffer buffer, |
| 306 const VideoCaptureFormat& format, | 310 const VideoCaptureFormat& format, |
| 307 base::TimeTicks reference_time, | 311 base::TimeTicks reference_time, |
| 308 base::TimeDelta timestamp, | 312 base::TimeDelta timestamp, |
| 309 gfx::Rect visible_rect, | 313 gfx::Rect visible_rect, |
| 310 const VideoFrameMetadata& additional_metadata) { | 314 const VideoFrameMetadata& additional_metadata) { |
| 311 const int buffer_id = buffer->id(); | 315 auto buffer_mojo_handle = |
| 312 | 316 buffer_pool_->GetHandleForInterProcessTransit(buffer.id()); |
| 313 auto buffer_mojo_handle = buffer_pool_->GetHandleForTransit(buffer_id); | |
| 314 base::SharedMemoryHandle memory_handle; | 317 base::SharedMemoryHandle memory_handle; |
| 315 size_t memory_size = 0; | 318 size_t memory_size = 0; |
| 316 bool read_only_flag = false; | 319 bool read_only_flag = false; |
| 317 const MojoResult unwrap_result_code = mojo::UnwrapSharedMemoryHandle( | 320 const MojoResult unwrap_result_code = mojo::UnwrapSharedMemoryHandle( |
| 318 std::move(buffer_mojo_handle), &memory_handle, &memory_size, | 321 std::move(buffer_mojo_handle), &memory_handle, &memory_size, |
| 319 &read_only_flag); | 322 &read_only_flag); |
| 320 DCHECK_EQ(MOJO_RESULT_OK, unwrap_result_code); | 323 DCHECK_EQ(MOJO_RESULT_OK, unwrap_result_code); |
| 321 | 324 |
| 325 auto buffer_access = buffer.handle_provider->GetHandleForInProcessAccess(); | |
| 322 scoped_refptr<media::VideoFrame> frame = | 326 scoped_refptr<media::VideoFrame> frame = |
| 323 media::VideoFrame::WrapExternalSharedMemory( | 327 media::VideoFrame::WrapExternalSharedMemory( |
| 324 format.pixel_format, // format | 328 format.pixel_format, // format |
| 325 format.frame_size, // coded_size | 329 format.frame_size, // coded_size |
| 326 visible_rect, // visible_rect | 330 visible_rect, // visible_rect |
| 327 format.frame_size, // natural_size | 331 format.frame_size, // natural_size |
| 328 static_cast<uint8_t*>(buffer->data()), // data | 332 buffer_access->data(), // data |
| 329 buffer->mapped_size(), // data_size | 333 buffer_access->mapped_size(), // data_size |
| 330 memory_handle, // handle | 334 memory_handle, // handle |
| 331 0, // shared_memory_offset | 335 0, // shared_memory_offset |
| 332 timestamp); // timestamp | 336 timestamp); // timestamp |
| 333 frame->metadata()->MergeMetadataFrom(&additional_metadata); | 337 frame->metadata()->MergeMetadataFrom(&additional_metadata); |
| 334 frame->metadata()->SetDouble(media::VideoFrameMetadata::FRAME_RATE, | 338 frame->metadata()->SetDouble(media::VideoFrameMetadata::FRAME_RATE, |
| 335 format.frame_rate); | 339 format.frame_rate); |
| 336 frame->metadata()->SetTimeTicks(media::VideoFrameMetadata::REFERENCE_TIME, | 340 frame->metadata()->SetTimeTicks(media::VideoFrameMetadata::REFERENCE_TIME, |
| 337 reference_time); | 341 reference_time); |
| 338 | 342 |
| 339 receiver_->OnIncomingCapturedVideoFrame(std::move(buffer), std::move(frame)); | 343 receiver_->OnIncomingCapturedVideoFrame(std::move(buffer), std::move(frame)); |
| 340 } | 344 } |
| 341 | 345 |
| 342 std::unique_ptr<media::VideoCaptureDevice::Client::Buffer> | 346 media::VideoCaptureDevice::Client::Buffer |
| 343 VideoCaptureDeviceClient::ResurrectLastOutputBuffer( | 347 VideoCaptureDeviceClient::ResurrectLastOutputBuffer( |
| 344 const gfx::Size& dimensions, | 348 const gfx::Size& dimensions, |
| 345 media::VideoPixelFormat format, | 349 media::VideoPixelFormat format, |
| 346 media::VideoPixelStorage storage, | 350 media::VideoPixelStorage storage, |
| 347 int new_frame_feedback_id) { | 351 int new_frame_feedback_id) { |
| 348 const int buffer_id = | 352 const int buffer_id = |
| 349 buffer_pool_->ResurrectLastForProducer(dimensions, format, storage); | 353 buffer_pool_->ResurrectLastForProducer(dimensions, format, storage); |
| 350 if (buffer_id == VideoCaptureBufferPool::kInvalidId) | 354 if (buffer_id == VideoCaptureBufferPool::kInvalidId) |
| 351 return nullptr; | 355 return Buffer(); |
| 352 return base::WrapUnique<Buffer>( | 356 return MakeBufferStruct(buffer_pool_, buffer_id, new_frame_feedback_id); |
| 353 new AutoReleaseBuffer(buffer_pool_, buffer_id, new_frame_feedback_id)); | |
| 354 } | 357 } |
| 355 | 358 |
| 356 void VideoCaptureDeviceClient::OnError( | 359 void VideoCaptureDeviceClient::OnError( |
| 357 const tracked_objects::Location& from_here, | 360 const tracked_objects::Location& from_here, |
| 358 const std::string& reason) { | 361 const std::string& reason) { |
| 359 const std::string log_message = base::StringPrintf( | 362 const std::string log_message = base::StringPrintf( |
| 360 "error@ %s, %s, OS message: %s", from_here.ToString().c_str(), | 363 "error@ %s, %s, OS message: %s", from_here.ToString().c_str(), |
| 361 reason.c_str(), | 364 reason.c_str(), |
| 362 logging::SystemErrorCodeToString(logging::GetLastSystemErrorCode()) | 365 logging::SystemErrorCodeToString(logging::GetLastSystemErrorCode()) |
| 363 .c_str()); | 366 .c_str()); |
| 364 DLOG(ERROR) << log_message; | 367 DLOG(ERROR) << log_message; |
| 365 OnLog(log_message); | 368 OnLog(log_message); |
| 366 receiver_->OnError(); | 369 receiver_->OnError(); |
| 367 } | 370 } |
| 368 | 371 |
| 369 void VideoCaptureDeviceClient::OnLog(const std::string& message) { | 372 void VideoCaptureDeviceClient::OnLog(const std::string& message) { |
| 370 receiver_->OnLog(message); | 373 receiver_->OnLog(message); |
| 371 } | 374 } |
| 372 | 375 |
| 373 double VideoCaptureDeviceClient::GetBufferPoolUtilization() const { | 376 double VideoCaptureDeviceClient::GetBufferPoolUtilization() const { |
| 374 return buffer_pool_->GetBufferPoolUtilization(); | 377 return buffer_pool_->GetBufferPoolUtilization(); |
| 375 } | 378 } |
| 376 | 379 |
| 377 std::unique_ptr<media::VideoCaptureDevice::Client::Buffer> | 380 // static |
| 378 VideoCaptureDeviceClient::ReserveI420OutputBuffer( | 381 VideoCaptureDevice::Client::Buffer VideoCaptureDeviceClient::MakeBufferStruct( |
| 382 scoped_refptr<VideoCaptureBufferPool> buffer_pool, | |
| 383 int buffer_id, | |
| 384 int frame_feedback_id) { | |
| 385 return Buffer( | |
| 386 buffer_id, frame_feedback_id, | |
| 387 base::MakeUnique<BufferPoolBufferHandleProvider>(buffer_pool, buffer_id), | |
| 388 base::MakeUnique<BufferPoolProducerReservation>(buffer_pool, buffer_id)); | |
| 389 } | |
| 390 | |
| 391 void VideoCaptureDeviceClient::InitializeI420PlanePointers( | |
| 379 const gfx::Size& dimensions, | 392 const gfx::Size& dimensions, |
| 380 media::VideoPixelStorage storage, | 393 uint8_t* const data, |
| 381 int frame_feedback_id, | |
| 382 uint8_t** y_plane_data, | 394 uint8_t** y_plane_data, |
| 383 uint8_t** u_plane_data, | 395 uint8_t** u_plane_data, |
| 384 uint8_t** v_plane_data) { | 396 uint8_t** v_plane_data) { |
| 385 DCHECK(storage == media::PIXEL_STORAGE_CPU); | |
| 386 DCHECK(dimensions.height()); | 397 DCHECK(dimensions.height()); |
| 387 DCHECK(dimensions.width()); | 398 DCHECK(dimensions.width()); |
| 388 | 399 |
| 389 const media::VideoPixelFormat format = media::PIXEL_FORMAT_I420; | 400 const media::VideoPixelFormat format = media::PIXEL_FORMAT_I420; |
| 390 std::unique_ptr<Buffer> buffer(ReserveOutputBuffer( | |
| 391 dimensions, media::PIXEL_FORMAT_I420, storage, frame_feedback_id)); | |
| 392 if (!buffer) | |
| 393 return std::unique_ptr<Buffer>(); | |
| 394 // TODO(emircan): See http://crbug.com/521068, move this pointer | 401 // TODO(emircan): See http://crbug.com/521068, move this pointer |
| 395 // arithmetic inside Buffer::data() when this bug is resolved. | 402 // arithmetic inside Buffer::data() when this bug is resolved. |
| 396 *y_plane_data = reinterpret_cast<uint8_t*>(buffer->data()); | 403 *y_plane_data = data; |
| 397 *u_plane_data = | 404 *u_plane_data = |
| 398 *y_plane_data + | 405 *y_plane_data + |
| 399 VideoFrame::PlaneSize(format, VideoFrame::kYPlane, dimensions).GetArea(); | 406 VideoFrame::PlaneSize(format, VideoFrame::kYPlane, dimensions).GetArea(); |
| 400 *v_plane_data = | 407 *v_plane_data = |
| 401 *u_plane_data + | 408 *u_plane_data + |
| 402 VideoFrame::PlaneSize(format, VideoFrame::kUPlane, dimensions).GetArea(); | 409 VideoFrame::PlaneSize(format, VideoFrame::kUPlane, dimensions).GetArea(); |
| 403 return buffer; | |
| 404 } | 410 } |
| 405 | 411 |
| 406 void VideoCaptureDeviceClient::OnIncomingCapturedY16Data( | 412 void VideoCaptureDeviceClient::OnIncomingCapturedY16Data( |
| 407 const uint8_t* data, | 413 const uint8_t* data, |
| 408 int length, | 414 int length, |
| 409 const VideoCaptureFormat& format, | 415 const VideoCaptureFormat& format, |
| 410 base::TimeTicks reference_time, | 416 base::TimeTicks reference_time, |
| 411 base::TimeDelta timestamp, | 417 base::TimeDelta timestamp, |
| 412 int frame_feedback_id) { | 418 int frame_feedback_id) { |
| 413 std::unique_ptr<Buffer> buffer( | 419 Buffer buffer = |
| 414 ReserveOutputBuffer(format.frame_size, media::PIXEL_FORMAT_Y16, | 420 ReserveOutputBuffer(format.frame_size, media::PIXEL_FORMAT_Y16, |
| 415 media::PIXEL_STORAGE_CPU, frame_feedback_id)); | 421 media::PIXEL_STORAGE_CPU, frame_feedback_id); |
| 416 // The input |length| can be greater than the required buffer size because of | 422 // The input |length| can be greater than the required buffer size because of |
| 417 // paddings and/or alignments, but it cannot be smaller. | 423 // paddings and/or alignments, but it cannot be smaller. |
| 418 DCHECK_GE(static_cast<size_t>(length), format.ImageAllocationSize()); | 424 DCHECK_GE(static_cast<size_t>(length), format.ImageAllocationSize()); |
| 419 #if DCHECK_IS_ON() | 425 #if DCHECK_IS_ON() |
| 420 dropped_frame_counter_ = buffer.get() ? 0 : dropped_frame_counter_ + 1; | 426 dropped_frame_counter_ = buffer.is_valid() ? 0 : dropped_frame_counter_ + 1; |
| 421 if (dropped_frame_counter_ >= kMaxDroppedFrames) | 427 if (dropped_frame_counter_ >= kMaxDroppedFrames) |
| 422 OnError(FROM_HERE, "Too many frames dropped"); | 428 OnError(FROM_HERE, "Too many frames dropped"); |
| 423 #endif | 429 #endif |
| 424 // Failed to reserve output buffer, so drop the frame. | 430 // Failed to reserve output buffer, so drop the frame. |
| 425 if (!buffer.get()) | 431 if (!buffer.is_valid()) |
| 426 return; | 432 return; |
| 427 memcpy(buffer->data(), data, length); | 433 auto buffer_access = buffer.handle_provider->GetHandleForInProcessAccess(); |
| 434 memcpy(buffer_access->data(), data, length); | |
| 428 const VideoCaptureFormat output_format = | 435 const VideoCaptureFormat output_format = |
| 429 VideoCaptureFormat(format.frame_size, format.frame_rate, | 436 VideoCaptureFormat(format.frame_size, format.frame_rate, |
| 430 media::PIXEL_FORMAT_Y16, media::PIXEL_STORAGE_CPU); | 437 media::PIXEL_FORMAT_Y16, media::PIXEL_STORAGE_CPU); |
| 431 OnIncomingCapturedBuffer(std::move(buffer), output_format, reference_time, | 438 OnIncomingCapturedBuffer(std::move(buffer), output_format, reference_time, |
| 432 timestamp); | 439 timestamp); |
| 433 } | 440 } |
| 434 | 441 |
| 435 } // namespace media | 442 } // namespace media |
| OLD | NEW |