Open GoogleCodeExporter opened 8 years ago
The crash is reproducable with the following code. Seems to be a problem with
one of the files. However, it opens about 15 times (each file) before it
crashes.
Sorry, that I have to make another post for a second file attachment.
String fileName1 = new String("D:\\MMLogger_bin\\test_20100802_142929_003.mp4");
String fileName2 = new String("D:\\MMLogger_bin\\test_20100802_142929_004.mp4");
String fileName;
IContainer container = null;
IStreamCoder coder[] = null;
for (int j=0; j<200; j++) {
if (j%1 == 0)
fileName = fileName1;
else
fileName = fileName2;
if (container != null && container.isOpened()) {
for (int i=0; i<container.getNumStreams(); i++) {
if (coder[i] != null)
coder[i].close();
}
container.close();
}
container = IContainer.make();
if (container.open(fileName, IContainer.Type.READ, null) < 0) {
throw new IllegalArgumentException("could not open file: " + fileName);
}
coder = new IStreamCoder[container.getNumStreams()];
for (int i=0; i<container.getNumStreams(); i++) {
IStream stream = container.getStream(i);
IStreamCoder streamCoder = stream.getStreamCoder();
if (streamCoder != null) {
System.out.println(j + ": testInit() -> stream");
coder[i] = streamCoder;
if (coder[i].open() < 0)
throw new RuntimeException("could not open video decoder for container: " +fileName);
}
}
}
Original comment by arnd.e...@iav.de
on 3 Aug 2010 at 1:09
Attachments:
another sample file ...
Original comment by arnd.e...@iav.de
on 3 Aug 2010 at 1:11
Attachments:
After some more testing it figured out that test_20100802_142929_003.mp4 is the
file where the error occurs. It is a file with an empty video stream.
I think this should not make the xuggler crash.
Original comment by arnd.e...@iav.de
on 6 Aug 2010 at 7:54
Did your issue got fixed on windows? I have the same issue. Thanks.
Original comment by feng...@gmail.com
on 5 Apr 2012 at 7:40
I never got any answer. I wonder if anyone reads the bug reports. However, I
found a solution (for my case) where the error should not occur any more,
because I am no longer producing empty streams.
Original comment by arnd.e...@googlemail.com
on 9 May 2012 at 8:09
How did you fix it?
Original comment by monstrf...@gmail.com
on 20 Jan 2015 at 4:10
The problem ocurred when I opened files with empty streams. In my case I could
just change the generation of the video files not to produce empty streams.
Original comment by arnd.e...@googlemail.com
on 21 Jan 2015 at 10:18
Original issue reported on code.google.com by
arnd.e...@iav.de
on 3 Aug 2010 at 12:33Attachments: