Methods Summary |
---|
public void | _parseDetails(java.nio.ByteBuffer content)
BitReaderBuffer brb = new BitReaderBuffer(content);
fscod = brb.readBits(2);
bsid = brb.readBits(5);
bsmod = brb.readBits(3);
acmod = brb.readBits(3);
lfeon = brb.readBits(1);
bitRateCode = brb.readBits(5);
reserved = brb.readBits(5);
|
public int | getAcmod()
return acmod;
|
public int | getBitRateCode()
return bitRateCode;
|
public int | getBsid()
return bsid;
|
public int | getBsmod()
return bsmod;
|
protected void | getContent(java.nio.ByteBuffer byteBuffer)
BitWriterBuffer bwb = new BitWriterBuffer(byteBuffer);
bwb.writeBits(fscod, 2);
bwb.writeBits(bsid, 5);
bwb.writeBits(bsmod, 3);
bwb.writeBits(acmod, 3);
bwb.writeBits(lfeon, 1);
bwb.writeBits(bitRateCode, 5);
bwb.writeBits(reserved, 5);
|
protected long | getContentSize()
return 3;
|
public int | getFscod()
return fscod;
|
public int | getLfeon()
return lfeon;
|
public int | getReserved()
return reserved;
|
public void | setAcmod(int acmod)
this.acmod = acmod;
|
public void | setBitRateCode(int bitRateCode)
this.bitRateCode = bitRateCode;
|
public void | setBsid(int bsid)
this.bsid = bsid;
|
public void | setBsmod(int bsmod)
this.bsmod = bsmod;
|
public void | setFscod(int fscod)
this.fscod = fscod;
|
public void | setLfeon(int lfeon)
this.lfeon = lfeon;
|
public void | setReserved(int reserved)
this.reserved = reserved;
|
public java.lang.String | toString()
return "AC3SpecificBox{" +
"fscod=" + fscod +
", bsid=" + bsid +
", bsmod=" + bsmod +
", acmod=" + acmod +
", lfeon=" + lfeon +
", bitRateCode=" + bitRateCode +
", reserved=" + reserved +
'}";
|