diff options
author | N.N. <sevyves@users.sourceforge.net> | 2006-12-11 23:14:28 +0000 |
---|---|---|
committer | N.N. <sevyves@users.sourceforge.net> | 2006-12-11 23:14:28 +0000 |
commit | 34a5c986ebab45f06258b6da12e0258ad570a67b (patch) | |
tree | 339cddaf82668a7107ed6b43b5e5b69fbee98391 /modules/pdp_cycle.c | |
parent | d59ffe67300cdfa49dd82dcc7264fa09bd646b30 (diff) |
fixed warnings and added newer quicktime
svn path=/trunk/externals/pidip/; revision=6809
Diffstat (limited to 'modules/pdp_cycle.c')
-rw-r--r-- | modules/pdp_cycle.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/modules/pdp_cycle.c b/modules/pdp_cycle.c index 5f4b44c..1a0e93f 100644 --- a/modules/pdp_cycle.c +++ b/modules/pdp_cycle.c @@ -36,23 +36,23 @@ typedef struct pdp_cycle_struct t_object x_obj; t_float x_f; - 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_outlet *x_outlet0; - t_int x_vwidth; - t_int x_vheight; - t_int x_vsize; + int x_vwidth; + int x_vheight; + int x_vsize; - t_int x_cycley; // flag to activate y cycling - t_int x_cycleu; // flag to activate u cycling - t_int x_cyclev; // flag to activate v cycling + int x_cycley; // flag to activate y cycling + int x_cycleu; // flag to activate u cycling + int x_cyclev; // flag to activate v cycling - t_int x_yoffset; - t_int x_uoffset; - t_int x_voffset; + int x_yoffset; + int x_uoffset; + int x_voffset; } t_pdp_cycle; @@ -86,8 +86,8 @@ static void pdp_cycle_process_yv12(t_pdp_cycle *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; - t_int px, py, y, u, v; + int i; + int px, py, y, u, v; x->x_vwidth = header->info.image.width; x->x_vheight = header->info.image.height; |