/****************************************************************************
* Copyright 2019 Nreal Techonology Limited. All rights reserved.
*
* This file is part of NRSDK.
*
* https://www.nreal.ai/
*
*****************************************************************************/
namespace NRKernal.Record
{
///
/// The encoded image or video pixel format to use for PhotoCapture and VideoCapture.
public enum CapturePixelFormat
{
///
/// 8 bits per channel (blue, green, red, and alpha).
///
BGRA32 = 0,
///
/// 8-bit Y plane followed by an interleaved U/V plane with 2x2 subsampling.
///
NV12 = 1,
///
/// Encode photo in JPEG format.
///
JPEG = 2,
///
/// Portable Network Graphics Format.
///
PNG = 3
}
}