diff options
Diffstat (limited to 'modules/pdp_noquark.c')
-rw-r--r-- | modules/pdp_noquark.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/modules/pdp_noquark.c b/modules/pdp_noquark.c index 0ba61d9..7c5574f 100644 --- a/modules/pdp_noquark.c +++ b/modules/pdp_noquark.c @@ -45,19 +45,19 @@ typedef struct pdp_noquark_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_noquark; @@ -114,7 +114,7 @@ static void pdp_noquark_process_yv12(t_pdp_noquark *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 px, py, cf, diff, rx, ry; + int px, py, cf, diff, rx, ry; /* allocate all ressources */ if ( (int)(header->info.image.width*header->info.image.height) != x->x_vsize ) |