Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.3 KiB

  1. #include "stdafx.h"
  2. #pragma hdrstop
  3. /*
  4. * jcinit.c
  5. *
  6. * Copyright (C) 1991-1996, Thomas G. Lane.
  7. * This file is part of the Independent JPEG Group's software.
  8. * For conditions of distribution and use, see the accompanying README file.
  9. *
  10. * This file contains initialization logic for the JPEG compressor.
  11. * This routine is in charge of selecting the modules to be executed and
  12. * making an initialization call to each one.
  13. *
  14. * Logically, this code belongs in jcmaster.c. It's split out because
  15. * linking this routine implies linking the entire compression library.
  16. * For a transcoding-only application, we want to be able to use jcmaster.c
  17. * without linking in the whole library.
  18. */
  19. #define JPEG_INTERNALS
  20. #include "jinclude.h"
  21. #include "jpeglib.h"
  22. /*
  23. * Master selection of compression modules.
  24. * This is done once at the start of processing an image. We determine
  25. * which modules will be used and give them appropriate initialization calls.
  26. */
  27. GLOBAL(void)
  28. jinit_compress_master (j_compress_ptr cinfo)
  29. {
  30. /* Initialize master control (includes parameter checking/processing) */
  31. jinit_c_master_control(cinfo, FALSE /* full compression */);
  32. /* Preprocessing */
  33. if (! cinfo->raw_data_in) {
  34. jinit_color_converter(cinfo);
  35. jinit_downsampler(cinfo);
  36. jinit_c_prep_controller(cinfo, FALSE /* never need full buffer here */);
  37. }
  38. /* Forward DCT */
  39. jinit_forward_dct(cinfo);
  40. /* Entropy encoding: either Huffman or arithmetic coding. */
  41. if (cinfo->arith_code) {
  42. ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
  43. } else {
  44. if (cinfo->progressive_mode) {
  45. #ifdef C_PROGRESSIVE_SUPPORTED
  46. jinit_phuff_encoder(cinfo);
  47. #else
  48. ERREXIT(cinfo, JERR_NOT_COMPILED);
  49. #endif
  50. } else
  51. jinit_huff_encoder(cinfo);
  52. }
  53. /* Need a full-image coefficient buffer in any multi-pass mode. */
  54. jinit_c_coef_controller(cinfo,
  55. (cinfo->num_scans > 1 || cinfo->optimize_coding));
  56. jinit_c_main_controller(cinfo, FALSE /* never need full buffer here */);
  57. jinit_marker_writer(cinfo);
  58. /* We can now tell the memory manager to allocate virtual arrays. */
  59. (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
  60. /* Write the datastream header (SOI) immediately.
  61. * Frame and scan headers are postponed till later.
  62. * This lets application insert special markers after the SOI.
  63. */
  64. (*cinfo->marker->write_file_header) (cinfo);
  65. }