arm assembly fail to compile on 1.8

Issue #406 new
Former user created an issue

arm/asm-primitives.cpp needs to be updated to handle alignment. Apparently the header has changed.

I don't know whether these functions should be ALIGNED or NONALIGNED...I'm assuming that if there is no NONALIGNED version it will use the ALIGNED version when appropriate.

for example: p.pu[LUMA_4x4].addAvg = PFX(addAvg_4x4_neon);

needs to be changed to: p.pu[LUMA_4x4].addAvg[ALIGNED] = PFX(addAvg_4x4_neon);

I also added a patch for parseCpuNames.

Comments (2)

  1. Log in to comment