Package horcher

Examples of horcher.Fehler


    if (status == JFileChooser.APPROVE_OPTION){
      this.ort = fc.getSelectedFile();
      final WaveFileInputStream tmp = new WaveFileInputStream(this.ort, 0);
      this.N_KANALE = tmp.kanalanzahl;
      if (this.N_KANALE != Main.N_Kanale)
        throw new Fehler("fKanalzahl");
      this.in = new WaveFileInputStream[this.N_KANALE];
      this.in[0] = tmp;
      for (int i = 1; i < this.N_KANALE; i++)
        this.in[i] = new WaveFileInputStream(this.ort, i);
    }else{
View Full Code Here


    for (int i = 0; i < fmt.length; i++)
      fmt[i] = this.inSB.read();
   
   
    if ((fmt[0] != 1) | (fmt[1] != 0))
      throw new Fehler("fDatenformat");

    this.kanalanzahl = fmt[2] + 256 * fmt[3];

    this.samplerate = fmt[4] + 256 * fmt[5] + 65536 * fmt[6] + 16777216* fmt[7];

    this.bytetiefe = (fmt[14] + 256 * fmt[15]) / 8;

    if (kanal >= this.kanalanzahl)
      throw new Fehler("fKanalzahl");

    this.kanal = kanal;
   
    long tmp2=0;
    while(tmp2!=1635017060){
View Full Code Here

TOP

Related Classes of horcher.Fehler

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.