[x265] [PATCH Review Only] Assembly routine for filterHorizontal_p_p() for 4 tap filter
Jason Garrett-Glaser
jason at x264.com
Mon Sep 23 17:08:07 CEST 2013
Okay, I think I understand your loop code, as odd as it is...
+ cmp col, width
+ jge _end_col
+
+ jmp _loop_col
+
+_end_col:
should be replaceable by
+ cmp col, width
+ jl _loop_col
+_end_col:
Jason
More information about the x265-devel
mailing list