[encoder] Added 1/8th pel MV refinement
[schroedinger/research-port.git] / testsuite / utils.c
blob27d6a4d75ad147b8847de2da230231ede585f745
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <time.h>
5 #include <string.h>
7 #include <schroedinger/schro.h>
8 #include <schroedinger/schrounpack.h>
10 int
11 main (int argc, char *argv[])
13 int i;
14 double x;
15 int j,k;
17 schro_init();
19 for(i=0;i<100;i++){
20 x = i*1;
21 j = schro_utils_multiplier_to_quant_index (x);
22 k = schro_table_quant[j];
23 printf("%g %d %d\n", x, j, k);
26 exit(0);