Added lossless flac audio support
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / BitrateParameter.java
index ad4a9f0..683c130 100755 (executable)
@@ -1,11 +1,11 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012 -- 2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * Copyright (C) 2012 -- 2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
  *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public License
- * as published by the Free Software Foundation.
- */
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+*/
 
 package eu.svjatoslav.meviz.encoder;
 
@@ -20,7 +20,7 @@ public class BitrateParameter extends Parameter<BitrateParameter.Bitrate, Bitrat
 
     @Override
     public String describeFormat() {
-        return "Target bitrate [NONE / LOW / MEDIUM / HIGH / COPY ]";
+        return "Target bitrate [NONE / LOW / MEDIUM / HIGH / COPY / LOSSLESS]";
     }
 
     @Override
@@ -40,6 +40,6 @@ public class BitrateParameter extends Parameter<BitrateParameter.Bitrate, Bitrat
     }
 
     public enum Bitrate {
-        NONE, LOW, MEDIUM, HIGH, COPY
+        NONE, LOW, MEDIUM, HIGH, COPY, LOSSLESS
     }
 }