| 410 | int crop_w = height ? ((dst_w - img_w) / 2) * 3 : 0; |
| 411 | int crop_h = height ? (dst_h - img_h) / 2 : 0; |
| 412 | loopirev(img_h) |
| 413 | { // flip image |
| 414 | memcpy(dst, &tmpdst[tmpdstpitch * (i + crop_h) + crop_w], image->pitch); |
| 415 | dst += image->pitch; |
| 416 | } |
| 417 | } |
| 418 | entropy_add_block(tmpdst, tmpdstsize); |
| 419 | delete[] tmpdst; |
no outgoing calls
no test coverage detected