Files
external_libcamera/include/libcamera/ipa/vimc.h
Laurent Pinchart 00aa3ac82e ipa: Rename ipa_vimc.h to vimc.h
To be consistent with the other pipeline handlers that don't prefix
their IPA protocol header with ipa_, rename ipa_vimc.h to vimc.h.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-10-20 13:19:15 +03:00

25 lines
467 B
C++

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* vimc.h - Vimc Image Processing Algorithm module
*/
#ifndef __LIBCAMERA_IPA_VIMC_H__
#define __LIBCAMERA_IPA_VIMC_H__
namespace libcamera {
#define VIMC_IPA_FIFO_PATH "/tmp/libcamera_ipa_vimc_fifo"
enum IPAOperationCode {
IPAOperationNone,
IPAOperationInit,
IPAOperationStart,
IPAOperationStop,
};
} /* namespace libcamera */
#endif /* __LIBCAMERA_IPA_VIMC_H__ */