mirror of
git://nv-tegra.nvidia.com/tegra/gst-src/gst-nvarguscamera.git
synced 2025-12-22 09:22:58 +03:00
5b71a3ab30d24949dcf3770e509d17dd1af64256 - gst-nvarguscamera/gstnvarguscamera_utils.cpp fa14f1cb043a26a6465ce793ac78479d8f6afa02 - gst-nvarguscamera/gstnvdsbufferpool.h 2d40637e04ba1be9b48393f71bed54b09590ab0d - gst-nvarguscamera/nvbufsurface.h c3f21bd4363243ad1bca5b1d434b5896402eec14 - gst-nvarguscamera/nvbuf_utils.h 3f464ae254de9dbd8b222360a88fefec9f0e0799 - gst-nvarguscamera/gstnvarguscamerasrc.cpp f2949ff626879be5aaeabf40e9ad8eab11238b6e - gst-nvarguscamera/gstnvarguscamera_utils.h 1be6fc0d7406e0633b7e2cba49166a2f0a085cdd - gst-nvarguscamera/Makefile 0c275d4140ecb406c3632175662a0cf4d969a507 - gst-nvarguscamera/3rdpartyheaders.tbz2 09f1450201c3927b8ad9d34ac8e1009abcea7f3a - gst-nvarguscamera/gstnvarguscamerasrc.hpp Change-Id: I31c7a0afc2a2d7063b281122d97fc28cf7f64297
96 lines
3.2 KiB
C
96 lines
3.2 KiB
C
/*
|
|
* Copyright (c) 2017-2020, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* * Neither the name of NVIDIA CORPORATION nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef GSTNVARGUSCAMERA_UTILS_H_
|
|
#define GSTNVARGUSCAMERA_UTILS_H_
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
typedef enum
|
|
{
|
|
NvArgusCamAwbMode_Off = 0,
|
|
NvArgusCamAwbMode_Auto,
|
|
NvArgusCamAwbMode_Incandescent,
|
|
NvArgusCamAwbMode_Fluorescent,
|
|
NvArgusCamAwbMode_WarmFluorescent,
|
|
NvArgusCamAwbMode_Daylight,
|
|
NvArgusCamAwbMode_CloudyDaylight,
|
|
NvArgusCamAwbMode_Twilight,
|
|
NvArgusCamAwbMode_Shade,
|
|
NvArgusCamAwbMode_Manual,
|
|
|
|
} NvArgusCamAwbMode;
|
|
|
|
typedef enum
|
|
{
|
|
NvArgusCamNoiseReductionMode_Off = 0,
|
|
NvArgusCamNoiseReductionMode_Fast,
|
|
NvArgusCamNoiseReductionMode_HighQuality
|
|
|
|
} NvArgusCamNoiseReductionMode;
|
|
|
|
typedef enum
|
|
{
|
|
NvArgusCamEdgeEnhancementMode_Off = 0,
|
|
NvArgusCamEdgeEnhancementMode_Fast,
|
|
NvArgusCamEdgeEnhancementMode_HighQuality
|
|
|
|
} NvArgusCamEdgeEnhancementMode;
|
|
|
|
typedef enum
|
|
{
|
|
NvArgusCamAeAntibandingMode_Off = 0,
|
|
NvArgusCamAeAntibandingMode_Auto,
|
|
NvArgusCamAeAntibandingMode_50HZ,
|
|
NvArgusCamAeAntibandingMode_60HZ
|
|
|
|
} NvArgusCamAeAntibandingMode;
|
|
|
|
GType gst_nvarguscam_white_balance_mode_get_type (void);
|
|
#define GST_TYPE_NVARGUSCAM_WB_MODE (gst_nvarguscam_white_balance_mode_get_type())
|
|
|
|
GType gst_nvarguscam_tnr_mode_get_type (void);
|
|
#define GST_TYPE_NVARGUSCAM_TNR_MODE (gst_nvarguscam_tnr_mode_get_type())
|
|
|
|
GType gst_nvarguscam_edge_enhancement_mode_get_type (void);
|
|
#define GST_TYPE_NVARGUSCAM_EDGE_ENHANCEMENT_MODE (gst_nvarguscam_edge_enhancement_mode_get_type())
|
|
|
|
GType gst_nvarguscam_aeantibanding_mode_get_type (void);
|
|
#define GST_TYPE_NVARGUSCAM_AEANTIBANDING_MODE (gst_nvarguscam_aeantibanding_mode_get_type())
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GSTNVARGUSCAMERA_UTILS_H_ */
|