diff options
| author | Yannick Verschueren <unknown@unknown> | 2004-04-19 13:02:49 +0000 |
|---|---|---|
| committer | Yannick Verschueren <unknown@unknown> | 2004-04-19 13:02:49 +0000 |
| commit | 4bbd79b370da1797f1ed3ee7cb60d9bb84d4b5ff (patch) | |
| tree | 132876307aca995ddff73f05a1c6abf8128eb45c | |
| parent | e5106dd836a820b91402c1efd6640e0b7d0e763c (diff) | |
Potential error in tcd_init around L543 with p and q
| -rw-r--r-- | libopenjpeg/tcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libopenjpeg/tcd.c b/libopenjpeg/tcd.c index 222cd355..ab4fdb17 100644 --- a/libopenjpeg/tcd.c +++ b/libopenjpeg/tcd.c @@ -517,7 +517,7 @@ void tcd_init_encode(j2k_image_t * img, j2k_cp_t * cp, int curtileno) void tcd_init(j2k_image_t * img, j2k_cp_t * cp) { int tileno, compno, resno, bandno, precno, cblkno, i; - unsigned int x0=0 , y0=0, x1 = 0, y1 = 0, w, h, j; + unsigned int x0=0 , y0=0, x1 = 0, y1 = 0, w, h, j, p, q; tcd_img = img; tcd_cp = cp; tcd_image.tw = cp->tw; @@ -536,8 +536,8 @@ void tcd_init(j2k_image_t * img, j2k_cp_t * cp) // int previous_x0, previous_x1, previous_y0, previous_y1; /* cfr p59 ISO/IEC FDIS15444-1 : 2000 (18 august 2000) */ - int p = tileno % cp->tw; /* si numerotation matricielle .. */ - int q = tileno / cp->tw; /* .. coordonnees de la tile (q,p) q pour ligne et p pour colonne */ + p = tileno % cp->tw; /* si numerotation matricielle .. */ + q = tileno / cp->tw; /* .. coordonnees de la tile (q,p) q pour ligne et p pour colonne */ /* 4 borders of the tile rescale on the image if necessary */ tile->x0 = int_max(cp->tx0 + p * cp->tdx, img->x0); |
