diff options
Diffstat (limited to 'modules/pdp_smuck.c')
-rw-r--r-- | modules/pdp_smuck.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/pdp_smuck.c b/modules/pdp_smuck.c index 4737c9f..9e77a3c 100644 --- a/modules/pdp_smuck.c +++ b/modules/pdp_smuck.c @@ -42,16 +42,16 @@ typedef struct pdp_smuck_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_n; // transform number + int x_n; // transform number } t_pdp_smuck; @@ -79,7 +79,7 @@ static void pdp_smuck_process_yv12(t_pdp_smuck *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, pxx, pyy; + int px, py, pxx, pyy; short int *pnY, *pnU, *pnV; /* allocate all ressources */ |