palette: fix bug in float_comparer()

This function is used by av1_remove_duplicates() to remove
duplicate palette colors.

Change-Id: Ia9943bffa2032bcae92f4a6da86477a8135613f2
This commit is contained in:
Joe Young 2017-02-01 15:52:25 -08:00
Родитель e8b34bb1eb
Коммит e7a9133c74
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -126,7 +126,7 @@ void av1_k_means(const float *data, float *centroids, uint8_t *indices, int n,
static int float_comparer(const void *a, const void *b) {
const float fa = *(const float *)a;
const float fb = *(const float *)b;
return (fa > fb) - (fb < fa);
return (fa > fb) - (fa < fb);
}
int av1_remove_duplicates(float *centroids, int num_centroids) {