kringon / xuggle

Automatically exported from code.google.com/p/xuggle
0 stars 0 forks source link

EXCEPTION_ACCESS_VIOLATION when Icontainer.open() #294

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I have this simple code:

 public static void main(final String[] args) {
        final String filename = "d:\\temp\\battle royale II.avi";
        // Create a Xuggler container object

        final IContainer container = IContainer.make();

        final File file = new File(filename);

        try {
            final FileInputStream fileIS = new FileInputStream(file);
        } catch (final FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // Open up the container
        if (container.open(filename, IContainer.Type.READ, null) < 0) {
            throw new IllegalArgumentException("could not open file: " + filename);
        }
}

When I launch this, I got an EXCEPTION_ACCESS_VIOLATION (see attach)

I have test with many other files. To my opinion, I got this exception when try 
to open a video file encoded with matroska version 1 (see attach).

Even if xuggle can't open those type of file, it is quite annoying :(

Thanks in advance
ps: sorry for my awfully english, I don't often practice :s

Original issue reported on code.google.com by chacha...@gmail.com on 23 Apr 2012 at 2:18

Attachments:

GoogleCodeExporter commented 8 years ago
Hi, we have come across this issue when migrating software to jdk 1.7, 64bits. 
Error is impacting number of our users. Can this be treated with High priority? 
Is there any estimation on when the fix for will be available?

Original comment by andrzej_...@o2.pl on 18 Nov 2013 at 2:24

GoogleCodeExporter commented 8 years ago
I am also facing some problem....

Original comment by jnawali....@gmail.com on 23 Jul 2014 at 9:47