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/AiffFileFormat.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.AudioFormat; /** * AIFF file format. * * @author Jan Borgersen */ final class AiffFileFormat extends StandardFileFormat { static final int AIFF_MAGIC = 1179603533; // for writing AIFF static final int AIFC_MAGIC = 0x41494643; // 'AIFC' static final int AIFF_MAGIC2 = 0x41494646; // 'AIFF' static final int FVER_MAGIC = 0x46564552; // 'FVER' static final int FVER_TIMESTAMP = 0xA2805140; // timestamp of last AIFF-C update static final int COMM_MAGIC = 0x434f4d4d; // 'COMM' static final int SSND_MAGIC = 0x53534e44; // 'SSND' // compression codes static final int AIFC_PCM = 0x4e4f4e45; // 'NONE' PCM static final int AIFC_ACE2 = 0x41434532; // 'ACE2' ACE 2:1 compression static final int AIFC_ACE8 = 0x41434538; // 'ACE8' ACE 8:3 compression static final int AIFC_MAC3 = 0x4d414333; // 'MAC3' MACE 3:1 compression static final int AIFC_MAC6 = 0x4d414336; // 'MAC6' MACE 6:1 compression static final int AIFC_ULAW = 0x756c6177; // 'ulaw' ITU G.711 u-Law static final int AIFC_IMA4 = 0x696d6134; // 'ima4' IMA ADPCM // $$fb static approach not good, but needed for estimation static final int AIFF_HEADERSIZE = 54; //$$fb 2001-07-13: added management of header size in this class /** header size in bytes */ private final int headerSize=AIFF_HEADERSIZE; /** comm chunk size in bytes, inclusive magic and length field */ private final int commChunkSize=26; /** FVER chunk size in bytes, inclusive magic and length field */ private final int fverChunkSize=0; AiffFileFormat(final Type type, final long byteLength, final AudioFormat format, final long frameLength) { super(type, byteLength, format, frameLength); } int getHeaderSize() { return headerSize; } int getCommChunkSize() { return commChunkSize; } int getFverChunkSize() { return fverChunkSize; } int getSsndChunkOffset() { return getHeaderSize()-16; } }
⏎ com/sun/media/sound/AiffFileFormat.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, 74370👍, 0💬
Popular Posts:
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...
JDK 17 java.base.jmod is the JMOD file for JDK 17 Base module. JDK 17 Base module compiled class fil...
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
pache Derby is an open source relational database implemented entirely in Java and available under t...