FileDocCategorySizeDatePackage
ProfileLevelIndicationDescriptor.javaAPI Docmp4parser 1.0-RC-172143Wed Dec 19 20:10:37 GMT 2012com.googlecode.mp4parser.boxes.mp4.objectdescriptors

ProfileLevelIndicationDescriptor

public class ProfileLevelIndicationDescriptor extends BaseDescriptor
class ProfileLevelIndicationIndexDescriptor () extends BaseDescriptor : bit(8) ProfileLevelIndicationIndexDescrTag { bit(8) profileLevelIndicationIndex; }

Fields Summary
int
profileLevelIndicationIndex
Constructors Summary
Methods Summary
public booleanequals(java.lang.Object o)

        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        ProfileLevelIndicationDescriptor that = (ProfileLevelIndicationDescriptor) o;

        if (profileLevelIndicationIndex != that.profileLevelIndicationIndex) {
            return false;
        }

        return true;
    
public inthashCode()

        return profileLevelIndicationIndex;
    
public voidparseDetail(java.nio.ByteBuffer bb)

        profileLevelIndicationIndex = IsoTypeReader.readUInt8(bb);
    
public java.lang.StringtoString()

        final StringBuilder sb = new StringBuilder();
        sb.append("ProfileLevelIndicationDescriptor");
        sb.append("{profileLevelIndicationIndex=").append(Integer.toHexString(profileLevelIndicationIndex));
        sb.append('}");
        return sb.toString();