com.mp4parser.iso14496.part15.TierBitRateBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isoparser Show documentation
Show all versions of isoparser Show documentation
A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)
The newest version!
package com.mp4parser.iso14496.part15;
import com.coremedia.iso.IsoTypeReader;
import com.coremedia.iso.IsoTypeWriter;
import com.googlecode.mp4parser.AbstractBox;
import java.nio.ByteBuffer;
/**
* Created by sannies on 08.09.2014.
*/
public class TierBitRateBox extends AbstractBox {
public static final String TYPE = "tibr";
long baseBitRate;
long maxBitRate;
long avgBitRate;
long tierBaseBitRate;
long tierMaxBitRate;
long tierAvgBitRate;
public TierBitRateBox() {
super(TYPE);
}
@Override
protected long getContentSize() {
return 24;
}
@Override
protected void getContent(ByteBuffer byteBuffer) {
IsoTypeWriter.writeUInt32(byteBuffer, baseBitRate);
IsoTypeWriter.writeUInt32(byteBuffer, maxBitRate);
IsoTypeWriter.writeUInt32(byteBuffer, avgBitRate);
IsoTypeWriter.writeUInt32(byteBuffer, tierBaseBitRate);
IsoTypeWriter.writeUInt32(byteBuffer, tierMaxBitRate);
IsoTypeWriter.writeUInt32(byteBuffer, tierAvgBitRate);
}
@Override
protected void _parseDetails(ByteBuffer content) {
baseBitRate = IsoTypeReader.readUInt32(content);
maxBitRate = IsoTypeReader.readUInt32(content);
avgBitRate = IsoTypeReader.readUInt32(content);
tierBaseBitRate = IsoTypeReader.readUInt32(content);
tierMaxBitRate = IsoTypeReader.readUInt32(content);
tierAvgBitRate = IsoTypeReader.readUInt32(content);
}
public long getBaseBitRate() {
return baseBitRate;
}
public void setBaseBitRate(long baseBitRate) {
this.baseBitRate = baseBitRate;
}
public long getMaxBitRate() {
return maxBitRate;
}
public void setMaxBitRate(long maxBitRate) {
this.maxBitRate = maxBitRate;
}
public long getAvgBitRate() {
return avgBitRate;
}
public void setAvgBitRate(long avgBitRate) {
this.avgBitRate = avgBitRate;
}
public long getTierBaseBitRate() {
return tierBaseBitRate;
}
public void setTierBaseBitRate(long tierBaseBitRate) {
this.tierBaseBitRate = tierBaseBitRate;
}
public long getTierMaxBitRate() {
return tierMaxBitRate;
}
public void setTierMaxBitRate(long tierMaxBitRate) {
this.tierMaxBitRate = tierMaxBitRate;
}
public long getTierAvgBitRate() {
return tierAvgBitRate;
}
public void setTierAvgBitRate(long tierAvgBitRate) {
this.tierAvgBitRate = tierAvgBitRate;
}
}