Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.desktop.jmod - Desktop Module
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module.
JDK 11 Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.desktop.jmod.
JDK 11 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Desktop module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/media/sound/AuFileFormat.java
/* * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.media.sound; import javax.sound.sampled.AudioFileFormat; import javax.sound.sampled.AudioFormat; /** * AU file format. * * @author Jan Borgersen */ final class AuFileFormat extends StandardFileFormat { // magic numbers static final int AU_SUN_MAGIC = 0x2e736e64; // ".snd" // encodings static final int AU_ULAW_8 = 1; /* 8-bit ISDN u-law */ static final int AU_LINEAR_8 = 2; /* 8-bit linear PCM */ static final int AU_LINEAR_16 = 3; /* 16-bit linear PCM */ static final int AU_LINEAR_24 = 4; /* 24-bit linear PCM */ static final int AU_LINEAR_32 = 5; /* 32-bit linear PCM */ static final int AU_FLOAT = 6; /* 32-bit IEEE floating point */ // we don't support these ... // static final int AU_DOUBLE = 7; /* 64-bit IEEE floating point */ // static final int AU_ADPCM_G721 = 23; /* 4-bit CCITT g.721 ADPCM */ // static final int AU_ADPCM_G722 = 24; /* CCITT g.722 ADPCM */ // static final int AU_ADPCM_G723_3 = 25; /* CCITT g.723 3-bit ADPCM */ // static final int AU_ADPCM_G723_5 = 26; /* CCITT g.723 5-bit ADPCM */ static final int AU_ALAW_8 = 27; /* 8-bit ISDN A-law */ static final int AU_HEADERSIZE = 24; /** * According the specification of AU file format this is the value for * length field if length is not known. This is a maximum possible value for * the unsigned int. */ static final long /*unsigned int */ UNKNOWN_SIZE = 0xffffffffL; private int auType; AuFileFormat(final AudioFileFormat.Type type, final long byteLength, final AudioFormat format, final long frameLength) { super(type, byteLength, format, frameLength); AudioFormat.Encoding encoding = format.getEncoding(); auType = -1; if (AudioFormat.Encoding.ALAW.equals(encoding)) { if (format.getSampleSizeInBits() == 8) { auType = AU_ALAW_8; } } else if (AudioFormat.Encoding.ULAW.equals(encoding)) { if (format.getSampleSizeInBits() == 8) { auType = AU_ULAW_8; } } else if (AudioFormat.Encoding.PCM_SIGNED.equals(encoding)) { if (format.getSampleSizeInBits() == 8) { auType = AU_LINEAR_8; } else if (format.getSampleSizeInBits() == 16) { auType = AU_LINEAR_16; } else if (format.getSampleSizeInBits() == 24) { auType = AU_LINEAR_24; } else if (format.getSampleSizeInBits() == 32) { auType = AU_LINEAR_32; } } else if (AudioFormat.Encoding.PCM_FLOAT.equals(encoding)) { if (format.getSampleSizeInBits() == 32) { auType = AU_FLOAT; } } } public int getAuType() { return auType; } }
⏎ com/sun/media/sound/AuFileFormat.java
Or download all of them as a single archive file:
File name: java.desktop-11.0.1-src.zip File size: 7974380 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.instrument.jmod - Instrument Module
2022-08-06, 159639👍, 5💬
Popular Posts:
Jettison is a collection of Java APIs (like STaX and DOM) which read and write JSON. This allows nea...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS (Java Generic Security Serv...
ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify ex...
Apache Log4j SLF4J Binding allows applications coded to the SLF4J API to use Log4j 2 as the implemen...