summaryrefslogtreecommitdiff
path: root/include/libcamera/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcamera/buffer.h')
-rw-r--r--include/libcamera/buffer.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/libcamera/buffer.h b/include/libcamera/buffer.h
index d61efad1..d3dc9a42 100644
--- a/include/libcamera/buffer.h
+++ b/include/libcamera/buffer.h
@@ -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: