libcamera: buffers: Remove Plane class

There are no users left of the Plane class, drop it.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Niklas Söderlund 2019-11-26 00:07:12 +01:00
parent ae9a05847c
commit 962d1c17a4
2 changed files with 0 additions and 170 deletions

View file

@ -71,27 +71,6 @@ private:
unsigned int cookie_;
};
class Plane final
{
public:
Plane();
~Plane();
int dmabuf() const { return fd_; }
int setDmabuf(int fd, unsigned int length);
void *mem();
unsigned int length() const { return length_; }
private:
int mmap();
int munmap();
int fd_;
unsigned int length_;
void *mem_;
};
class BufferMemory final
{
public: