/* * myLib - https://github.com/taktod/myLib * Copyright (c) 2014 ttProject. All rights reserved. * * Licensed under The MIT license. */ package com.ttProject.container.riff; import com.ttProject.container.IContainer; import com.ttProject.container.IWriter; import com.ttProject.frame.CodecType; import com.ttProject.frame.IFrame; /** * riff unit writer. * @author taktod */ public class RiffUnitWriter implements IWriter { @Override public void addContainer(IContainer container) throws Exception { } @Override public void addFrame(int trackId, IFrame frame) throws Exception { } @Override public void prepareHeader(CodecType ...codecs) throws Exception { } @Override public void prepareTailer() throws Exception { } }