aboutsummaryrefslogtreecommitdiff
path: root/peakval_mmx.c
blob: 436fe88617e41fbdbb380691b3f11105504a10b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Wrapper for the MMX version of peakval
 * Copyright 2004 Phil Karn, KA9Q
 */

#include <stdlib.h>

int peakval_mmx_assist(signed short *,int);

int peakval_mmx(signed short *b,int cnt){
  int peak = 0;
  int a;

  while(((int)b & 7) != 0 && cnt != 0){
    a = abs(*b);
    if(a > peak)
      peak = a;
    b++;
    cnt--;
  }
  a = peakval_mmx_assist(b,cnt);
  if(a > peak)
    peak = a;
  b += cnt & ~3;
  cnt &= 3;

  while(cnt != 0){
    a = abs(*b);
    if(a > peak)
      peak = a;
    b++;
    cnt--;
  }
  return peak;
}