diff options
Diffstat (limited to 'media/libaom/src/third_party/fastfeat/fast.c')
-rw-r--r-- | media/libaom/src/third_party/fastfeat/fast.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media/libaom/src/third_party/fastfeat/fast.c b/media/libaom/src/third_party/fastfeat/fast.c index 0d7efc154d..f29ac8f725 100644 --- a/media/libaom/src/third_party/fastfeat/fast.c +++ b/media/libaom/src/third_party/fastfeat/fast.c @@ -3,16 +3,16 @@ #include "fast.h" -xy* fast9_detect_nonmax(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners) +xy* aom_fast9_detect_nonmax(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners) { xy* corners; int num_corners; int* scores; xy* nonmax; - corners = fast9_detect(im, xsize, ysize, stride, b, &num_corners); - scores = fast9_score(im, stride, corners, num_corners, b); - nonmax = nonmax_suppression(corners, scores, num_corners, ret_num_corners); + corners = aom_fast9_detect(im, xsize, ysize, stride, b, &num_corners); + scores = aom_fast9_score(im, stride, corners, num_corners, b); + nonmax = aom_nonmax_suppression(corners, scores, num_corners, ret_num_corners); free(corners); free(scores); |