diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-02-13 17:03:00 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-02-13 17:27:33 +0000 |
commit | ff4e8823992cba2c599d26add3087cc28410fc27 (patch) | |
tree | 431ed6065ce82a0dc7006ba0abb3a414daf34332 /test/v4l2_device/v4l2_device_test.h | |
parent | 819eb422b39afbfb618ed3b1618cf03bebec1abd (diff) |
test: v4l2_device: Rename dev_ to capture_
Change the variable name globally throughout the tests.
Repair the V4L2DeviceTest constructor style, as checkstyle complained.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test/v4l2_device/v4l2_device_test.h')
-rw-r--r-- | test/v4l2_device/v4l2_device_test.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/v4l2_device/v4l2_device_test.h b/test/v4l2_device/v4l2_device_test.h index 43539655..c476d3c0 100644 --- a/test/v4l2_device/v4l2_device_test.h +++ b/test/v4l2_device/v4l2_device_test.h @@ -22,7 +22,10 @@ using namespace libcamera; class V4L2DeviceTest : public Test { public: - V4L2DeviceTest() : dev_(nullptr){}; + V4L2DeviceTest() + : capture_(nullptr) + { + } protected: int init(); @@ -30,7 +33,7 @@ protected: std::unique_ptr<DeviceEnumerator> enumerator_; std::shared_ptr<MediaDevice> media_; - V4L2Device *dev_; + V4L2Device *capture_; BufferPool pool_; }; |