a4f805ccd0
Relates to #KT-34113 Relates to #KT-32965 Relates to #KT-33991 Relates to #KT-33597
12 lines
171 B
Kotlin
Vendored
12 lines
171 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
import Encoding.MJPEG
|
|
|
|
class Player {
|
|
val status: String = <caret>Encoding.MJPEG.toString()
|
|
}
|
|
|
|
enum class Encoding {
|
|
UNKNOWN,
|
|
MJPEG,
|
|
H264
|
|
} |