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

io.lindstrom.m3u8.model.VideoRange Maven / Gradle / Ivy

There is a newer version: 0.28
Show newest version
package io.lindstrom.m3u8.model;

public enum VideoRange {
    SDR, PQ;
    
    public static VideoRange parse(String name) {
        return VideoRange.valueOf(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy