| Index: media/gpu/v4l2_video_encode_accelerator.cc
|
| diff --git a/media/gpu/v4l2_video_encode_accelerator.cc b/media/gpu/v4l2_video_encode_accelerator.cc
|
| index 20d710943bec5a7e4455c906c23532a17d34dfd4..87b0e2732a6fc56e690692243ec818bd9208eb40 100644
|
| --- a/media/gpu/v4l2_video_encode_accelerator.cc
|
| +++ b/media/gpu/v4l2_video_encode_accelerator.cc
|
| @@ -1144,7 +1144,7 @@ bool V4L2VideoEncodeAccelerator::CreateInputBuffers() {
|
| struct v4l2_requestbuffers reqbufs;
|
| memset(&reqbufs, 0, sizeof(reqbufs));
|
| // Driver will modify to the appropriate number of buffers.
|
| - reqbufs.count = 1;
|
| + reqbufs.count = kInputBufferCount;
|
| reqbufs.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
|
| // TODO(posciak): Once we start doing zero-copy, we should decide based on
|
| // the current pipeline setup which memory type to use. This should probably
|
|
|