I am trying to compile last FFmpeg for iPhone, but I am getting an error:
CC libavformat/asfcrypt.o
error: invalid operand in inline asm: 'ldr ${0:Q}, $1
ldr ${0:R}, $2
'
make: *** [libavformat/asfcrypt.o] Error 1
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I have tried –disable-asm configuration. It works but the decoder performance is bad.
I tried edit the config.h:
#define HAVE_INLINE_ASM 0this only disables inline assembly
or if you only some decoder in ffmpeg, just disable all other unused codec
and edit libavutil/arm/intmath.h, comment out this define:
this only disable one inline assembly function and it works for me.