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 17 java.desktop.jmod - Desktop Module
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module.
JDK 17 Desktop module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.desktop.jmod.
JDK 17 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Desktop module source code files are stored in \fyicenter\jdk-17.0.5\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, 2019, 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 */ static final int AU_DOUBLE = 7; /* 64-bit IEEE floating point */ // we don't support these ... // 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; } else if (format.getSampleSizeInBits() == 64) { auType = AU_DOUBLE; } } } 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-17.0.5-src.zip File size: 9152233 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.instrument.jmod - Instrument Module
2023-09-16, 74545👍, 0💬
Popular Posts:
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...
JDK 11 java.rmi.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) module. JDK 11 RMI m...
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package? You...