summaryrefslogtreecommitdiff
path: root/src/android/jpeg/encoder_libjpeg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/jpeg/encoder_libjpeg.h')
0 files changed, 0 insertions, 0 deletions
'>52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2020, Google Inc.
 *
 * ipc_pipe.h - Image Processing Algorithm IPC module for IPA proxies
 */
#ifndef __LIBCAMERA_INTERNAL_IPA_IPC_H__
#define __LIBCAMERA_INTERNAL_IPA_IPC_H__

#include <vector>

#include <libcamera/base/signal.h>

#include "libcamera/internal/ipc_unixsocket.h"

namespace libcamera {

class IPCMessage
{
public:
	struct Header {
		uint32_t cmd;
		uint32_t cookie;
	};

	IPCMessage();