public inbox for java@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew Haley <aph@redhat.com>
To: "classpath@gnu.org" <classpath@gnu.org>, kgy <gykarsai@all.hu>,
	       "java@gcc.gnu.org" <java@gcc.gnu.org>
Subject: Fwd: Re: GCJ ------ file type not supported by system
Date: Fri, 29 Aug 2014 08:07:00 -0000	[thread overview]
Message-ID: <540034B0.4010701@redhat.com> (raw)
In-Reply-To: <B040B27C8A444D98B4F39FA5626D6022@P5LD2Deluxe>

[-- Attachment #1: Type: text/plain, Size: 268 bytes --]

I don't have an answer for you.  Maybe someone on the Classpath list does.

But I have to tell you that Classpath is not being actively developed,
so your problem is unlikely to be fixed.  You'll have to debug it
yourself or find someone to debug it.  Sorry.

Andrew.

[-- Attachment #2: Re: GCJ ------ file type not supported by system.eml --]
[-- Type: message/rfc822, Size: 6673 bytes --]

From: "kgy" <gykarsai@all.hu>
To: "GCJ" <java@gcc.gnu.org>
Subject: Re: GCJ ------ file type not supported by system
Date: Fri, 29 Aug 2014 10:00:46 +0200
Message-ID: <B040B27C8A444D98B4F39FA5626D6022@P5LD2Deluxe>

>> I create a native exe [...] And at this point crashes the program [...]

>http://sscce.org/

>Regards, Bodo

I apologise for my trifling. I think too much on this problematic
error message, and I forgot to take notice of correct form of
requiring a support.

I create a native exe for windows by Cygvin.gcj v4.8.3.
This ended perfectally. And when I like to run, than exe
start and run to the point where I like to write to output
a sound stream with the "Audio stream with the
javax.sound.sampled.AudioSystem.write(...)" method. 2nd
parameter of this method is "AudioFileFormat.Type.WAVE".
Exactly the Java source is:

private long genSliceFeat(int featStart, int featEnd)
throws Exception
{
  WaveReader reader = new WaveFileReader(audioFile);
  AudioFormat format = reader.getFormat();

  int framStart = ((int) (featStart * freqRatio));
  int framEnd = ((int) (featEnd * freqRatio));
  int frameSize = format.getFrameSize();
  long pos = framStart * frameSize;
  byte[] wbytes = new byte[(framEnd - framStart) * frameSize];

  int read = reader.read(pos, wbytes);

  ByteArrayInputStream bais = new ByteArrayInputStream(wbytes);
  AudioInputStream ais = new AudioInputStream(bais, format, read / 
frameSize);
  AudioSystem.write(ais, AudioFileFormat.Type.WAVE, sliceWavFile);
  bais.close();
  ais.close();
  bais = null;
  ais = null;
  System.gc();

  return extractWave(sliceWavFile, featureFile, FRONTEND_NAME_FOR_WAVE);
}

And the error message concerns to the
"AudioFileFormat.Type.WAVE" parameter which gives the type of
output sound file. And at this point crashes the program
with the next error message:

java.lang.IllegalArgumentException: file type not supported by system
   at javax.sound.sampled.AudioSystem.write(Unknown Source)
   at com.all.smws.speech.SpeechFilter.genSliceFeat(Unknown Source)
   at com.all.smws.speech.SpeechFilter.getAnnotations(Unknown Source)
   at com.all.sndsep.segmentation.Segmentor.getNewAnnotations(Unknown
Source)
   at com.all.sndsep.segmentation.Segmentor.getNewAnnotations(Unknown
Source)
   at com.all.sndsep.segmentation.Segmentor.getNewAnnotations(Unknown
Source)
   at com.all.sndsep.segmentation.Segmentor.getAllAnnotations(Unknown
Source)
   at com.all.smws.speech.SpeechFilter.getSmwsAnnotations(Unknown Source)
   at com.all.smws.speech.SMWS.getSpeech(Unknown Source)
   at com.all.onins.oi.stream.OnlineInputStream.run(Unknown Source)
   at java.lang.Thread.run(Unknown Source)

Please, help me someone with any words about why. The command
line, which generates the exe in Cygwin

gcj -fjni -mwindows --main=com.all.onins.oi.OnlineInputStub
./Jars/sndsep.jar ./Jars/sns.jar ./Jars/smws.jar ./Jars/onins.jar -o
onins_noopt.exe

Best regards

Gyozo Karsai
from Hungary



  reply	other threads:[~2014-08-29  8:07 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-29  8:00 kgy
2014-08-29  8:07 ` Andrew Haley [this message]
2014-08-29  8:34   ` Fwd: " Mario Torre
2014-08-29  9:47   ` Guillermo Rodriguez Garcia
2014-08-29  9:57     ` Mario Torre
2014-08-29 10:00       ` Guillermo Rodriguez Garcia
2014-09-01  9:03         ` Andrew Haley
2014-09-01  9:32           ` Guillermo Rodriguez Garcia
2014-09-01 10:47             ` Mario Torre
2014-09-03 16:12               ` Guillermo Rodriguez Garcia
2014-09-03 16:30                 ` Andrew Haley
2014-09-03 16:35                   ` Guillermo Rodriguez Garcia
2014-09-03 17:11                     ` Andrew Haley
2014-09-03 17:31                       ` Guillermo Rodriguez Garcia
2014-09-03 18:00                         ` Mark Wielaard
2014-09-03 19:00                           ` Guillermo Rodriguez Garcia
2014-09-03 17:59                     ` Per Bothner
2014-09-03 18:06                       ` Mark Wielaard
2014-09-04  8:14                       ` Andrew Haley
2014-09-04 20:37                         ` Per Bothner
2014-09-04 12:14                 ` Andïï
2014-09-04 16:17                   ` Guillermo Rodriguez
2014-09-04 18:54                     ` Pekka Enberg
     [not found]                       ` <CABDcavbXxFiqTenZm0DJ8MhT5TLOgiMDhGArRjB5wpuTzG7c-g@mail.gmail.com>
2014-09-04 20:07                         ` Pekka Enberg
2014-09-04 20:15                           ` Andrew Haley
2014-09-04 20:43                             ` Pekka Enberg
2014-09-04 21:35                     ` Mark Wielaard
2014-09-05  9:38                     ` Mario Torre
2014-09-05  9:39                     ` Mario Torre

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=540034B0.4010701@redhat.com \
    --to=aph@redhat.com \
    --cc=classpath@gnu.org \
    --cc=gykarsai@all.hu \
    --cc=java@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).