| 56 | /* Read JPEG image from a memory segment */ |
| 57 | |
| 58 | static void init_source(j_decompress_ptr cinfo) {} |
| 59 | static boolean fill_input_buffer(j_decompress_ptr cinfo) { |
| 60 | auto* src = (struct jpeg_source_mgr*)cinfo->src; |
| 61 | return (boolean) !!src->bytes_in_buffer; |
nothing calls this directly
no outgoing calls
no test coverage detected