Search code examples
androidffmpegarmframe-rateneon

Performance of ffmpeg decoding on android without neon support


I've compiled ffmpeg code on android and able to play the video without neon support and for armv5te. Decoding is good, the video plays,but the problem is the frame rate is really really bad. I getting a max of 5fps, which is horrible.

Is there anybody who has got success in playing the video without support with ffmpeg on android. Or is there anything that I am really missing?

EDIT : configuration I got it by running

./configure --enable-gpl --enable-libgsm --enable-libxvid \
--enable-libamr_nb --enable-libamr_wb --enable-libmp3lame --enable-libogg \
--enable-libvorbis --enable-libfaac --enable-libfaad --enable-shared

Solution

  • I didn't get anything working without neon support. So I compiled with neon support and for armv7. I get better framerate now. Nearly 40fps, is very good enough for my app needs. Thanks matthew for your responses.