| 180 | } |
| 181 | |
| 182 | static boolean empty_output_buffer(j_compress_ptr cinfo) { |
| 183 | mem_dest_ptr dest = (mem_dest_ptr) cinfo->dest; |
| 184 | dest->pub.next_output_byte = dest->buf; |
| 185 | dest->pub.free_in_buffer = dest->bufsize; |
| 186 | return FALSE; |
| 187 | ERREXIT(cinfo, JERR_BUFFER_SIZE); |
| 188 | } |
| 189 | |
| 190 | static void term_destination(j_compress_ptr cinfo) { |
| 191 | mem_dest_ptr dest = (mem_dest_ptr) cinfo->dest; |
nothing calls this directly
no outgoing calls
no test coverage detected