/** * JHOVE2 - Next-generation architecture for format-aware characterization * * Copyright (c) 2009 by The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * o Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * o Neither the name of the University of California/California Digital * Library, Ithaka Harbors/Portico, or Stanford University, nor the names of * its contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package org.jhove2.module.format.wave; import java.io.EOFException; import java.io.IOException; import org.jhove2.annotation.ReportableProperty; import org.jhove2.annotation.ReportableProperty.PropertyType; import org.jhove2.core.JHOVE2; import org.jhove2.core.JHOVE2Exception; import org.jhove2.core.Message; import org.jhove2.core.Message.Context; import org.jhove2.core.Message.Severity; import org.jhove2.core.io.Input; import org.jhove2.core.source.MeasurableSource; import org.jhove2.core.source.Source; import org.jhove2.module.format.Validator.Validity; import org.jhove2.module.format.riff.GenericChunk; import org.jhove2.module.format.wave.bwf.MPEGFormatHeader; import org.jhove2.module.format.wave.field.FormatCategory; import com.sleepycat.persist.model.Persistent; /** WAVE chunk. Note that this class represents a generic WAVE chunk, not the * specific "WAVE" chunk. * * @author slabrams */ @Persistent public class FormatChunk extends GenericChunk { /** WAVE format IBM ADPCM format. */ public static final int IBM_FORMAT_ADPCM = 0x0103; /** WAVE format IBM a-law format. */ public static final int IBM_FORMAT_ALAW = 0x0102; /** WAVE format IBM mu-law format. */ public static final int IBM_FORMAT_MULAW = 0x0101; /** WAVE format A-law format. */ public static final int WAVE_FORMAT_ALAW = 0x0006; /** Antex APCME format. */ public static final int WAVE_FORMAT_ANTEX_ADPCME = 0x0033; /** Audio processing Technology X format. */ public static final int WAVE_FORMAT_APTX = 0x0025; /** Audiofile, Inc. AF10 format. */ public static final int WAVE_FORMAT_AUDIOFILE_AF10 = 0x0026; /** Audiofile, Inc. AF36 format. */ public static final int WAVE_FORMAT_AUDIOFILE_AF36 = 0x0024; /** Control Resources Ltd. VQLPC format. */ public static final int WAVE_FORMAT_CONTROL_RES_VQLPC = 0x0034; /** Control Resources Ltd. CR10 format. */ public static final int WAVE_FORMAT_CONTROL_RES_CR10 = 0x0037; /** Creative Labs ADPCM format. */ public static final int WAVE_FORMAT_CREATIVE_ADPCM = 0x0200; /** DSP Solutions DigiADPCM format. */ public static final int WAVE_FORMAT_DIGIADPCM = 0x0036; /** DSP Solutions DigiFix format. */ public static final int WAVE_FORMAT_DIGIFIX = 0x0016; /** DPS Solutions DigiReal format. */ public static final int WAVE_FORMAT_DIGIREAL = 0x0035; /** DSP Solutions DigiStd format. */ public static final int WAVE_FORMAT_DIGISTD = 0x0015; /** Dolby Labs AC2 format. */ public static final int WAVE_FORMAT_DOLBY_AC2 = 0x0030; /** DSP Group TrueSpeech format. */ public static final int WAVE_FORMAT_DSPGROUP_TRUESPEECH = 0x0022; /** Intel DVI ADPCM format. */ public static final int WAVE_FORMAT_DVI_ADPCM = 0x0011; /** Echo Speech C1 format. */ public static final int WAVE_FORMAT_ECHOSC1 = 0x0023; /** WAVE format extensible format. */ public static final int WAVE_FORMAT_EXTENSIBLE = 0xfffe; /** Fujitsu FM Towns SND format. */ public static final int WAVE_FORMAT_FM_TOWNS_SND = 0x0300; /** Antex G.721 ADPCM format. */ public static final int WAVE_FORMAT_G721_ADPCM = 0x0040; /** Antex G.723 ADPCM format. */ public static final int WAVE_FORMAT_G723_ADPCM = 0x0014; /** Microsoft GSM 610 format. */ public static final int WAVE_FORMAT_GSM610 = 0x0031; /** IBM CVSD format. */ public static final int WAVE_FORMAT_IBM_CVSD = 0x0005; /** WAVE format IEEE format. */ public static final int WAVE_FORMAT_IEEE_FLOAT = 0x0003; /** Videologic MediaSpace ADPCM format. */ public static final int WAVE_FORMAT_MEDIASPACE_ADPCM = 0x0012; /** WAVE format MPEG-1 audio format. */ public static final int WAVE_FORMAT_MPEG = 0x0050; /** WAVE format mu-law format. */ public static final int WAVE_FORMAT_MULAW = 0x0007; /** Natural MiroSystems VBX ADPCM format. */ public static final int WAVE_FORMAT_NMS_VBXADPCM = 0x0038; /** OKI ADPCM format. */ public static final int WAVE_FORMAT_OKI_ADPCM = 0x0010; /** Ing C. Olivetti & C., S.p.A. GSM format. */ public static final int WAVE_FORMAT_OLIGSM = 0x1000; /** Ing C. Olivetti & C., S.p.A. ADPCM format. */ public static final int WAVE_FORMAT_OLIADPCM = 0x1001; /** Ing C. Olivetti & C., S.p.A. CELP format. */ public static final int WAVE_FORMAT_OLICELP = 0x1002; /** Ing C. Olivetti & C., S.p.A. SBC format. */ public static final int WAVE_FORMAT_OLISBC = 0x1003; /** Ing C. Olivetti & C., S.p.A. OPR format. */ public static final int WAVE_FORMAT_OLIOPR = 0x1004; /** WAVE format Pulse Code Modulation (PCM) format. */ public static final int WAVE_FORMAT_PCM = 0x0001; /** Sierra Semiconductor ADPCM format. */ public static final int WAVE_FORMAT_SIERRA_ADPCM = 0x0013; /** Speech Compression SONARC format. */ public static final int WAVE_FORMAT_SONARC = 0x0021; /** Unknown format. */ public static final int WAVE_FORMAT_UNKNOWN = 0x0000; /** Yamaha ADPCM format. */ public static final int WAVE_FORMAT_YAMAHA_ADPCM = 0x0020; /** WAVE format chunk average bytes per second. */ protected long avgBytesPerSec; /** PCM format bits per sample. */ protected int bitsPerSample; /** WAVE format chunk data block size. */ protected int dataBlockSize; /** WAVE format chunk size of extra information, in bytes. */ protected int extraSize; /** WAVE format chunk format category in raw form. */ protected int formatCategory; /** WAVE format chunk format category in descriptive form. */ protected String formatCategory_d; /** WAVE format chunk invalid format category message. */ protected Message invalidFormatCategoryMessage; /** MPEG-1 header. */ protected MPEGFormatHeader mpeg; /** WAVE format chunk number of channels. */ protected int numChannels; /** WAVE format chunk sampling rate. */ protected long samplingRate; /** Instantiate a new <code>FormatChunk</code>. */ public FormatChunk() { super(); } /** * Parse a WAVE chunk. * * @param jhove2 * JHOVE2 framework * @param source * WAVE source unit * @param input WAVE source input * @return Number of bytes consumed * @throws EOFException * If End-of-File is reached reading the source unit * @throws IOException * If an I/O exception is raised reading the source unit * @throws JHOVE2Exception */ @Override public long parse(JHOVE2 jhove2, Source source, Input input) throws EOFException, IOException, JHOVE2Exception { long consumed = super.parse(jhove2, source, input); long start = ((MeasurableSource) source).getStartingOffset(); int numErrors = 0; /* Format category */ this.formatCategory = input.readUnsignedShort(); FormatCategory category = FormatCategory.getFormatCategory(this.formatCategory, jhove2); if (category != null) { this.formatCategory_d = category.getCategory(); } else { numErrors++; this.isValid = Validity.False; Object [] args = new Object [] {input.getPosition()-4L-start, this.formatCategory}; this.invalidFormatCategoryMessage = new Message(Severity.ERROR, Context.OBJECT, "org.jhove2.module.format.wave.FormatChunk.invalidFormatCategory", args, jhove2.getConfigInfo()); } consumed += 2; /* Number of channels. */ this.numChannels = input.readUnsignedShort(); consumed += 2; /* Sampling rate. */ this.samplingRate = input.readUnsignedInt(); consumed += 4; /* Average bytes per second. */ this.avgBytesPerSec = input.readUnsignedInt(); consumed += 4; /* Data block size. */ this.dataBlockSize = input.readUnsignedShort(); consumed += 2; this.bitsPerSample = input.readUnsignedShort(); consumed += 2; if (this.formatCategory != WAVE_FORMAT_PCM) { this.extraSize = input.readUnsignedShort(); consumed += 2; if (this.formatCategory == WAVE_FORMAT_MPEG) { this.mpeg = new MPEGFormatHeader(); consumed += this.mpeg.parse(jhove2, source, input); } } return consumed; } /** Get WAVE format chunk average bytes per second. * @return WAVE format chunk average bytes per second */ @ReportableProperty(order=5, value="WAVE format chunk average bytes per second.") public long getAverageBytesPerSecond() { return this.avgBytesPerSec; } /** Get PCM format bits per sample. * @return PCM format bits per sample */ @ReportableProperty(order=7, value="PCM format bits per sample.") public int getBitsPerSample() { return this.bitsPerSample; } /** Get size of extra information, in bytes. * @return Size of extra information */ @ReportableProperty(order=8, value="Size of extra information, in bytes.") public int getSizeOfExtraInformation() { return this.extraSize; } /** Get WAVE format chunk data block size. * @return WAVE format chunk data block size */ @ReportableProperty(order=6, value="WAVE format chunk data block size.") public int getDataBlockSize() { return this.dataBlockSize; } /** Get WAVE format chunk format category in descriptive form. * @return WAVE format chunk format category */ @ReportableProperty(order=2, value="WAVE format chunk format category in descriptive form.", type=PropertyType.Descriptive) public String getFormatCategory_descriptive() { return this.formatCategory_d; } /** Get WAVE format chunk format category in raw form. * @return WAVE format chunk format category */ @ReportableProperty(order=1, value="WAVE format chunk format category in raw form.", type=PropertyType.Raw) public int getFormatCategory_raw() { return this.formatCategory; } /** Get WAVE format chunk invalid format category message. * @return WAVE format chunk invalid format category message */ @ReportableProperty(order=21, value="WAVE format chunk invalid format category message.") public Message getInvalidFormatCategoryMessage() { return this.invalidFormatCategoryMessage; } /** Get MPEG-1 format header. * @return MPEG-1 format header */ @ReportableProperty(order=9, value="MPEG-1 format header.") public MPEGFormatHeader getMPEGFormatHeader() { return this.mpeg; } /** Get WAVE format chunk number of channels. * @return WAVE format number of channels */ @ReportableProperty(order=3, value="WAVE format chunk number of channels.") public int getNumChannels() { return this.numChannels; } /** Get WAVE format chunk sampling rate. * @return WAVE format sampling rate */ @ReportableProperty(order=4, value="WAVE format chunk sampling rate.") public long getSamplingRate() { return this.samplingRate; } }