| Index: media/gpu/v4l2_slice_video_decode_accelerator.cc
|
| diff --git a/media/gpu/v4l2_slice_video_decode_accelerator.cc b/media/gpu/v4l2_slice_video_decode_accelerator.cc
|
| index 419ffe65aab2c888c34a6ba1fd0629529e476e79..31602e8d3ba0733633f901bf4707b8ff82c37bf8 100644
|
| --- a/media/gpu/v4l2_slice_video_decode_accelerator.cc
|
| +++ b/media/gpu/v4l2_slice_video_decode_accelerator.cc
|
| @@ -1562,9 +1562,8 @@ void V4L2SliceVideoDecodeAccelerator::AssignPictureBuffersTask(
|
| // the client, or by ourselves, if we are allocating.
|
| output_record.at_client = true;
|
| if (output_mode_ == Config::OutputMode::ALLOCATE) {
|
| - std::vector<base::ScopedFD> dmabuf_fds =
|
| - std::move(device_->GetDmabufsForV4L2Buffer(
|
| - i, output_planes_count_, V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE));
|
| + std::vector<base::ScopedFD> dmabuf_fds = device_->GetDmabufsForV4L2Buffer(
|
| + i, output_planes_count_, V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE);
|
| if (dmabuf_fds.empty()) {
|
| NOTIFY_ERROR(PLATFORM_FAILURE);
|
| return;
|
|
|