Methods Summary |
---|
public int | getStreamNumber()
return this.streamNumber;
|
public long | getStreamSpecificDataSize()
return this.streamSpecificDataSize;
|
public GUID | getStreamType()Returns the stream type of the stream chunk.
return this.type;
|
public long | getTimeOffset()
return this.timeOffset;
|
public long | getTypeSpecificDataSize()
return this.typeSpecificDataSize;
|
public boolean | isContentEncrypted()
return this.contentEncrypted;
|
public java.lang.String | prettyPrint(java.lang.String prefix)(overridden)
final StringBuilder result = new StringBuilder(super.prettyPrint(prefix));
result.append(prefix).append(" |-> Stream number: ").append(
getStreamNumber()).append(Utils.LINE_SEPARATOR);
result.append(prefix).append(" |-> Type specific data size : ")
.append(getTypeSpecificDataSize()).append(Utils.LINE_SEPARATOR);
result.append(prefix).append(" |-> Stream specific data size: ")
.append(getStreamSpecificDataSize()).append(
Utils.LINE_SEPARATOR);
result.append(prefix).append(" |-> Time Offset : ")
.append(getTimeOffset()).append(Utils.LINE_SEPARATOR);
result.append(prefix).append(" |-> Content Encryption : ")
.append(isContentEncrypted()).append(Utils.LINE_SEPARATOR);
return result.toString();
|
public void | setContentEncrypted(boolean cntEnc)
this.contentEncrypted = cntEnc;
|
public void | setStreamNumber(int streamNum)
this.streamNumber = streamNum;
|
public void | setStreamSpecificDataSize(long strSpecDataSize)
this.streamSpecificDataSize = strSpecDataSize;
|
public void | setTimeOffset(long timeOffs)
this.timeOffset = timeOffs;
|
public void | setTypeSpecificDataSize(long typeSpecDataSize)
this.typeSpecificDataSize = typeSpecDataSize;
|