diff options
Diffstat (limited to 'media/libaom/src/third_party/fastfeat/fast.h')
-rw-r--r-- | media/libaom/src/third_party/fastfeat/fast.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/media/libaom/src/third_party/fastfeat/fast.h b/media/libaom/src/third_party/fastfeat/fast.h index a00730e3d..a65d5a5d1 100644 --- a/media/libaom/src/third_party/fastfeat/fast.h +++ b/media/libaom/src/third_party/fastfeat/fast.h @@ -5,15 +5,15 @@ typedef struct { int x, y; } xy; typedef unsigned char byte; -int fast9_corner_score(const byte* p, const int pixel[], int bstart); +int aom_fast9_corner_score(const byte* p, const int pixel[], int bstart); -xy* fast9_detect(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners); +xy* aom_fast9_detect(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners); -int* fast9_score(const byte* i, int stride, xy* corners, int num_corners, int b); +int* aom_fast9_score(const byte* i, int stride, xy* corners, int num_corners, int b); -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* nonmax_suppression(const xy* corners, const int* scores, int num_corners, int* ret_num_nonmax); +xy* aom_nonmax_suppression(const xy* corners, const int* scores, int num_corners, int* ret_num_nonmax); #endif |