com.googlecode.mp4parser.boxes.dece.SampleEncryptionBox 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, ...)
package com.googlecode.mp4parser.boxes.dece;
import com.googlecode.mp4parser.annotations.DoNotParseDetail;
import com.googlecode.mp4parser.boxes.AbstractSampleEncryptionBox;
/**
* 4cc = "{@value #TYPE}"
* The Sample Encryption Box contains the sample specific encryption data, including the initialization
* vectors needed for decryption and, optionally, alternative decryption parameters. It is used when the
* sample data in the fragment might be encrypted.
*/
public class SampleEncryptionBox extends AbstractSampleEncryptionBox {
public static final String TYPE = "senc";
/**
* Creates a SampleEncryptionBox for non-h264 tracks.
*/
public SampleEncryptionBox() {
super(TYPE);
}
}