libcamera  v0.0.0
Supporting cameras in Linux since 2019
ipa_vimc.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3  * Copyright (C) 2019, Google Inc.
4  *
5  * ipa_vimc.h - Vimc Image Processing Algorithm module
6  */
7 
8 #ifndef __LIBCAMERA_IPA_VIMC_H__
9 #define __LIBCAMERA_IPA_VIMC_H__
10 
11 namespace libcamera {
12 
13 #define VIMC_IPA_FIFO_PATH "/tmp/libcamera_ipa_vimc_fifo"
14 
15 enum IPAOperationCode {
16  IPAOperationNone,
17  IPAOperationInit,
18  IPAOperationStart,
19  IPAOperationStop,
20 };
21 
22 } /* namespace libcamera */
23 
24 #endif /* __LIBCAMERA_IPA_VIMC_H__ */