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

io.opentimeline.opentime.IsDropFrameRate Maven / Gradle / Ivy

// SPDX-License-Identifier: Apache-2.0
// Copyright Contributors to the OpenTimelineIO Project.

package io.opentimeline.opentime;

public enum IsDropFrameRate {
    InferFromRate(-1),
    ForceNo(0),
    ForceYes(1);

    public final int index;

    private IsDropFrameRate(int index) {
        this.index = index;
    }

    public int getIndex() {
        return index;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy