All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.harvard.hul.ois.jhove.module.aiff.AudioRecChunk Maven / Gradle / Ivy

/**********************************************************************
 * Jhove - JSTOR/Harvard Object Validation Environment
 * Copyright 2004 by JSTOR and the President and Fellows of Harvard College
 **********************************************************************/

package edu.harvard.hul.ois.jhove.module.aiff;

import java.io.DataInputStream;
import java.io.IOException;
import edu.harvard.hul.ois.jhove.*;
import edu.harvard.hul.ois.jhove.module.AiffModule;
import edu.harvard.hul.ois.jhove.module.iff.Chunk;
import edu.harvard.hul.ois.jhove.module.iff.ChunkHeader;

/**
 * Implementation of the AIFF Audio Recording Chunk.
 *
 * The data bytes are put into an uninterpreted byte array
 * Property.  These are specified in the AES Recommended
 * Practice for Digital Audio Engineering - Serial Transmission 
 * Format for Linearly Represented Digital Audio Data, 
 * Section 7.1, Channel Status Data.
 * 
 * @author Gary McGath
 *
 */
public class AudioRecChunk extends Chunk {

    /**
     * Constructor.
     * 
     * @param module   The AIFFModule under which this was called
     * @param hdr      The header for this chunk
     * @param dstrm    The stream from which the AIFF data are being read
     */
    public AudioRecChunk(
        AiffModule module,
        ChunkHeader hdr,
        DataInputStream dstrm) {
        super(module, hdr, dstrm);
    }

    /** Reads a chunk and puts an AudioRecording property into
     *  the RepInfo object. 
     * 
     *  @return   false if the chunk is structurally
     *            invalid, otherwise true
     */
    public boolean readChunk(RepInfo info) throws IOException {
        AiffModule module = (AiffModule) _module;
        if (bytesLeft != 24) {
            // This chunk must always have exactly 24 bytes data
            info.setMessage (new ErrorMessage
                    (MessageConstants.ERR_REC_CHUNK_WRONG_SIZE,
                     module.getNByte ()));
            info.setWellFormed (false);
            return false;
        }
        byte[] buf = new byte[24];
        ModuleBase.readByteBuf (_dstream, buf, module);
        module.addAiffProperty (new Property ("AudioRecording",
                PropertyType.BYTE,
                PropertyArity.ARRAY,
                buf));
        return true;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy