package org.jcodec.containers.mp4.boxes;
/**
* This class is part of JCodec ( www.jcodec.org )
* This software is distributed under FreeBSD License
*
* A box storing a list of synch samples
*
* @author Jay Codec
*
*/
public class PartialSyncSamplesBox extends SyncSamplesBox {
public static String fourcc() {
return "stps";
}
public PartialSyncSamplesBox() {
super(new Header(fourcc()));
}
public PartialSyncSamplesBox(int[] array) {
super(array);
}
}