/// /// VideoCodec.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.camera import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "VideoCodec". */ @DoNotStrip @Keep enum class VideoCodec(@DoNotStrip @Keep val value: Int) { UNKNOWN(0), JPEG(1), H264(2), H265(3), H265_WITH_ALPHA(4), PRO_RES_422_PROXY(5), PRO_RES_422_LT(6), PRO_RES_422(7), PRO_RES_422_HQ(8), PRO_RES_4444(9), PRO_RES_4444_XQ(10), PRO_RES_RAW(11), PRO_RES_RAW_HQ(12); companion object }