FileDocCategorySizeDatePackage
AspectRatio.javaAPI Docmp4parser 1.0-RC-171640Wed Dec 19 20:10:37 GMT 2012com.googlecode.mp4parser.h264.model

AspectRatio

public class AspectRatio extends Object
Aspect ratio

dynamic enum

author
Stanislav Vitvitskiy

Fields Summary
public static final AspectRatio
Extended_SAR
private int
value
Constructors Summary
private AspectRatio(int value)


       
        this.value = value;
    
Methods Summary
public static com.googlecode.mp4parser.h264.model.AspectRatiofromValue(int value)

        if (value == Extended_SAR.value) {
            return Extended_SAR;
        }
        return new AspectRatio(value);
    
public intgetValue()

        return value;