Add Russian translation provided by Валерий Крувялис <valkru@mail.ru>
[xiph-mirror.git] / tarkin / tarkin.h
blob80b355299b8c7d627901c8221279b3af52d2be9b
1 // $Id: tarkin.h,v 1.1 2001/02/13 01:06:24 giles Exp $
2 //
3 // $Log: tarkin.h,v $
4 // Revision 1.1 2001/02/13 01:06:24 giles
5 // Initial revision
6 //
8 #ifndef _TARKIN_H_
9 #define _TARKIN_H_
11 #include "dwt.h"
12 #include "bitwise.h"
14 #include <fcntl.h>
15 #include <math.h>
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <sys/mman.h>
20 #include <sys/stat.h>
21 #include <sys/types.h>
23 typedef struct {
24 ulong addr;
25 float mag;
26 } dwt_vector;
28 typedef struct {
29 uint x_dim;
30 uint y_dim;
31 uint z_dim;
32 uint x_bits;
33 uint y_bits;
34 uint z_bits;
35 uint x_workspace;
36 uint y_workspace;
37 uint z_workspace;
38 ulong sz;
39 ulong sz_workspace;
40 ulong vectorcount;
41 float *vectors;
42 dwt_vector *dwtv;
43 } tarkindata;
45 #endif // _TARKIN_H_