/* * 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; /** * mvexの定義 * @author taktod */ public class Mvex extends Mp4ParentAtom { /** * コンストラクタ * @param size * @param name */ public Mvex(Bit32 size, Bit32 name) { super(size, name); } /** * コンストラクタ */ public Mvex() { super(new Bit32(), Type.getTypeBit(Type.Mvex)); } /** * {@inheritDoc} */ @Override protected void requestUpdate() throws Exception { } }