Closed GoogleCodeExporter closed 9 years ago
a few things changed between r394 and r559 :-)
r560 has this function disabled for now.
Original comment by fbarch...@chromium.org
on 6 Feb 2013 at 5:48
r584 fixes the function using separate shift and narrow.
Original comment by fbarch...@chromium.org
on 27 Feb 2013 at 2:25
Current r627 has a work around - shift and then narrow.
The original code that broke was wrong
vqshrun.u16 d0,q0,#8
'u' means unsigned quantize for a signed source. But u16 was passed as source,
not s16, and it is already unsigned.
This should work: vqshrn.u16 d0, q0, #8
'r' for rounding is nice
vqrshrn.u16 d20, q10, #8
'q' is not needed.
vrshrn.u16 d0, q0, #8
Original comment by fbarch...@google.com
on 1 Apr 2013 at 8:01
Fixed in r628
Original comment by fbarch...@google.com
on 1 Apr 2013 at 8:05
Original issue reported on code.google.com by
TimonLio
on 6 Feb 2013 at 4:09