aboutsummaryrefslogtreecommitdiff
path: root/modules/pdp_hue.c
diff options
context:
space:
mode:
authorN.N. <sevyves@users.sourceforge.net>2006-12-11 23:14:28 +0000
committerN.N. <sevyves@users.sourceforge.net>2006-12-11 23:14:28 +0000
commit34a5c986ebab45f06258b6da12e0258ad570a67b (patch)
tree339cddaf82668a7107ed6b43b5e5b69fbee98391 /modules/pdp_hue.c
parentd59ffe67300cdfa49dd82dcc7264fa09bd646b30 (diff)
fixed warnings and added newer quicktime
svn path=/trunk/externals/pidip/; revision=6809
Diffstat (limited to 'modules/pdp_hue.c')
-rw-r--r--modules/pdp_hue.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/pdp_hue.c b/modules/pdp_hue.c
index 28331ff..d8af931 100644
--- a/modules/pdp_hue.c
+++ b/modules/pdp_hue.c
@@ -32,13 +32,13 @@ typedef struct pdp_hue_struct
t_outlet *x_meang;
t_outlet *x_meanb;
- t_int x_packet0;
- t_int x_dropped;
- t_int x_queue_id;
+ int x_packet0;
+ int x_dropped;
+ int x_queue_id;
- t_int x_vwidth;
- t_int x_vheight;
- t_int x_vsize;
+ int x_vwidth;
+ int x_vheight;
+ int x_vsize;
unsigned int x_encoding;
} t_pdp_hue;
@@ -49,10 +49,10 @@ static void pdp_hue_process_rgb(t_pdp_hue *x)
unsigned char *data = (unsigned char*)pdp_packet_data(x->x_packet0);
int i;
- t_int px, py;
+ int px, py;
unsigned char *sr, *sg, *sb;
double meanr=0, meang=0, meanb=0;
- t_int nbpixs=0;
+ int nbpixs=0;
/* allocate all ressources */
x->x_vwidth = header->info.image.width;