1 package com.googlecode.mp4parser.boxes.basemediaformat; 2 3 import com.googlecode.mp4parser.boxes.AbstractSampleEncryptionBox; 4 5 /** 6 * aligned(8) class AbstractSampleEncryptionBox extends FullBox(‘uuid’, extended_type= 0xA2394F52-5A9B-4f14-A244-6C427C648DF4, version=0, flags=0) 7 * { 8 * <p/> 9 * unsigned int (32) sample_count; 10 * { 11 * unsigned int(16) InitializationVector; 12 * }[ sample_count ] 13 * } 14 */ 15 public class SampleEncryptionBox extends AbstractSampleEncryptionBox { 16 17 /** 18 * Creates a SampleEncryptionBox for non-h264 tracks. 19 */ SampleEncryptionBox()20 public SampleEncryptionBox() { 21 super("senc"); 22 23 } 24 } 25