| Index: media/gpu/v4l2_video_decode_accelerator.cc
 | 
| diff --git a/media/gpu/v4l2_video_decode_accelerator.cc b/media/gpu/v4l2_video_decode_accelerator.cc
 | 
| index 50203b231ad62427a617cd6ab69e2e115d15e49c..aeb217e7672971b136622478f84195d0095f3848 100644
 | 
| --- a/media/gpu/v4l2_video_decode_accelerator.cc
 | 
| +++ b/media/gpu/v4l2_video_decode_accelerator.cc
 | 
| @@ -819,7 +819,7 @@ void V4L2VideoDecodeAccelerator::DecodeBufferTask() {
 | 
|      }
 | 
|  
 | 
|      // Setup to use the next buffer.
 | 
| -    decoder_current_bitstream_buffer_.reset(buffer_ref.release());
 | 
| +    decoder_current_bitstream_buffer_ = std::move(buffer_ref);
 | 
|      decoder_input_queue_.pop();
 | 
|      const auto& shm = decoder_current_bitstream_buffer_->shm;
 | 
|      if (shm) {
 | 
| 
 |