Decoding Video using FFMpeg for android

后端 未结 2 1981
清歌不尽
清歌不尽 2020-12-29 07:47

I tried to decode video using FFMpeg library from the sample examples available on internet, i figure it out with new version of ffmpeg, here is the code which I called from

2条回答
  •  攒了一身酷
    2020-12-29 08:20

    Looking at the instruction causing problem...

    $ rasm2 -a arm -d 4ff0e92d stclcs 0, cr15, [r9, #316]!

    stc instruction documentation.

    Searching for it, it might not be possible to do that from user space: Getting ILL_ILLOPC (illegal opcode) when trying to execute MRC or MCR instructions on Android

    Then however this shouldn't be really your problem right? :)

    Try to just print some logging messages in native (or at least do that before av_register_all()), don't add any other extra library, and see if you get that right.

提交回复
热议问题