v4l2: Remove using namespace in header files
"using namespace" in a header file propagates the namespace to the files including the header file. So it should be avoided. This removes "using namespace" in header files in v4l2. Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
f277590d5c
commit
4689b16572
3 changed files with 26 additions and 30 deletions
|
@ -19,41 +19,40 @@
|
||||||
#include <libcamera/framebuffer.h>
|
#include <libcamera/framebuffer.h>
|
||||||
#include <libcamera/framebuffer_allocator.h>
|
#include <libcamera/framebuffer_allocator.h>
|
||||||
|
|
||||||
using namespace libcamera;
|
|
||||||
|
|
||||||
class V4L2Camera
|
class V4L2Camera
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
struct Buffer {
|
struct Buffer {
|
||||||
Buffer(unsigned int index, const FrameMetadata &data)
|
Buffer(unsigned int index, const libcamera::FrameMetadata &data)
|
||||||
: index_(index), data_(data)
|
: index_(index), data_(data)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int index_;
|
unsigned int index_;
|
||||||
FrameMetadata data_;
|
libcamera::FrameMetadata data_;
|
||||||
};
|
};
|
||||||
|
|
||||||
V4L2Camera(std::shared_ptr<Camera> camera);
|
V4L2Camera(std::shared_ptr<libcamera::Camera> camera);
|
||||||
~V4L2Camera();
|
~V4L2Camera();
|
||||||
|
|
||||||
int open(StreamConfiguration *streamConfig);
|
int open(libcamera::StreamConfiguration *streamConfig);
|
||||||
void close();
|
void close();
|
||||||
void bind(int efd);
|
void bind(int efd);
|
||||||
void unbind();
|
void unbind();
|
||||||
|
|
||||||
std::vector<Buffer> completedBuffers();
|
std::vector<Buffer> completedBuffers();
|
||||||
|
|
||||||
int configure(StreamConfiguration *streamConfigOut,
|
int configure(libcamera::StreamConfiguration *streamConfigOut,
|
||||||
const Size &size, const PixelFormat &pixelformat,
|
const libcamera::Size &size,
|
||||||
|
const libcamera::PixelFormat &pixelformat,
|
||||||
unsigned int bufferCount);
|
unsigned int bufferCount);
|
||||||
int validateConfiguration(const PixelFormat &pixelformat,
|
int validateConfiguration(const libcamera::PixelFormat &pixelformat,
|
||||||
const Size &size,
|
const libcamera::Size &size,
|
||||||
StreamConfiguration *streamConfigOut);
|
libcamera::StreamConfiguration *streamConfigOut);
|
||||||
|
|
||||||
int allocBuffers(unsigned int count);
|
int allocBuffers(unsigned int count);
|
||||||
void freeBuffers();
|
void freeBuffers();
|
||||||
FileDescriptor getBufferFd(unsigned int index);
|
libcamera::FileDescriptor getBufferFd(unsigned int index);
|
||||||
|
|
||||||
int streamOn();
|
int streamOn();
|
||||||
int streamOff();
|
int streamOff();
|
||||||
|
@ -66,24 +65,24 @@ public:
|
||||||
bool isRunning();
|
bool isRunning();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void requestComplete(Request *request);
|
void requestComplete(libcamera::Request *request);
|
||||||
|
|
||||||
std::shared_ptr<Camera> camera_;
|
std::shared_ptr<libcamera::Camera> camera_;
|
||||||
std::unique_ptr<CameraConfiguration> config_;
|
std::unique_ptr<libcamera::CameraConfiguration> config_;
|
||||||
|
|
||||||
bool isRunning_;
|
bool isRunning_;
|
||||||
|
|
||||||
std::mutex bufferLock_;
|
std::mutex bufferLock_;
|
||||||
FrameBufferAllocator *bufferAllocator_;
|
libcamera::FrameBufferAllocator *bufferAllocator_;
|
||||||
|
|
||||||
std::vector<std::unique_ptr<Request>> requestPool_;
|
std::vector<std::unique_ptr<libcamera::Request>> requestPool_;
|
||||||
|
|
||||||
std::deque<Request *> pendingRequests_;
|
std::deque<libcamera::Request *> pendingRequests_;
|
||||||
std::deque<std::unique_ptr<Buffer>> completedBuffers_;
|
std::deque<std::unique_ptr<Buffer>> completedBuffers_;
|
||||||
|
|
||||||
int efd_;
|
int efd_;
|
||||||
|
|
||||||
Mutex bufferMutex_;
|
libcamera::Mutex bufferMutex_;
|
||||||
std::condition_variable bufferCV_;
|
std::condition_variable bufferCV_;
|
||||||
unsigned int bufferAvailableCount_;
|
unsigned int bufferAvailableCount_;
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,14 +19,12 @@
|
||||||
|
|
||||||
#include "v4l2_camera.h"
|
#include "v4l2_camera.h"
|
||||||
|
|
||||||
using namespace libcamera;
|
|
||||||
|
|
||||||
class V4L2CameraFile;
|
class V4L2CameraFile;
|
||||||
|
|
||||||
class V4L2CameraProxy
|
class V4L2CameraProxy
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
V4L2CameraProxy(unsigned int index, std::shared_ptr<Camera> camera);
|
V4L2CameraProxy(unsigned int index, std::shared_ptr<libcamera::Camera> camera);
|
||||||
|
|
||||||
int open(V4L2CameraFile *file);
|
int open(V4L2CameraFile *file);
|
||||||
void close(V4L2CameraFile *file);
|
void close(V4L2CameraFile *file);
|
||||||
|
@ -38,8 +36,8 @@ public:
|
||||||
private:
|
private:
|
||||||
bool validateBufferType(uint32_t type);
|
bool validateBufferType(uint32_t type);
|
||||||
bool validateMemoryType(uint32_t memory);
|
bool validateMemoryType(uint32_t memory);
|
||||||
void setFmtFromConfig(const StreamConfiguration &streamConfig);
|
void setFmtFromConfig(const libcamera::StreamConfiguration &streamConfig);
|
||||||
void querycap(std::shared_ptr<Camera> camera);
|
void querycap(std::shared_ptr<libcamera::Camera> camera);
|
||||||
int tryFormat(struct v4l2_format *arg);
|
int tryFormat(struct v4l2_format *arg);
|
||||||
enum v4l2_priority maxPriority();
|
enum v4l2_priority maxPriority();
|
||||||
void updateBuffers();
|
void updateBuffers();
|
||||||
|
@ -59,7 +57,8 @@ private:
|
||||||
int vidioc_reqbufs(V4L2CameraFile *file, struct v4l2_requestbuffers *arg);
|
int vidioc_reqbufs(V4L2CameraFile *file, struct v4l2_requestbuffers *arg);
|
||||||
int vidioc_querybuf(V4L2CameraFile *file, struct v4l2_buffer *arg);
|
int vidioc_querybuf(V4L2CameraFile *file, struct v4l2_buffer *arg);
|
||||||
int vidioc_qbuf(V4L2CameraFile *file, struct v4l2_buffer *arg);
|
int vidioc_qbuf(V4L2CameraFile *file, struct v4l2_buffer *arg);
|
||||||
int vidioc_dqbuf(V4L2CameraFile *file, struct v4l2_buffer *arg, MutexLocker *locker);
|
int vidioc_dqbuf(V4L2CameraFile *file, struct v4l2_buffer *arg,
|
||||||
|
libcamera::MutexLocker *locker);
|
||||||
int vidioc_streamon(V4L2CameraFile *file, int *arg);
|
int vidioc_streamon(V4L2CameraFile *file, int *arg);
|
||||||
int vidioc_streamoff(V4L2CameraFile *file, int *arg);
|
int vidioc_streamoff(V4L2CameraFile *file, int *arg);
|
||||||
|
|
||||||
|
@ -72,7 +71,7 @@ private:
|
||||||
unsigned int refcount_;
|
unsigned int refcount_;
|
||||||
unsigned int index_;
|
unsigned int index_;
|
||||||
|
|
||||||
StreamConfiguration streamConfig_;
|
libcamera::StreamConfiguration streamConfig_;
|
||||||
unsigned int bufferCount_;
|
unsigned int bufferCount_;
|
||||||
unsigned int currentBuf_;
|
unsigned int currentBuf_;
|
||||||
unsigned int sizeimage_;
|
unsigned int sizeimage_;
|
||||||
|
@ -99,7 +98,7 @@ private:
|
||||||
V4L2CameraFile *owner_;
|
V4L2CameraFile *owner_;
|
||||||
|
|
||||||
/* This mutex is to serialize access to the proxy. */
|
/* This mutex is to serialize access to the proxy. */
|
||||||
Mutex proxyMutex_;
|
libcamera::Mutex proxyMutex_;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* __V4L2_CAMERA_PROXY_H__ */
|
#endif /* __V4L2_CAMERA_PROXY_H__ */
|
||||||
|
|
|
@ -18,8 +18,6 @@
|
||||||
|
|
||||||
#include "v4l2_camera_proxy.h"
|
#include "v4l2_camera_proxy.h"
|
||||||
|
|
||||||
using namespace libcamera;
|
|
||||||
|
|
||||||
class V4L2CompatManager
|
class V4L2CompatManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -64,7 +62,7 @@ private:
|
||||||
|
|
||||||
FileOperations fops_;
|
FileOperations fops_;
|
||||||
|
|
||||||
CameraManager *cm_;
|
libcamera::CameraManager *cm_;
|
||||||
|
|
||||||
std::vector<std::unique_ptr<V4L2CameraProxy>> proxies_;
|
std::vector<std::unique_ptr<V4L2CameraProxy>> proxies_;
|
||||||
std::map<int, std::shared_ptr<V4L2CameraFile>> files_;
|
std::map<int, std::shared_ptr<V4L2CameraFile>> files_;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue