com.googlecode.mp4parser.authoring.tracks.CencEncryptedTrack 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.authoring.tracks;
import com.googlecode.mp4parser.authoring.Track;
import com.mp4parser.iso23001.part7.CencSampleAuxiliaryDataFormat;
import java.util.List;
import java.util.UUID;
/**
* Track encrypted with common (CENC). ISO/IEC 23001-7.
*/
public interface CencEncryptedTrack extends Track {
List getSampleEncryptionEntries();
UUID getDefaultKeyId();
boolean hasSubSampleEncryption();
}