00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #define JPEG_INTERNALS
00013 #include "jinclude.h"
00014 #include "jpeglib.h"
00015
00016
00017 typedef enum {
00018 M_SOF0 = 0xc0,
00019 M_SOF1 = 0xc1,
00020 M_SOF2 = 0xc2,
00021 M_SOF3 = 0xc3,
00022
00023 M_SOF5 = 0xc5,
00024 M_SOF6 = 0xc6,
00025 M_SOF7 = 0xc7,
00026
00027 M_JPG = 0xc8,
00028 M_SOF9 = 0xc9,
00029 M_SOF10 = 0xca,
00030 M_SOF11 = 0xcb,
00031
00032 M_SOF13 = 0xcd,
00033 M_SOF14 = 0xce,
00034 M_SOF15 = 0xcf,
00035
00036 M_DHT = 0xc4,
00037
00038 M_DAC = 0xcc,
00039
00040 M_RST0 = 0xd0,
00041 M_RST1 = 0xd1,
00042 M_RST2 = 0xd2,
00043 M_RST3 = 0xd3,
00044 M_RST4 = 0xd4,
00045 M_RST5 = 0xd5,
00046 M_RST6 = 0xd6,
00047 M_RST7 = 0xd7,
00048
00049 M_SOI = 0xd8,
00050 M_EOI = 0xd9,
00051 M_SOS = 0xda,
00052 M_DQT = 0xdb,
00053 M_DNL = 0xdc,
00054 M_DRI = 0xdd,
00055 M_DHP = 0xde,
00056 M_EXP = 0xdf,
00057
00058 M_APP0 = 0xe0,
00059 M_APP1 = 0xe1,
00060 M_APP2 = 0xe2,
00061 M_APP3 = 0xe3,
00062 M_APP4 = 0xe4,
00063 M_APP5 = 0xe5,
00064 M_APP6 = 0xe6,
00065 M_APP7 = 0xe7,
00066 M_APP8 = 0xe8,
00067 M_APP9 = 0xe9,
00068 M_APP10 = 0xea,
00069 M_APP11 = 0xeb,
00070 M_APP12 = 0xec,
00071 M_APP13 = 0xed,
00072 M_APP14 = 0xee,
00073 M_APP15 = 0xef,
00074
00075 M_JPG0 = 0xf0,
00076 M_JPG13 = 0xfd,
00077 M_COM = 0xfe,
00078
00079 M_TEM = 0x01,
00080
00081 M_ERROR = 0x100
00082 } JPEG_MARKER;
00083
00084
00085
00086
00087 typedef struct {
00088 struct jpeg_marker_writer pub;
00089
00090 unsigned int last_restart_interval;
00091 } my_marker_writer;
00092
00093 typedef my_marker_writer * my_marker_ptr;
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108 LOCAL(void)
00109 emit_byte (j_compress_ptr cinfo, int val)
00110
00111 {
00112 struct jpeg_destination_mgr * dest = cinfo->dest;
00113
00114 *(dest->next_output_byte)++ = (JOCTET) val;
00115 if (--dest->free_in_buffer == 0) {
00116 if (! (*dest->empty_output_buffer) (cinfo))
00117 ERREXIT(cinfo, JERR_CANT_SUSPEND);
00118 }
00119 }
00120
00121
00122 LOCAL(void)
00123 emit_marker (j_compress_ptr cinfo, JPEG_MARKER mark)
00124
00125 {
00126 emit_byte(cinfo, 0xFF);
00127 emit_byte(cinfo, (int) mark);
00128 }
00129
00130
00131 LOCAL(void)
00132 emit_2bytes (j_compress_ptr cinfo, int value)
00133
00134 {
00135 emit_byte(cinfo, (value >> 8) & 0xFF);
00136 emit_byte(cinfo, value & 0xFF);
00137 }
00138
00139
00140
00141
00142
00143
00144 LOCAL(int)
00145 emit_dqt (j_compress_ptr cinfo, int index)
00146
00147
00148 {
00149 JQUANT_TBL * qtbl = cinfo->quant_tbl_ptrs[index];
00150 int prec;
00151 int i;
00152
00153 if (qtbl == NULL)
00154 ERREXIT1(cinfo, JERR_NO_QUANT_TABLE, index);
00155
00156 prec = 0;
00157 for (i = 0; i <= cinfo->lim_Se; i++) {
00158 if (qtbl->quantval[cinfo->natural_order[i]] > 255)
00159 prec = 1;
00160 }
00161
00162 if (! qtbl->sent_table) {
00163 emit_marker(cinfo, M_DQT);
00164
00165 emit_2bytes(cinfo,
00166 prec ? cinfo->lim_Se * 2 + 2 + 1 + 2 : cinfo->lim_Se + 1 + 1 + 2);
00167
00168 emit_byte(cinfo, index + (prec<<4));
00169
00170 for (i = 0; i <= cinfo->lim_Se; i++) {
00171
00172 unsigned int qval = qtbl->quantval[cinfo->natural_order[i]];
00173 if (prec)
00174 emit_byte(cinfo, (int) (qval >> 8));
00175 emit_byte(cinfo, (int) (qval & 0xFF));
00176 }
00177
00178 qtbl->sent_table = TRUE;
00179 }
00180
00181 return prec;
00182 }
00183
00184
00185 LOCAL(void)
00186 emit_dht (j_compress_ptr cinfo, int index, boolean is_ac)
00187
00188 {
00189 JHUFF_TBL * htbl;
00190 int length, i;
00191
00192 if (is_ac) {
00193 htbl = cinfo->ac_huff_tbl_ptrs[index];
00194 index += 0x10;
00195 } else {
00196 htbl = cinfo->dc_huff_tbl_ptrs[index];
00197 }
00198
00199 if (htbl == NULL)
00200 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, index);
00201
00202 if (! htbl->sent_table) {
00203 emit_marker(cinfo, M_DHT);
00204
00205 length = 0;
00206 for (i = 1; i <= 16; i++)
00207 length += htbl->bits[i];
00208
00209 emit_2bytes(cinfo, length + 2 + 1 + 16);
00210 emit_byte(cinfo, index);
00211
00212 for (i = 1; i <= 16; i++)
00213 emit_byte(cinfo, htbl->bits[i]);
00214
00215 for (i = 0; i < length; i++)
00216 emit_byte(cinfo, htbl->huffval[i]);
00217
00218 htbl->sent_table = TRUE;
00219 }
00220 }
00221
00222
00223 LOCAL(void)
00224 emit_dac (j_compress_ptr cinfo)
00225
00226
00227
00228 {
00229 #ifdef C_ARITH_CODING_SUPPORTED
00230 char dc_in_use[NUM_ARITH_TBLS];
00231 char ac_in_use[NUM_ARITH_TBLS];
00232 int length, i;
00233 jpeg_component_info *compptr;
00234
00235 for (i = 0; i < NUM_ARITH_TBLS; i++)
00236 dc_in_use[i] = ac_in_use[i] = 0;
00237
00238 for (i = 0; i < cinfo->comps_in_scan; i++) {
00239 compptr = cinfo->cur_comp_info[i];
00240
00241 if (cinfo->Ss == 0 && cinfo->Ah == 0)
00242 dc_in_use[compptr->dc_tbl_no] = 1;
00243
00244 if (cinfo->Se)
00245 ac_in_use[compptr->ac_tbl_no] = 1;
00246 }
00247
00248 length = 0;
00249 for (i = 0; i < NUM_ARITH_TBLS; i++)
00250 length += dc_in_use[i] + ac_in_use[i];
00251
00252 emit_marker(cinfo, M_DAC);
00253
00254 emit_2bytes(cinfo, length*2 + 2);
00255
00256 for (i = 0; i < NUM_ARITH_TBLS; i++) {
00257 if (dc_in_use[i]) {
00258 emit_byte(cinfo, i);
00259 emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4));
00260 }
00261 if (ac_in_use[i]) {
00262 emit_byte(cinfo, i + 0x10);
00263 emit_byte(cinfo, cinfo->arith_ac_K[i]);
00264 }
00265 }
00266 #endif
00267 }
00268
00269
00270 LOCAL(void)
00271 emit_dri (j_compress_ptr cinfo)
00272
00273 {
00274 emit_marker(cinfo, M_DRI);
00275
00276 emit_2bytes(cinfo, 4);
00277
00278 emit_2bytes(cinfo, (int) cinfo->restart_interval);
00279 }
00280
00281
00282 LOCAL(void)
00283 emit_sof (j_compress_ptr cinfo, JPEG_MARKER code)
00284
00285 {
00286 int ci;
00287 jpeg_component_info *compptr;
00288
00289 emit_marker(cinfo, code);
00290
00291 emit_2bytes(cinfo, 3 * cinfo->num_components + 2 + 5 + 1);
00292
00293
00294 if ((long) cinfo->jpeg_height > 65535L ||
00295 (long) cinfo->jpeg_width > 65535L)
00296 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) 65535);
00297
00298 emit_byte(cinfo, cinfo->data_precision);
00299 emit_2bytes(cinfo, (int) cinfo->jpeg_height);
00300 emit_2bytes(cinfo, (int) cinfo->jpeg_width);
00301
00302 emit_byte(cinfo, cinfo->num_components);
00303
00304 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
00305 ci++, compptr++) {
00306 emit_byte(cinfo, compptr->component_id);
00307 emit_byte(cinfo, (compptr->h_samp_factor << 4) + compptr->v_samp_factor);
00308 emit_byte(cinfo, compptr->quant_tbl_no);
00309 }
00310 }
00311
00312
00313 LOCAL(void)
00314 emit_sos (j_compress_ptr cinfo)
00315
00316 {
00317 int i, td, ta;
00318 jpeg_component_info *compptr;
00319
00320 emit_marker(cinfo, M_SOS);
00321
00322 emit_2bytes(cinfo, 2 * cinfo->comps_in_scan + 2 + 1 + 3);
00323
00324 emit_byte(cinfo, cinfo->comps_in_scan);
00325
00326 for (i = 0; i < cinfo->comps_in_scan; i++) {
00327 compptr = cinfo->cur_comp_info[i];
00328 emit_byte(cinfo, compptr->component_id);
00329
00330
00331
00332
00333
00334
00335 td = cinfo->Ss == 0 && cinfo->Ah == 0 ? compptr->dc_tbl_no : 0;
00336
00337 ta = cinfo->Se ? compptr->ac_tbl_no : 0;
00338
00339 emit_byte(cinfo, (td << 4) + ta);
00340 }
00341
00342 emit_byte(cinfo, cinfo->Ss);
00343 emit_byte(cinfo, cinfo->Se);
00344 emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al);
00345 }
00346
00347
00348 LOCAL(void)
00349 emit_pseudo_sos (j_compress_ptr cinfo)
00350
00351 {
00352 emit_marker(cinfo, M_SOS);
00353
00354 emit_2bytes(cinfo, 2 + 1 + 3);
00355
00356 emit_byte(cinfo, 0);
00357
00358 emit_byte(cinfo, 0);
00359 emit_byte(cinfo, cinfo->block_size * cinfo->block_size - 1);
00360 emit_byte(cinfo, 0);
00361 }
00362
00363
00364 LOCAL(void)
00365 emit_jfif_app0 (j_compress_ptr cinfo)
00366
00367 {
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380 emit_marker(cinfo, M_APP0);
00381
00382 emit_2bytes(cinfo, 2 + 4 + 1 + 2 + 1 + 2 + 2 + 1 + 1);
00383
00384 emit_byte(cinfo, 0x4A);
00385 emit_byte(cinfo, 0x46);
00386 emit_byte(cinfo, 0x49);
00387 emit_byte(cinfo, 0x46);
00388 emit_byte(cinfo, 0);
00389 emit_byte(cinfo, cinfo->JFIF_major_version);
00390 emit_byte(cinfo, cinfo->JFIF_minor_version);
00391 emit_byte(cinfo, cinfo->density_unit);
00392 emit_2bytes(cinfo, (int) cinfo->X_density);
00393 emit_2bytes(cinfo, (int) cinfo->Y_density);
00394 emit_byte(cinfo, 0);
00395 emit_byte(cinfo, 0);
00396 }
00397
00398
00399 LOCAL(void)
00400 emit_adobe_app14 (j_compress_ptr cinfo)
00401
00402 {
00403
00404
00405
00406
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419 emit_marker(cinfo, M_APP14);
00420
00421 emit_2bytes(cinfo, 2 + 5 + 2 + 2 + 2 + 1);
00422
00423 emit_byte(cinfo, 0x41);
00424 emit_byte(cinfo, 0x64);
00425 emit_byte(cinfo, 0x6F);
00426 emit_byte(cinfo, 0x62);
00427 emit_byte(cinfo, 0x65);
00428 emit_2bytes(cinfo, 100);
00429 emit_2bytes(cinfo, 0);
00430 emit_2bytes(cinfo, 0);
00431 switch (cinfo->jpeg_color_space) {
00432 case JCS_YCbCr:
00433 emit_byte(cinfo, 1);
00434 break;
00435 case JCS_YCCK:
00436 emit_byte(cinfo, 2);
00437 break;
00438 default:
00439 emit_byte(cinfo, 0);
00440 break;
00441 }
00442 }
00443
00444
00445
00446
00447
00448
00449
00450
00451
00452
00453 METHODDEF(void)
00454 write_marker_header (j_compress_ptr cinfo, int marker, unsigned int datalen)
00455
00456 {
00457 if (datalen > (unsigned int) 65533)
00458 ERREXIT(cinfo, JERR_BAD_LENGTH);
00459
00460 emit_marker(cinfo, (JPEG_MARKER) marker);
00461
00462 emit_2bytes(cinfo, (int) (datalen + 2));
00463 }
00464
00465 METHODDEF(void)
00466 write_marker_byte (j_compress_ptr cinfo, int val)
00467
00468 {
00469 emit_byte(cinfo, val);
00470 }
00471
00472
00473
00474
00475
00476
00477
00478
00479
00480
00481
00482
00483
00484 METHODDEF(void)
00485 write_file_header (j_compress_ptr cinfo)
00486 {
00487 my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
00488
00489 emit_marker(cinfo, M_SOI);
00490
00491
00492 marker->last_restart_interval = 0;
00493
00494 if (cinfo->write_JFIF_header)
00495 emit_jfif_app0(cinfo);
00496 if (cinfo->write_Adobe_marker)
00497 emit_adobe_app14(cinfo);
00498 }
00499
00500
00501
00502
00503
00504
00505
00506
00507
00508
00509 METHODDEF(void)
00510 write_frame_header (j_compress_ptr cinfo)
00511 {
00512 int ci, prec;
00513 boolean is_baseline;
00514 jpeg_component_info *compptr;
00515
00516
00517
00518
00519 prec = 0;
00520 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
00521 ci++, compptr++) {
00522 prec += emit_dqt(cinfo, compptr->quant_tbl_no);
00523 }
00524
00525
00526
00527
00528
00529 if (cinfo->arith_code || cinfo->progressive_mode ||
00530 cinfo->data_precision != 8 || cinfo->block_size != DCTSIZE) {
00531 is_baseline = FALSE;
00532 } else {
00533 is_baseline = TRUE;
00534 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
00535 ci++, compptr++) {
00536 if (compptr->dc_tbl_no > 1 || compptr->ac_tbl_no > 1)
00537 is_baseline = FALSE;
00538 }
00539 if (prec && is_baseline) {
00540 is_baseline = FALSE;
00541
00542 TRACEMS(cinfo, 0, JTRC_16BIT_TABLES);
00543 }
00544 }
00545
00546
00547 if (cinfo->arith_code) {
00548 if (cinfo->progressive_mode)
00549 emit_sof(cinfo, M_SOF10);
00550 else
00551 emit_sof(cinfo, M_SOF9);
00552 } else {
00553 if (cinfo->progressive_mode)
00554 emit_sof(cinfo, M_SOF2);
00555 else if (is_baseline)
00556 emit_sof(cinfo, M_SOF0);
00557 else
00558 emit_sof(cinfo, M_SOF1);
00559 }
00560
00561
00562 if (cinfo->progressive_mode && cinfo->block_size != DCTSIZE)
00563 emit_pseudo_sos(cinfo);
00564 }
00565
00566
00567
00568
00569
00570
00571
00572
00573 METHODDEF(void)
00574 write_scan_header (j_compress_ptr cinfo)
00575 {
00576 my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
00577 int i;
00578 jpeg_component_info *compptr;
00579
00580 if (cinfo->arith_code) {
00581
00582
00583
00584
00585 emit_dac(cinfo);
00586 } else {
00587
00588
00589
00590 for (i = 0; i < cinfo->comps_in_scan; i++) {
00591 compptr = cinfo->cur_comp_info[i];
00592
00593 if (cinfo->Ss == 0 && cinfo->Ah == 0)
00594 emit_dht(cinfo, compptr->dc_tbl_no, FALSE);
00595
00596 if (cinfo->Se)
00597 emit_dht(cinfo, compptr->ac_tbl_no, TRUE);
00598 }
00599 }
00600
00601
00602
00603
00604 if (cinfo->restart_interval != marker->last_restart_interval) {
00605 emit_dri(cinfo);
00606 marker->last_restart_interval = cinfo->restart_interval;
00607 }
00608
00609 emit_sos(cinfo);
00610 }
00611
00612
00613
00614
00615
00616
00617 METHODDEF(void)
00618 write_file_trailer (j_compress_ptr cinfo)
00619 {
00620 emit_marker(cinfo, M_EOI);
00621 }
00622
00623
00624
00625
00626
00627
00628
00629
00630
00631 METHODDEF(void)
00632 write_tables_only (j_compress_ptr cinfo)
00633 {
00634 int i;
00635
00636 emit_marker(cinfo, M_SOI);
00637
00638 for (i = 0; i < NUM_QUANT_TBLS; i++) {
00639 if (cinfo->quant_tbl_ptrs[i] != NULL)
00640 (void) emit_dqt(cinfo, i);
00641 }
00642
00643 if (! cinfo->arith_code) {
00644 for (i = 0; i < NUM_HUFF_TBLS; i++) {
00645 if (cinfo->dc_huff_tbl_ptrs[i] != NULL)
00646 emit_dht(cinfo, i, FALSE);
00647 if (cinfo->ac_huff_tbl_ptrs[i] != NULL)
00648 emit_dht(cinfo, i, TRUE);
00649 }
00650 }
00651
00652 emit_marker(cinfo, M_EOI);
00653 }
00654
00655
00656
00657
00658
00659
00660 GLOBAL(void)
00661 jinit_marker_writer (j_compress_ptr cinfo)
00662 {
00663 my_marker_ptr marker;
00664
00665
00666 marker = (my_marker_ptr)
00667 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
00668 SIZEOF(my_marker_writer));
00669 cinfo->marker = (struct jpeg_marker_writer *) marker;
00670
00671 marker->pub.write_file_header = write_file_header;
00672 marker->pub.write_frame_header = write_frame_header;
00673 marker->pub.write_scan_header = write_scan_header;
00674 marker->pub.write_file_trailer = write_file_trailer;
00675 marker->pub.write_tables_only = write_tables_only;
00676 marker->pub.write_marker_header = write_marker_header;
00677 marker->pub.write_marker_byte = write_marker_byte;
00678
00679 marker->last_restart_interval = 0;
00680 }