diff options
Diffstat (limited to 'test/pipeline/rkisp1/meson.build')
0 files changed, 0 insertions, 0 deletions
![]() |
index : libcamera/libcamera.git | |
libcamera official repository | git repository hosting on libcamera.org |
summaryrefslogtreecommitdiff |
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2020, Collabora Ltd.
* Author: Nicolas Dufresne <nicolas.dufresne@collabora.com>
*
* gstlibcameraallocator.cpp - GStreamer Custom Allocator
*/
#include "gstlibcameraallocator.h"
#include <libcamera/camera.h>
#include <libcamera/framebuffer_allocator.h>
#include <libcamera/stream.h>
#include "gstlibcamera-utils.h"
using namespace libcamera;
static gboolean gst_libcamera_allocator_release(GstMiniObject *mini_object);
/**
* \struct FrameWrap
* \brief An internal wrapper to track the relation between FrameBuffer and
* GstMemory(s)
*
* This wrapper maintains a count of the outstanding GstMemory (there may be
* multiple GstMemory per FrameBuffer), and give back the FrameBuffer to the
* allocator pool when all memory objects have returned.
*/
struct FrameWrap {