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_quark.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'modules/pdp_quark.c') diff --git a/modules/pdp_quark.c b/modules/pdp_quark.c index 8a59e9e..ce87c92 100644 --- a/modules/pdp_quark.c +++ b/modules/pdp_quark.c @@ -44,19 +44,19 @@ typedef struct pdp_quark_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; - - t_int x_vwidth; - t_int x_vheight; - t_int x_vsize; + int x_packet0; + int x_packet1; + int x_dropped; + int x_queue_id; + + int x_vwidth; + int x_vheight; + int x_vsize; short int *x_buffer; short int **x_planetable; - t_int x_plane; - t_int x_planes; - t_int x_tolerance; + int x_plane; + int x_planes; + int x_tolerance; } t_pdp_quark; @@ -113,7 +113,7 @@ static void pdp_quark_process_yv12(t_pdp_quark *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 i, cf, diff; + int i, cf, diff; /* allocate all ressources */ if ( (int)(header->info.image.width*header->info.image.height) != x->x_vsize ) -- cgit v1.2.1