FileDocCategorySizeDatePackage
EncoderType.javaAPI DocJaudiotagger 2.0.4529Wed Mar 30 16:11:44 BST 2011org.jaudiotagger.audio.mp4

EncoderType.java

package org.jaudiotagger.audio.mp4;

/**
 * Encoder Type actually identifies the format of the audio within the mp4. This is because
 * mp4 container can be used to hold different types of files.
 */
public enum EncoderType
{
    AAC("AAC"),
    DRM_AAC("DRM AAC"),
    APPLE_LOSSLESS("Apple Lossless"),;

    private String description;

    EncoderType(String description)
    {
        this.description = description;
    }

    public String getDescription()
    {
        return description;
    }
}