| 1252 |
#ifdef _DEBUG |
#ifdef _DEBUG |
| 1253 |
for (int j = input_buf_offset; j < input_buf_len; j++) |
for (int j = input_buf_offset; j < input_buf_len; j++) |
| 1254 |
{ |
{ |
| 1255 |
log_debug("input: <--[%u]", (input_buf[j] + 256) % 256); |
log_debug("input: <--[%u]", (unsigned char)(input_buf[j])); |
| 1256 |
} |
} |
| 1257 |
#endif |
#endif |
| 1258 |
|
|
| 1267 |
#ifdef _DEBUG |
#ifdef _DEBUG |
| 1268 |
for (int j = input_conv_offset; j < input_conv_len; j++) |
for (int j = input_conv_offset; j < input_conv_len; j++) |
| 1269 |
{ |
{ |
| 1270 |
log_debug("input_conv: <--[%u]", (input_conv[j] + 256) % 256); |
log_debug("input_conv: <--[%u]", (unsigned char)(input_conv[j])); |
| 1271 |
} |
} |
| 1272 |
#endif |
#endif |
| 1273 |
} |
} |