android: Omit extra semicolons
The end semicolons with LOG_DECLARE_CATEGORY and LOG_DEFINE_CATEGORY are unnecessary. Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
committed by
Laurent Pinchart
parent
da0dd36149
commit
6c5792f7a8
@@ -14,7 +14,7 @@
|
||||
class Encoder
|
||||
{
|
||||
public:
|
||||
virtual ~Encoder() {};
|
||||
virtual ~Encoder() {}
|
||||
|
||||
virtual int configure(const libcamera::StreamConfiguration &cfg) = 0;
|
||||
virtual int encode(const libcamera::FrameBuffer *source,
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
using namespace libcamera;
|
||||
|
||||
LOG_DECLARE_CATEGORY(JPEG);
|
||||
LOG_DECLARE_CATEGORY(JPEG)
|
||||
|
||||
namespace {
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
using namespace libcamera;
|
||||
|
||||
LOG_DEFINE_CATEGORY(JPEG);
|
||||
LOG_DEFINE_CATEGORY(JPEG)
|
||||
|
||||
PostProcessorJpeg::PostProcessorJpeg(CameraDevice *device)
|
||||
: cameraDevice_(device)
|
||||
|
||||
Reference in New Issue
Block a user