Updated copyright message.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / EncodingPlan.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012 -- 2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.meviz.encoder;
11
12 import java.util.ArrayList;
13
14 public class EncodingPlan {
15
16     private final ArrayList<EncodingTask> encodingTasks = new ArrayList<>();
17
18     public void execute(final EncodingOptions encodingOptions) {
19
20         for (final EncodingTask task : encodingTasks)
21             task.execute(encodingOptions);
22
23     }
24
25     public void scheduleTask(final EncodingTask encodingTask) {
26         encodingTasks.add(encodingTask);
27     }
28
29 }