Package com.talixa.audio.riff.exceptions

Examples of com.talixa.audio.riff.exceptions.RiffFormatException


    is.read(dataSize);
    is.read(waveHeader);
       
    if (!Arrays.equals(riffHeader, RiffFile.RIFF_HEADER)) {
      is.close();
      throw new RiffFormatException("RIFF header not found");
    }
   
    if (!Arrays.equals(waveHeader, WaveFile.WAVE_HEADER)){
      is.close();
      throw new WaveFormatException("WAVE header missing");
View Full Code Here

TOP

Related Classes of com.talixa.audio.riff.exceptions.RiffFormatException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.