All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.media.kotlin.enums.H265VideoProfile.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.media.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * We currently support Main. Default is Auto.
 */
public enum class H265VideoProfile(
    public val javaValue: com.pulumi.azurenative.media.enums.H265VideoProfile,
) : ConvertibleToJava {
    /**
     * Tells the encoder to automatically determine the appropriate H.265 profile.
     */
    Auto(com.pulumi.azurenative.media.enums.H265VideoProfile.Auto),

    /**
     * Main profile (https://x265.readthedocs.io/en/default/cli.html?highlight=profile#profile-level-tier)
     */
    Main(com.pulumi.azurenative.media.enums.H265VideoProfile.Main),

    /**
     * Main 10 profile (https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding#Main_10)
     */
    Main10(com.pulumi.azurenative.media.enums.H265VideoProfile.Main10),
    ;

    override fun toJava(): com.pulumi.azurenative.media.enums.H265VideoProfile = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.media.enums.H265VideoProfile): H265VideoProfile = H265VideoProfile.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy