/* * 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.Mp4Atom; import com.ttProject.container.mp4.Type; import com.ttProject.unit.extra.bit.Bit32; /** * mdatの定義 * @author taktod */ public class Mdat extends Mp4Atom { /** * コンストラクタ * @param size * @param name */ public Mdat(Bit32 size, Bit32 name) { super(size, name); } /** * コンストラクタ */ public Mdat() { super(new Bit32(), Type.getTypeBit(Type.Mdat)); } /** * {@inheritDoc} */ @Override protected void requestUpdate() throws Exception { } }