61 lines
3.1 KiB
Java
61 lines
3.1 KiB
Java
package o;
|
|
|
|
import org.jmrtd.lds.ImageInfo;
|
|
|
|
/* loaded from: classes.dex */
|
|
public enum XRL {
|
|
Unknown("Unknown", "Unknown", null, new String[0]),
|
|
Jpeg("JPEG", "Joint Photographic Experts Group", ImageInfo.JPEG_MIME_TYPE, "jpg", "jpeg", "jpe"),
|
|
Tiff("TIFF", "Tagged Image File Format", "image/tiff", "tiff", "tif"),
|
|
Psd("PSD", "Photoshop Document", "image/vnd.adobe.photoshop", "psd"),
|
|
Png("PNG", "Portable Network Graphics", "image/png", "png"),
|
|
Bmp("BMP", "Device Independent Bitmap", "image/bmp", "bmp"),
|
|
Gif("GIF", "Graphics Interchange Format", "image/gif", "gif"),
|
|
Ico("ICO", "Windows Icon", "image/x-icon", "ico"),
|
|
Pcx("PCX", "PiCture eXchange", "image/x-pcx", "pcx"),
|
|
Riff("RIFF", "Resource Interchange File Format", null, new String[0]),
|
|
Wav("WAV", "Waveform Audio File Format", "audio/vnd.wave", "wav", "wave"),
|
|
Avi("AVI", "Audio Video Interleaved", "video/vnd.avi", "avi"),
|
|
WebP("WebP", "WebP", "image/webp", "webp"),
|
|
QuickTime("MOV", "QuickTime Movie", "video/quicktime", "mov", "qt"),
|
|
Mp4("MP4", "MPEG-4 Part 14", "video/mp4", "mp4", "m4a", "m4p", "m4b", "m4r", "m4v"),
|
|
Heif("HEIF", "High Efficiency Image File Format", "image/heif", "heif", "heic"),
|
|
Eps("EPS", "Encapsulated PostScript", "application/postscript", "eps", "epsf", "epsi"),
|
|
Mp3("MP3", "MPEG Audio Layer III", "audio/mpeg", "mp3"),
|
|
Arw("ARW", "Sony Camera Raw", null, "arw"),
|
|
Crw("CRW", "Canon Camera Raw", null, "crw"),
|
|
Cr2("CR2", "Canon Camera Raw", null, "cr2"),
|
|
Nef("NEF", "Nikon Camera Raw", null, "nef"),
|
|
Orf("ORF", "Olympus Camera Raw", null, "orf"),
|
|
Raf("RAF", "FujiFilm Camera Raw", null, "raf"),
|
|
Rw2("RW2", "Panasonic Camera Raw", null, "rw2"),
|
|
Crx("CRX", "Canon Camera Raw", null, "cr3", "crm"),
|
|
Aac("AAC", "Advanced Audio Coding", "audio/aac", "m4a"),
|
|
Asf("ASF", "Advanced Systems Format", "video/x-ms-asf", "asf", "wma", "wmv"),
|
|
Cfbf("CFBF", "Compound File Binary Format", null, null),
|
|
Flv("FLV", "Flash Video", "video/x-flv", ".flv", ".f4v,"),
|
|
Indd("INDD", "INDesign Document", "application/octet-stream", ".indd"),
|
|
Mxf("MXF", "Material Exchange Format", "application/mxf", "mxf"),
|
|
Pdf("PDF", "Portable Document Format", "application/pdf", "pdf"),
|
|
Qxp("QXP", "Quark XPress Document", null, "qzp", "qxd"),
|
|
Ram("RAM", "RealAudio", "audio/vnd.rn-realaudio", "aac", "ra"),
|
|
Rtf("RTF", "Rich Text Format", "application/rtf", "rtf"),
|
|
Sit("SIT", "Stuffit Archive", "application/x-stuffit", "sit"),
|
|
Sitx("SITX", "Stuffit X Archive", "application/x-stuffitx", "sitx"),
|
|
Swf("SWF", "Small Web Format", "application/vnd.adobe.flash-movie", "swf"),
|
|
Vob("VOB", "Video Object", "video/dvd", ".vob"),
|
|
Zip("ZIP", "ZIP Archive", "application/zip", ".zip", ".zipx");
|
|
|
|
public final String[] _extensions;
|
|
public final String _longName;
|
|
public final String _mimeType;
|
|
public final String _name;
|
|
|
|
XRL(String str, String str2, String str3, String... strArr) {
|
|
this._name = str;
|
|
this._longName = str2;
|
|
this._mimeType = str3;
|
|
this._extensions = strArr;
|
|
}
|
|
}
|