code cleanup and formatting
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / EncodingOptions.java
index 419aae4..b4efb1f 100755 (executable)
@@ -15,104 +15,104 @@ import java.util.List;
 
 public class EncodingOptions {
 
-       private BitrateParameter.bitrate videoBitrate = BitrateParameter.bitrate.MEDIUM;
+    private BitrateParameter.bitrate videoBitrate = BitrateParameter.bitrate.MEDIUM;
 
-       private BitrateParameter.bitrate audioBitrate = BitrateParameter.bitrate.MEDIUM;
+    private BitrateParameter.bitrate audioBitrate = BitrateParameter.bitrate.MEDIUM;
 
-       private Integer targetFps;
+    private Integer targetFps;
 
-       private boolean deinterlace = false;
+    private boolean deinterlace = false;
 
-       private boolean recursive;
+    private boolean recursive;
 
-       private boolean testOnly;
+    private boolean testOnly;
 
-       private boolean forPortablePlayer = false;
+    private boolean forPortablePlayer = false;
 
-       private File workingDirectory = new File(System.getProperty("user.dir"));
+    private File workingDirectory = new File(System.getProperty("user.dir"));
 
-       private List<String> outputFormats = new ArrayList<String>();
+    private List<String> outputFormats = new ArrayList<String>();
 
-       private List<String> inputPatterns = new ArrayList<String>();
+    private List<String> inputPatterns = new ArrayList<String>();
 
-       public BitrateParameter.bitrate getAudioBitrate() {
-               return audioBitrate;
-       }
+    public BitrateParameter.bitrate getAudioBitrate() {
+        return audioBitrate;
+    }
 
-       public List<String> getInputPatterns() {
-               return inputPatterns;
-       }
+    public void setAudioBitrate(final BitrateParameter.bitrate audioBitrate) {
+        this.audioBitrate = audioBitrate;
+    }
 
-       public List<String> getOutputFormats() {
-               return outputFormats;
-       }
+    public List<String> getInputPatterns() {
+        return inputPatterns;
+    }
 
-       public Integer getTargetFps() {
-               return targetFps;
-       }
+    public void setInputPatterns(final List<String> inputPatterns) {
+        this.inputPatterns = inputPatterns;
+    }
 
-       public BitrateParameter.bitrate getVideoBitrate() {
-               return videoBitrate;
-       }
+    public List<String> getOutputFormats() {
+        return outputFormats;
+    }
 
-       public File getWorkingDirectory() {
-               return workingDirectory;
-       }
+    public void setOutputFormats(final List<String> outputFormats) {
+        this.outputFormats = outputFormats;
+    }
 
-       public boolean isDeinterlace() {
-               return deinterlace;
-       }
+    public Integer getTargetFps() {
+        return targetFps;
+    }
 
-       public boolean isForPortablePlayer() {
-               return forPortablePlayer;
-       }
+    public void setTargetFps(final Integer targetFps) {
+        this.targetFps = targetFps;
+    }
 
-       public boolean isRecursive() {
-               return recursive;
-       }
+    public BitrateParameter.bitrate getVideoBitrate() {
+        return videoBitrate;
+    }
 
-       public boolean isTestOnly() {
-               return testOnly;
-       }
+    public void setVideoBitrate(final BitrateParameter.bitrate videoBitrate) {
+        this.videoBitrate = videoBitrate;
+    }
 
-       public void setAudioBitrate(final BitrateParameter.bitrate audioBitrate) {
-               this.audioBitrate = audioBitrate;
-       }
+    public File getWorkingDirectory() {
+        return workingDirectory;
+    }
 
-       public void setDeinterlace(final boolean deinterlace) {
-               this.deinterlace = deinterlace;
-       }
+    public void setWorkingDirectory(final File workingDirectory) {
+        this.workingDirectory = workingDirectory;
+    }
 
-       public void setForPortablePlayer(final boolean forPortablePlayer) {
-               this.forPortablePlayer = forPortablePlayer;
-       }
+    public boolean isDeinterlace() {
+        return deinterlace;
+    }
 
-       public void setInputPatterns(final List<String> inputPatterns) {
-               this.inputPatterns = inputPatterns;
-       }
+    public void setDeinterlace(final boolean deinterlace) {
+        this.deinterlace = deinterlace;
+    }
 
-       public void setOutputFormats(final List<String> outputFormats) {
-               this.outputFormats = outputFormats;
-       }
+    public boolean isForPortablePlayer() {
+        return forPortablePlayer;
+    }
 
-       public void setRecursive(final boolean recursive) {
-               this.recursive = recursive;
-       }
+    public void setForPortablePlayer(final boolean forPortablePlayer) {
+        this.forPortablePlayer = forPortablePlayer;
+    }
 
-       public void setTargetFps(final Integer targetFps) {
-               this.targetFps = targetFps;
-       }
+    public boolean isRecursive() {
+        return recursive;
+    }
 
-       public void setTestOnly(final boolean testOnly) {
-               this.testOnly = testOnly;
-       }
+    public void setRecursive(final boolean recursive) {
+        this.recursive = recursive;
+    }
 
-       public void setVideoBitrate(final BitrateParameter.bitrate videoBitrate) {
-               this.videoBitrate = videoBitrate;
-       }
+    public boolean isTestOnly() {
+        return testOnly;
+    }
 
-       public void setWorkingDirectory(final File workingDirectory) {
-               this.workingDirectory = workingDirectory;
-       }
+    public void setTestOnly(final boolean testOnly) {
+        this.testOnly = testOnly;
+    }
 
 }