Lines Matching refs:emit_byte
112 emit_byte (j_compress_ptr cinfo, int val) in emit_byte() function
129 emit_byte(cinfo, 0xFF); in emit_marker()
130 emit_byte(cinfo, (int) mark); in emit_marker()
138 emit_byte(cinfo, (value >> 8) & 0xFF); in emit_2bytes()
139 emit_byte(cinfo, value & 0xFF); in emit_2bytes()
170 emit_byte(cinfo, index + (prec<<4)); in emit_dqt()
176 emit_byte(cinfo, (int) (qval >> 8)); in emit_dqt()
177 emit_byte(cinfo, (int) (qval & 0xFF)); in emit_dqt()
212 emit_byte(cinfo, index); in emit_dht()
215 emit_byte(cinfo, htbl->bits[i]); in emit_dht()
218 emit_byte(cinfo, htbl->huffval[i]); in emit_dht()
261 emit_byte(cinfo, i); in emit_dac()
262 emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4)); in emit_dac()
265 emit_byte(cinfo, i + 0x10); in emit_dac()
266 emit_byte(cinfo, cinfo->arith_ac_K[i]); in emit_dac()
302 emit_byte(cinfo, cinfo->data_precision); in emit_sof()
306 emit_byte(cinfo, cinfo->num_components); in emit_sof()
310 emit_byte(cinfo, compptr->component_id); in emit_sof()
311 emit_byte(cinfo, (compptr->h_samp_factor << 4) + compptr->v_samp_factor); in emit_sof()
312 emit_byte(cinfo, compptr->quant_tbl_no); in emit_sof()
328 emit_byte(cinfo, cinfo->comps_in_scan); in emit_sos()
332 emit_byte(cinfo, compptr->component_id); in emit_sos()
343 emit_byte(cinfo, (td << 4) + ta); in emit_sos()
346 emit_byte(cinfo, cinfo->Ss); in emit_sos()
347 emit_byte(cinfo, cinfo->Se); in emit_sos()
348 emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al); in emit_sos()
372 emit_byte(cinfo, 0x4A); /* Identifier: ASCII "JFIF" */ in emit_jfif_app0()
373 emit_byte(cinfo, 0x46); in emit_jfif_app0()
374 emit_byte(cinfo, 0x49); in emit_jfif_app0()
375 emit_byte(cinfo, 0x46); in emit_jfif_app0()
376 emit_byte(cinfo, 0); in emit_jfif_app0()
377 emit_byte(cinfo, cinfo->JFIF_major_version); /* Version fields */ in emit_jfif_app0()
378 emit_byte(cinfo, cinfo->JFIF_minor_version); in emit_jfif_app0()
379 emit_byte(cinfo, cinfo->density_unit); /* Pixel size information */ in emit_jfif_app0()
382 emit_byte(cinfo, 0); /* No thumbnail image */ in emit_jfif_app0()
383 emit_byte(cinfo, 0); in emit_jfif_app0()
411 emit_byte(cinfo, 0x41); /* Identifier: ASCII "Adobe" */ in emit_adobe_app14()
412 emit_byte(cinfo, 0x64); in emit_adobe_app14()
413 emit_byte(cinfo, 0x6F); in emit_adobe_app14()
414 emit_byte(cinfo, 0x62); in emit_adobe_app14()
415 emit_byte(cinfo, 0x65); in emit_adobe_app14()
421 emit_byte(cinfo, 1); /* Color transform = 1 */ in emit_adobe_app14()
424 emit_byte(cinfo, 2); /* Color transform = 2 */ in emit_adobe_app14()
427 emit_byte(cinfo, 0); /* Color transform = 0 */ in emit_adobe_app14()
457 emit_byte(cinfo, val); in write_marker_byte()