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

com.googlecode.mp4parser.boxes.dece.SampleEncryptionBox Maven / Gradle / Ivy

Go to download

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

The newest version!
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy