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

org.ocap.media.S3DFormatTypes Maven / Gradle / Ivy

package org.ocap.media;

/**
 * The interface contains constants representing video formats for
 * stereoscopic 3D streams.
 * 

* Note: Constants can be added from multiple standards for format * types supported by tru2way. */ public interface S3DFormatTypes { /** * Video format is unknown. */ public static final int UNKNOWN = 0; /** * Video format is 2D rather than 3D. */ public static final int FORMAT_2D = 1; /** * S3D frame packing arrangement is Side by Side; see [OCCEP]. */ public static final int SIDE_BY_SIDE = 3; /** * S3D frame packing arrangement is Top and Bottom; see [OCCEP]. */ public static final int TOP_AND_BOTTOM = 4; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy