I have just need H 263 codec. Yes, I built ffmpeg myself.

In my code I found other problems. I share this for everyone..

// Decode video frame
avcodec_decode_video(pCodecCtx, pFrame, &frameFinished,
packet.data, packet.size);

Here avcodec_decode_video is not used anymore like that.. Instead of
it avcodec_decode_video2  is used. And the parameters are have to be
like that

avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished,&packete);

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to