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