/// /// AVEncodingOption.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.sound import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "AVEncodingOption". */ @DoNotStrip @Keep enum class AVEncodingOption(@DoNotStrip @Keep val value: Int) { LPCM(0), IMA4(1), AAC(2), MAC3(3), MAC6(4), ULAW(5), ALAW(6), MP1(7), MP2(8), MP4(9), ALAC(10), AMR(11), FLAC(12), OPUS(13); companion object }