/* * myLib - https://github.com/taktod/myLib * Copyright (c) 2014 ttProject. All rights reserved. * * Licensed under The MIT license. */ package com.ttProject.container.mp4.type; import com.ttProject.container.mp4.Mp4ParentAtom; import com.ttProject.container.mp4.Type; import com.ttProject.unit.extra.bit.Bit32; /** * moovの定義 * @author taktod */ public class Moov extends Mp4ParentAtom { /** * コンストラクタ * @param size * @param name */ public Moov(Bit32 size, Bit32 name) { super(size, name); } /** * コンストラクタ */ public Moov() { super(new Bit32(), Type.getTypeBit(Type.Moov)); } /** * {@inheritDoc} */ @Override protected void requestUpdate() throws Exception { } }