I don't get the reason why do i obtain the following exceptions :

Exception in thread "videoDecoder" java.lang.IllegalArgumentException: The picture is not complete.
at com.xuggle.xuggler.video.AConverter.validatePicture(AConverter.java:289)
at com.xuggle.xuggler.video.BgrConverter.toImage(BgrConverter.java:159)
at com.xuggle.xuggler.Utils.videoPictureToImage(Utils.java:322)
at VideoPlayer.VideoDecoder.analyzeVideoPackets(VideoDecoder.java:138)
at VideoPlayer.VideoDecoder.access$000(VideoDecoder.java:18)
at VideoPlayer.VideoDecoder$1.run(VideoDecoder.java:40)
at java.lang.Thread.run(Thread.java:729)

when i try to run the code given here.

The code is too large to be presented here .

What that code is meant for is to decode and then play video (with sound) . But i get run time exception when i run the code. Please tell what the problem is ? Why do i get the exception ? I have used xuggler to decode video files.

link|improve this question

79% accept rate
1  
You could get much better help for this question in Xuggler forums: groups.google.com/group/xuggler-users?pli=1 – Marcelo Aug 3 '11 at 19:36
1  
@ closer You don't understand what is being asked here ? – Suhail Gupta Aug 3 '11 at 19:42
1  
I didn't vote to close, but you haven't given any indication you tried to solve the problem yourself, or even considered that the error message may be meaningful. Are you sure the file you are asking it to decode is not corrupt? Is it in a format that Xuggler understands? SO is for questions about programming, like "I've written some code trying to do X (sample code) and expect to get Y but got Z; I've tried the following...". This is very different from "I downloaded some code off the Internet and it doesn't work, please help me". The first will likely get an answer, the latter won't. – Jim Garrison Aug 3 '11 at 21:37
@ Jim Garrison If you would have gone through the link given in the question you won't be saying this . That is not some code downloaded from internet – Suhail Gupta Aug 4 '11 at 5:30
feedback

closed as not a real question by bmargulies, Jim Garrison, Jarrod Roberson, Donal Fellows, Michael Petrotta Aug 5 '11 at 15:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

I didn't resample the newPic so the new snippet becomes :

if( resampler != null ) {
                            newPic = IVideoPicture.make( resampler.getOutputPixelFormat() , picture.getWidth() , picture.getHeight());
                            if (resampler.resample(newPic, picture) < 0) // missing statement
                                throw new RuntimeException("could not resample video from: ");
                        }

Therefore the exception was illegel argument.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.