Lines Matching refs:emit_byte

110 emit_byte (j_compress_ptr cinfo, int val)  in emit_byte()  function
127 emit_byte(cinfo, 0xFF); in emit_marker()
128 emit_byte(cinfo, (int) mark); in emit_marker()
136 emit_byte(cinfo, (value >> 8) & 0xFF); in emit_2bytes()
137 emit_byte(cinfo, value & 0xFF); in emit_2bytes()
169 emit_byte(cinfo, index + (prec<<4)); in emit_dqt()
175 emit_byte(cinfo, (int) (qval >> 8)); in emit_dqt()
176 emit_byte(cinfo, (int) (qval & 0xFF)); in emit_dqt()
211 emit_byte(cinfo, index); in emit_dht()
214 emit_byte(cinfo, htbl->bits[i]); in emit_dht()
217 emit_byte(cinfo, htbl->huffval[i]); in emit_dht()
260 emit_byte(cinfo, i); in emit_dac()
261 emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4)); in emit_dac()
264 emit_byte(cinfo, i + 0x10); in emit_dac()
265 emit_byte(cinfo, cinfo->arith_ac_K[i]); in emit_dac()
298 emit_byte(cinfo, 0x0D); /* ID inverse transform specification */ in emit_lse_ict()
300 emit_byte(cinfo, 3); /* Nt=3 */ in emit_lse_ict()
301 emit_byte(cinfo, cinfo->comp_info[1].component_id); in emit_lse_ict()
302 emit_byte(cinfo, cinfo->comp_info[0].component_id); in emit_lse_ict()
303 emit_byte(cinfo, cinfo->comp_info[2].component_id); in emit_lse_ict()
304 emit_byte(cinfo, 0x80); /* F1: CENTER1=1, NORM1=0 */ in emit_lse_ict()
307 emit_byte(cinfo, 0); /* F2: CENTER2=0, NORM2=0 */ in emit_lse_ict()
310 emit_byte(cinfo, 0); /* F3: CENTER3=0, NORM3=0 */ in emit_lse_ict()
332 emit_byte(cinfo, cinfo->data_precision); in emit_sof()
336 emit_byte(cinfo, cinfo->num_components); in emit_sof()
340 emit_byte(cinfo, compptr->component_id); in emit_sof()
341 emit_byte(cinfo, (compptr->h_samp_factor << 4) + compptr->v_samp_factor); in emit_sof()
342 emit_byte(cinfo, compptr->quant_tbl_no); in emit_sof()
358 emit_byte(cinfo, cinfo->comps_in_scan); in emit_sos()
362 emit_byte(cinfo, compptr->component_id); in emit_sos()
373 emit_byte(cinfo, (td << 4) + ta); in emit_sos()
376 emit_byte(cinfo, cinfo->Ss); in emit_sos()
377 emit_byte(cinfo, cinfo->Se); in emit_sos()
378 emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al); in emit_sos()
390 emit_byte(cinfo, 0); /* Ns */ in emit_pseudo_sos()
392 emit_byte(cinfo, 0); /* Ss */ in emit_pseudo_sos()
393 emit_byte(cinfo, cinfo->block_size * cinfo->block_size - 1); /* Se */ in emit_pseudo_sos()
394 emit_byte(cinfo, 0); /* Ah/Al */ in emit_pseudo_sos()
418 emit_byte(cinfo, 0x4A); /* Identifier: ASCII "JFIF" */ in emit_jfif_app0()
419 emit_byte(cinfo, 0x46); in emit_jfif_app0()
420 emit_byte(cinfo, 0x49); in emit_jfif_app0()
421 emit_byte(cinfo, 0x46); in emit_jfif_app0()
422 emit_byte(cinfo, 0); in emit_jfif_app0()
423 emit_byte(cinfo, cinfo->JFIF_major_version); /* Version fields */ in emit_jfif_app0()
424 emit_byte(cinfo, cinfo->JFIF_minor_version); in emit_jfif_app0()
425 emit_byte(cinfo, cinfo->density_unit); /* Pixel size information */ in emit_jfif_app0()
428 emit_byte(cinfo, 0); /* No thumbnail image */ in emit_jfif_app0()
429 emit_byte(cinfo, 0); in emit_jfif_app0()
457 emit_byte(cinfo, 0x41); /* Identifier: ASCII "Adobe" */ in emit_adobe_app14()
458 emit_byte(cinfo, 0x64); in emit_adobe_app14()
459 emit_byte(cinfo, 0x6F); in emit_adobe_app14()
460 emit_byte(cinfo, 0x62); in emit_adobe_app14()
461 emit_byte(cinfo, 0x65); in emit_adobe_app14()
467 emit_byte(cinfo, 1); /* Color transform = 1 */ in emit_adobe_app14()
470 emit_byte(cinfo, 2); /* Color transform = 2 */ in emit_adobe_app14()
473 emit_byte(cinfo, 0); /* Color transform = 0 */ in emit_adobe_app14()
503 emit_byte(cinfo, val); in write_marker_byte()