view old/simple_pack/spu_span.h @ 639:70c5c2d2eb24

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 19 Nov 2009 18:45:24 +0900
parents 735f76483bb2
children
line wrap: on
line source

#ifndef INCLUDED_SPU_SPAN
#define INCLUDED_SPU_SPAN

#ifndef INCLUDED_SPAN_PACK
#include "span_pack.h"
#endif

typedef struct SPUSPAN {
<<<<<<< spu_span.h
    int length;
    SPUSPAN *next;
    //SPANPACK_PTR spp[64];
    SPANPACK sp[1];
=======
  int length;
  //SPANPACK spp[23];  // window_height = 1080  ( 1080/8/6 = 22.5 )
  SPANPACK spp[10];   // window_height = 480  ( 480/8/6 = 10 )
  //SPUSPAN *next;
>>>>>>> 1.2
} SPUSPAN;

typedef struct SPUSPANLIST {
<<<<<<< spu_span.h
    SPUSPAN ss[6];
=======
  SPUSPAN ss[6];  // 6 = number of SPU
>>>>>>> 1.2
} SPUSPANLIST;

/*
typedef struct SPLSSL {
  SPUSPANLIST *ssl;
  SPANPACKLIST *spl;
} SPLSSL;
*/
#endif