1 package com.googlecode.mp4parser.boxes.apple; 2 3 import com.googlecode.mp4parser.AbstractContainerBox; 4 5 /** 6 * Don't know what it is but it is obviously a container box. 7 */ 8 public class TaptAtom extends AbstractContainerBox { 9 public static final String TYPE = "tapt"; 10 TaptAtom()11 public TaptAtom() { 12 super(TYPE); 13 } 14 15 16 } 17