comparison old/simple_pack/spu_span.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_pack/spu_span.h@5c194c71eca8
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
1 #ifndef INCLUDED_SPU_SPAN
2 #define INCLUDED_SPU_SPAN
3
4 #ifndef INCLUDED_SPAN_PACK
5 #include "span_pack.h"
6 #endif
7
8 typedef struct SPUSPAN {
9 <<<<<<< spu_span.h
10 int length;
11 SPUSPAN *next;
12 //SPANPACK_PTR spp[64];
13 SPANPACK sp[1];
14 =======
15 int length;
16 //SPANPACK spp[23]; // window_height = 1080 ( 1080/8/6 = 22.5 )
17 SPANPACK spp[10]; // window_height = 480 ( 480/8/6 = 10 )
18 //SPUSPAN *next;
19 >>>>>>> 1.2
20 } SPUSPAN;
21
22 typedef struct SPUSPANLIST {
23 <<<<<<< spu_span.h
24 SPUSPAN ss[6];
25 =======
26 SPUSPAN ss[6]; // 6 = number of SPU
27 >>>>>>> 1.2
28 } SPUSPANLIST;
29
30 /*
31 typedef struct SPLSSL {
32 SPUSPANLIST *ssl;
33 SPANPACKLIST *spl;
34 } SPLSSL;
35 */
36 #endif