Current File : //proc/thread-self/root/kunden/kunden/proc/thread-self/root/usr/share/doc/orc-devel/example1.c |
#include <stdio.h>
#include "example1orc.h"
#define N 10
short a[N];
short b[N];
short c[N];
int
main (int argc, char *argv[])
{
int i;
/* Create some data in the source arrays */
for(i=0;i<N;i++){
a[i] = 100*i;
b[i] = 32000;
}
/* Call a function that uses Orc */
audio_add_s16 (c, a, b, N);
/* Print the results */
for(i=0;i<N;i++){
printf("%d: %d %d -> %d\n", i, a[i], b[i], c[i]);
}
return 0;
}