Home | History | Annotate | Download | only in boxes

Lines Matching defs:sampleSize

33     private long sampleSize;
44 * If sampleSize > 0 every sample has the same size.
45 * If sampleSize == 0 the samples have different size as stated in the sampleSizes field.
47 * @return the sampleSize field
50 return sampleSize;
53 public void setSampleSize(long sampleSize) {
54 this.sampleSize = sampleSize;
59 if (sampleSize > 0) {
60 return sampleSize;
67 if (sampleSize > 0) {
84 return 12 + (sampleSize == 0 ? sampleSizes.length * 4 : 0);
90 sampleSize = IsoTypeReader.readUInt32(content);
93 if (sampleSize == 0) {
105 IsoTypeWriter.writeUInt32(byteBuffer, sampleSize);
107 if (sampleSize == 0) {
119 return "SampleSizeBox[sampleSize=" + getSampleSize() + ";sampleCount=" + getSampleCount() + "]";