aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Staessens <dstaessens@google.com>2021-03-29 15:32:06 +0900
committerChih-Yu Huang <akahuang@google.com>2021-05-12 11:36:55 +0900
commita87b1cda9d39b52ec90a969cecd8356e167b472c (patch)
treeb7b1fdc689052789edf9fcf6329029b35b02d5a1
parent78f6641e8af8b72f5a891ac2f4a9a752897c15b8 (diff)
downloadv4l2_codec2-a87b1cda9d39b52ec90a969cecd8356e167b472c.tar.gz
v4l2_codec2: Remove unused member variable from V4L2 device.
This CL performs a small bit of cleanup by removing an unused member variable from the V4L2 device. Bug: 155138142 Test: arc.VideoEncodeAccel.h264_192p_i420_vm Change-Id: I3ef7c7fd28db30137ca7b4e1a52c031e6dcc0591
-rw-r--r--common/V4L2Device.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/V4L2Device.cpp b/common/V4L2Device.cpp
index bae25fe..c5a37ae 100644
--- a/common/V4L2Device.cpp
+++ b/common/V4L2Device.cpp
@@ -119,7 +119,6 @@ class V4L2Buffer {
struct v4l2_plane v4l2_planes_[VIDEO_MAX_PLANES];
struct v4l2_format format_ __attribute__((unused));
- scoped_refptr<VideoFrame> video_frame_;
DISALLOW_COPY_AND_ASSIGN(V4L2Buffer);
};