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

com.github.alexeylapin.m3u8.model.VideoRange Maven / Gradle / Ivy

The newest version!
package com.github.alexeylapin.m3u8.model;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy