possible fix for #89

and mentioning both container and codec in the title
This commit is contained in:
Vodes 2020-10-05 12:14:16 +02:00 committed by dkanada
commit aaaf7566f3

View file

@ -16,9 +16,11 @@ public class DirectPlayCodec {
public enum Codec {
FLAC("FLAC","flac|flac"),
MP3("MP3", "mp3|mp3"),
AAC("AAC", "m4a|aac"),
OGG("OGG", "ogg|vorbis"),
MKA("MKA", "mka|opus");
OPUS("Opus", "opus|opus"),
AAC("M4A-AAC", "m4a|aac"),
OGG("OGG-Vorbis", "ogg|vorbis"),
OOPUS("OGG-Opus", "ogg|opus"),
MKA("MKA-Opus", "mka|opus");
public final String title;
public final String value;