/* * myLib - https://github.com/taktod/myLib * Copyright (c) 2014 ttProject. All rights reserved. * * Licensed under The MIT license. */ package com.ttProject.transcode.ffmpeg.track; import com.ttProject.media.Unit; /** * 対象トラック用のunitがどれであるか判定するインターフェイス * @author taktod */ public interface IUnitSelector { /** * unitを確認する * @param unit * @return true:このトラックで処理するデータ false:このトラックで処理しないデータ */ public boolean check(Unit unit); /** * 終了処理 */ public void close(); }