From 34a5c986ebab45f06258b6da12e0258ad570a67b Mon Sep 17 00:00:00 2001 From: "N.N." Date: Mon, 11 Dec 2006 23:14:28 +0000 Subject: fixed warnings and added newer quicktime svn path=/trunk/externals/pidip/; revision=6809 --- modules/pdp_segsnd~.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'modules/pdp_segsnd~.c') diff --git a/modules/pdp_segsnd~.c b/modules/pdp_segsnd~.c index 4e997f8..2ffc48a 100644 --- a/modules/pdp_segsnd~.c +++ b/modules/pdp_segsnd~.c @@ -40,20 +40,20 @@ typedef struct pdp_segsnd_struct t_float x_f; t_outlet *x_outlet0; - t_int x_packet0; - t_int x_packet1; - t_int x_dropped; - t_int x_queue_id; + int x_packet0; + int x_packet1; + 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; - t_int x_x1; // coordinates of fixed segment - t_int x_y1; - t_int x_x2; - t_int x_y2; - t_int x_random; + int x_x1; // coordinates of fixed segment + int x_y1; + int x_x2; + int x_y2; + int x_random; short int *x_data; @@ -127,8 +127,8 @@ static void pdp_segsnd_process_yv12(t_pdp_segsnd *x) short int *data = (short int *)pdp_packet_data(x->x_packet0); t_pdp *newheader = pdp_packet_header(x->x_packet1); short int *newdata = (short int *)pdp_packet_data(x->x_packet1); - t_int ti; - t_int px, py; + int ti; + int px, py; unsigned char y, u, v; short int *pY, *pU, *pV; DATA32 *imdata; @@ -278,8 +278,8 @@ static t_int *pdp_segsnd_perform(t_int *w) { t_float *out = (t_float *)(w[1]); // audio generated sound t_pdp_segsnd *x = (t_pdp_segsnd *)(w[2]); - t_int n = (int)(w[3]); - t_int npoints, xi, px, py; + int n = (int)(w[3]); + int npoints, xi, px, py; t_float a=0; // set initial coordinates -- cgit v1.2.1