summaryrefslogtreecommitdiff
path: root/include/android/meson.build
blob: da2504f2e493e192e88b2dae478b275a94bae00d (plain)
1
2
3
4
5
6
7
# SPDX-License-Identifier: CC0-1.0

android_includes = ([
    include_directories('hardware/libhardware/include/'),
    include_directories('metadata/'),
    include_directories('system/core/include'),
])
25 26 27 28 29 30 31 32 33 34 35 36 37
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Collabora Ltd.
 *     Author: Nicolas Dufresne <nicolas.dufresne@collabora.com>
 *
 * gstlibcamerapad.h - GStreamer Capture Element
 */

#ifndef __GST_LIBCAMERA_PAD_H__
#define __GST_LIBCAMERA_PAD_H__

#include "gstlibcamerapool.h"

#include <gst/gst.h>

#include <libcamera/stream.h>

#define GST_TYPE_LIBCAMERA_PAD gst_libcamera_pad_get_type()
G_DECLARE_FINAL_TYPE(GstLibcameraPad, gst_libcamera_pad, GST_LIBCAMERA, PAD, GstPad)

libcamera::StreamRole gst_libcamera_pad_get_role(GstPad *pad);

GstLibcameraPool *gst_libcamera_pad_get_pool(GstPad *pad);

void gst_libcamera_pad_set_pool(GstPad *pad, GstLibcameraPool *pool);

libcamera::Stream *gst_libcamera_pad_get_stream(GstPad *pad);

void gst_libcamera_pad_queue_buffer(GstPad *pad, GstBuffer *buffer);

GstFlowReturn gst_libcamera_pad_push_pending(GstPad *pad);

bool gst_libcamera_pad_has_pending(GstPad *pad);

void gst_libcamera_pad_set_latency(GstPad *pad, GstClockTime latency);

#endif /* __GST_LIBCAMERA_PAD_H__ */