All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mp4parser.boxes.iso23001.part7.SampleEncryptionBox Maven / Gradle / Ivy

Go to download

A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)

There is a newer version: 1.9.56
Show newest version
package org.mp4parser.boxes.iso23001.part7;

/**
 * 

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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy