Lines Matching defs:pub
1121 struct jpeg_source_mgr pub;
1145 src->pub.next_input_byte = src->buffer;
1146 src->pub.bytes_in_buffer = 1024;
1159 while (num_bytes > (long) src->pub.bytes_in_buffer)
1161 num_bytes -= (long) src->pub.bytes_in_buffer;
1165 src->pub.next_input_byte += (size_t) num_bytes;
1166 src->pub.bytes_in_buffer -= (size_t) num_bytes;
1252 src->pub.init_source = sanei_jpeg_init_source;
1253 src->pub.fill_input_buffer = sanei_jpeg_fill_input_buffer;
1254 src->pub.skip_input_data = sanei_jpeg_skip_input_data;
1255 src->pub.resync_to_restart = jpeg_resync_to_restart; /* default */
1256 src->pub.term_source = sanei_jpeg_term_source;
1257 src->pub.bytes_in_buffer = 0;
1258 src->pub.next_input_byte = NULL;