| 261 | |
| 262 | METHODDEF(void) |
| 263 | skip_input_data (j_decompress_ptr cinfo, long num_bytes) |
| 264 | { |
| 265 | iread_ptr src = (iread_ptr) cinfo->src; |
| 266 | |
| 267 | if (num_bytes > 0) { |
| 268 | while (num_bytes > (long) src->pub.bytes_in_buffer) { |
| 269 | num_bytes -= (long) src->pub.bytes_in_buffer; |
| 270 | (void) fill_input_buffer(cinfo); |
| 271 | } |
| 272 | src->pub.next_input_byte += (size_t) num_bytes; |
| 273 | src->pub.bytes_in_buffer -= (size_t) num_bytes; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | |
| 278 | METHODDEF(void) |
nothing calls this directly
no test coverage detected