Methods Summary |
---|
public java.lang.String | getBrand()
return (String) content.get(FIELD_BRAND);
|
public Mp4EsdsBox.Kind | getKind()
return (Mp4EsdsBox.Kind) content.get(FIELD_KIND);
|
public Mp4EsdsBox.AudioProfile | getProfile()
return (Mp4EsdsBox.AudioProfile) content.get(FIELD_PROFILE);
|
public void | setBrand(java.lang.String brand)
content.put(FIELD_BRAND, brand);
|
public void | setKind(Mp4EsdsBox.Kind kind)
content.put(FIELD_KIND, kind);
|
public void | setProfile(Mp4EsdsBox.AudioProfile profile)The key for the profile
content.put(FIELD_PROFILE, profile);
|