]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/jpeg6/jdmainct.cpp
more eol-style
[xonotic/netradiant.git] / libs / jpeg6 / jdmainct.cpp
1 /*
2
3  * jdmainct.c
4
5  *
6
7  * Copyright (C) 1994-1995, Thomas G. Lane.
8
9  * This file is part of the Independent JPEG Group's software.
10
11  * For conditions of distribution and use, see the accompanying README file.
12
13  *
14
15  * This file contains the main buffer controller for decompression.
16
17  * The main buffer lies between the JPEG decompressor proper and the
18
19  * post-processor; it holds downsampled data in the JPEG colorspace.
20
21  *
22
23  * Note that this code is bypassed in raw-data mode, since the application
24
25  * supplies the equivalent of the main buffer in that case.
26
27  */
28
29
30
31 #define JPEG_INTERNALS
32
33 #include "jinclude.h"
34
35 #include "radiant_jpeglib.h"
36
37
38
39
40
41 /*
42
43  * In the current system design, the main buffer need never be a full-image
44
45  * buffer; any full-height buffers will be found inside the coefficient or
46
47  * postprocessing controllers.  Nonetheless, the main controller is not
48
49  * trivial.  Its responsibility is to provide context rows for upsampling/
50
51  * rescaling, and doing this in an efficient fashion is a bit tricky.
52
53  *
54
55  * Postprocessor input data is counted in "row groups".  A row group
56
57  * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size)
58
59  * sample rows of each component.  (We require DCT_scaled_size values to be
60
61  * chosen such that these numbers are integers.  In practice DCT_scaled_size
62
63  * values will likely be powers of two, so we actually have the stronger
64
65  * condition that DCT_scaled_size / min_DCT_scaled_size is an integer.)
66
67  * Upsampling will typically produce max_v_samp_factor pixel rows from each
68
69  * row group (times any additional scale factor that the upsampler is
70
71  * applying).
72
73  *
74
75  * The coefficient controller will deliver data to us one iMCU row at a time;
76
77  * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or
78
79  * exactly min_DCT_scaled_size row groups.  (This amount of data corresponds
80
81  * to one row of MCUs when the image is fully interleaved.)  Note that the
82
83  * number of sample rows varies across components, but the number of row
84
85  * groups does not.  Some garbage sample rows may be included in the last iMCU
86
87  * row at the bottom of the image.
88
89  *
90
91  * Depending on the vertical scaling algorithm used, the upsampler may need
92
93  * access to the sample row(s) above and below its current input row group.
94
95  * The upsampler is required to set need_context_rows TRUE at global selection
96
97  * time if so.  When need_context_rows is FALSE, this controller can simply
98
99  * obtain one iMCU row at a time from the coefficient controller and dole it
100
101  * out as row groups to the postprocessor.
102
103  *
104
105  * When need_context_rows is TRUE, this controller guarantees that the buffer
106
107  * passed to postprocessing contains at least one row group's worth of samples
108
109  * above and below the row group(s) being processed.  Note that the context
110
111  * rows "above" the first passed row group appear at negative row offsets in
112
113  * the passed buffer.  At the top and bottom of the image, the required
114
115  * context rows are manufactured by duplicating the first or last real sample
116
117  * row; this avoids having special cases in the upsampling inner loops.
118
119  *
120
121  * The amount of context is fixed at one row group just because that's a
122
123  * convenient number for this controller to work with.  The existing
124
125  * upsamplers really only need one sample row of context.  An upsampler
126
127  * supporting arbitrary output rescaling might wish for more than one row
128
129  * group of context when shrinking the image; tough, we don't handle that.
130
131  * (This is justified by the assumption that downsizing will be handled mostly
132
133  * by adjusting the DCT_scaled_size values, so that the actual scale factor at
134
135  * the upsample step needn't be much less than one.)
136
137  *
138
139  * To provide the desired context, we have to retain the last two row groups
140
141  * of one iMCU row while reading in the next iMCU row.  (The last row group
142
143  * can't be processed until we have another row group for its below-context,
144
145  * and so we have to save the next-to-last group too for its above-context.)
146
147  * We could do this most simply by copying data around in our buffer, but
148
149  * that'd be very slow.  We can avoid copying any data by creating a rather
150
151  * strange pointer structure.  Here's how it works.  We allocate a workspace
152
153  * consisting of M+2 row groups (where M = min_DCT_scaled_size is the number
154
155  * of row groups per iMCU row).  We create two sets of redundant pointers to
156
157  * the workspace.  Labeling the physical row groups 0 to M+1, the synthesized
158
159  * pointer lists look like this:
160
161  *                   M+1                          M-1
162
163  * master pointer --> 0         master pointer --> 0
164
165  *                    1                            1
166
167  *                   ...                          ...
168
169  *                   M-3                          M-3
170
171  *                   M-2                           M
172
173  *                   M-1                          M+1
174
175  *                    M                           M-2
176
177  *                   M+1                          M-1
178
179  *                    0                            0
180
181  * We read alternate iMCU rows using each master pointer; thus the last two
182
183  * row groups of the previous iMCU row remain un-overwritten in the workspace.
184
185  * The pointer lists are set up so that the required context rows appear to
186
187  * be adjacent to the proper places when we pass the pointer lists to the
188
189  * upsampler.
190
191  *
192
193  * The above pictures describe the normal state of the pointer lists.
194
195  * At top and bottom of the image, we diddle the pointer lists to duplicate
196
197  * the first or last sample row as necessary (this is cheaper than copying
198
199  * sample rows around).
200
201  *
202
203  * This scheme breaks down if M < 2, ie, min_DCT_scaled_size is 1.  In that
204
205  * situation each iMCU row provides only one row group so the buffering logic
206
207  * must be different (eg, we must read two iMCU rows before we can emit the
208
209  * first row group).  For now, we simply do not support providing context
210
211  * rows when min_DCT_scaled_size is 1.  That combination seems unlikely to
212
213  * be worth providing --- if someone wants a 1/8th-size preview, they probably
214
215  * want it quick and dirty, so a context-free upsampler is sufficient.
216
217  */
218
219
220
221
222
223 /* Private buffer controller object */
224
225
226
227 typedef struct {
228
229   struct jpeg_d_main_controller pub; /* public fields */
230
231
232
233   /* Pointer to allocated workspace (M or M+2 row groups). */
234
235   JSAMPARRAY buffer[MAX_COMPONENTS];
236
237
238
239   boolean buffer_full;          /* Have we gotten an iMCU row from decoder? */
240
241   JDIMENSION rowgroup_ctr;      /* counts row groups output to postprocessor */
242
243
244
245   /* Remaining fields are only used in the context case. */
246
247
248
249   /* These are the master pointers to the funny-order pointer lists. */
250
251   JSAMPIMAGE xbuffer[2];        /* pointers to weird pointer lists */
252
253
254
255   int whichptr;                 /* indicates which pointer set is now in use */
256
257   int context_state;            /* process_data state machine status */
258
259   JDIMENSION rowgroups_avail;   /* row groups available to postprocessor */
260
261   JDIMENSION iMCU_row_ctr;      /* counts iMCU rows to detect image top/bot */
262
263 } my_main_controller;
264
265
266
267 typedef my_main_controller * my_main_ptr;
268
269
270
271 /* context_state values: */
272
273 #define CTX_PREPARE_FOR_IMCU    0       /* need to prepare for MCU row */
274
275 #define CTX_PROCESS_IMCU        1       /* feeding iMCU to postprocessor */
276
277 #define CTX_POSTPONED_ROW       2       /* feeding postponed row group */
278
279
280
281
282
283 /* Forward declarations */
284
285 METHODDEF void process_data_simple_main
286
287         JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
288
289              JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
290
291 METHODDEF void process_data_context_main
292
293         JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
294
295              JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
296
297 #ifdef QUANT_2PASS_SUPPORTED
298
299 METHODDEF void process_data_crank_post
300
301         JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
302
303              JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
304
305 #endif
306
307
308
309
310
311 LOCAL void
312
313 alloc_funny_pointers (j_decompress_ptr cinfo)
314
315 /* Allocate space for the funny pointer lists.
316
317  * This is done only once, not once per pass.
318
319  */
320
321 {
322
323   my_main_ptr main = (my_main_ptr) cinfo->main;
324
325   int ci, rgroup;
326
327   int M = cinfo->min_DCT_scaled_size;
328
329   jpeg_component_info *compptr;
330
331   JSAMPARRAY xbuf;
332
333
334
335   /* Get top-level space for component array pointers.
336
337    * We alloc both arrays with one call to save a few cycles.
338
339    */
340
341   main->xbuffer[0] = (JSAMPIMAGE)
342
343     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
344
345                                 cinfo->num_components * 2 * SIZEOF(JSAMPARRAY));
346
347   main->xbuffer[1] = main->xbuffer[0] + cinfo->num_components;
348
349
350
351   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
352
353        ci++, compptr++) {
354
355     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
356
357       cinfo->min_DCT_scaled_size; /* height of a row group of component */
358
359     /* Get space for pointer lists --- M+4 row groups in each list.
360
361      * We alloc both pointer lists with one call to save a few cycles.
362
363      */
364
365     xbuf = (JSAMPARRAY)
366
367       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
368
369                                   2 * (rgroup * (M + 4)) * SIZEOF(JSAMPROW));
370
371     xbuf += rgroup;             /* want one row group at negative offsets */
372
373     main->xbuffer[0][ci] = xbuf;
374
375     xbuf += rgroup * (M + 4);
376
377     main->xbuffer[1][ci] = xbuf;
378
379   }
380
381 }
382
383
384
385
386
387 LOCAL void
388
389 make_funny_pointers (j_decompress_ptr cinfo)
390
391 /* Create the funny pointer lists discussed in the comments above.
392
393  * The actual workspace is already allocated (in main->buffer),
394
395  * and the space for the pointer lists is allocated too.
396
397  * This routine just fills in the curiously ordered lists.
398
399  * This will be repeated at the beginning of each pass.
400
401  */
402
403 {
404
405   my_main_ptr main = (my_main_ptr) cinfo->main;
406
407   int ci, i, rgroup;
408
409   int M = cinfo->min_DCT_scaled_size;
410
411   jpeg_component_info *compptr;
412
413   JSAMPARRAY buf, xbuf0, xbuf1;
414
415
416
417   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
418
419        ci++, compptr++) {
420
421     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
422
423       cinfo->min_DCT_scaled_size; /* height of a row group of component */
424
425     xbuf0 = main->xbuffer[0][ci];
426
427     xbuf1 = main->xbuffer[1][ci];
428
429     /* First copy the workspace pointers as-is */
430
431     buf = main->buffer[ci];
432
433     for (i = 0; i < rgroup * (M + 2); i++) {
434
435       xbuf0[i] = xbuf1[i] = buf[i];
436
437     }
438
439     /* In the second list, put the last four row groups in swapped order */
440
441     for (i = 0; i < rgroup * 2; i++) {
442
443       xbuf1[rgroup*(M-2) + i] = buf[rgroup*M + i];
444
445       xbuf1[rgroup*M + i] = buf[rgroup*(M-2) + i];
446
447     }
448
449     /* The wraparound pointers at top and bottom will be filled later
450
451      * (see set_wraparound_pointers, below).  Initially we want the "above"
452
453      * pointers to duplicate the first actual data line.  This only needs
454
455      * to happen in xbuffer[0].
456
457      */
458
459     for (i = 0; i < rgroup; i++) {
460
461       xbuf0[i - rgroup] = xbuf0[0];
462
463     }
464
465   }
466
467 }
468
469
470
471
472
473 LOCAL void
474
475 set_wraparound_pointers (j_decompress_ptr cinfo)
476
477 /* Set up the "wraparound" pointers at top and bottom of the pointer lists.
478
479  * This changes the pointer list state from top-of-image to the normal state.
480
481  */
482
483 {
484
485   my_main_ptr main = (my_main_ptr) cinfo->main;
486
487   int ci, i, rgroup;
488
489   int M = cinfo->min_DCT_scaled_size;
490
491   jpeg_component_info *compptr;
492
493   JSAMPARRAY xbuf0, xbuf1;
494
495
496
497   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
498
499        ci++, compptr++) {
500
501     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
502
503       cinfo->min_DCT_scaled_size; /* height of a row group of component */
504
505     xbuf0 = main->xbuffer[0][ci];
506
507     xbuf1 = main->xbuffer[1][ci];
508
509     for (i = 0; i < rgroup; i++) {
510
511       xbuf0[i - rgroup] = xbuf0[rgroup*(M+1) + i];
512
513       xbuf1[i - rgroup] = xbuf1[rgroup*(M+1) + i];
514
515       xbuf0[rgroup*(M+2) + i] = xbuf0[i];
516
517       xbuf1[rgroup*(M+2) + i] = xbuf1[i];
518
519     }
520
521   }
522
523 }
524
525
526
527
528
529 LOCAL void
530
531 set_bottom_pointers (j_decompress_ptr cinfo)
532
533 /* Change the pointer lists to duplicate the last sample row at the bottom
534
535  * of the image.  whichptr indicates which xbuffer holds the final iMCU row.
536
537  * Also sets rowgroups_avail to indicate number of nondummy row groups in row.
538
539  */
540
541 {
542
543   my_main_ptr main = (my_main_ptr) cinfo->main;
544
545   int ci, i, rgroup, iMCUheight, rows_left;
546
547   jpeg_component_info *compptr;
548
549   JSAMPARRAY xbuf;
550
551
552
553   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
554
555        ci++, compptr++) {
556
557     /* Count sample rows in one iMCU row and in one row group */
558
559     iMCUheight = compptr->v_samp_factor * compptr->DCT_scaled_size;
560
561     rgroup = iMCUheight / cinfo->min_DCT_scaled_size;
562
563     /* Count nondummy sample rows remaining for this component */
564
565     rows_left = (int) (compptr->downsampled_height % (JDIMENSION) iMCUheight);
566
567     if (rows_left == 0) rows_left = iMCUheight;
568
569     /* Count nondummy row groups.  Should get same answer for each component,
570
571      * so we need only do it once.
572
573      */
574
575     if (ci == 0) {
576
577       main->rowgroups_avail = (JDIMENSION) ((rows_left-1) / rgroup + 1);
578
579     }
580
581     /* Duplicate the last real sample row rgroup*2 times; this pads out the
582
583      * last partial rowgroup and ensures at least one full rowgroup of context.
584
585      */
586
587     xbuf = main->xbuffer[main->whichptr][ci];
588
589     for (i = 0; i < rgroup * 2; i++) {
590
591       xbuf[rows_left + i] = xbuf[rows_left-1];
592
593     }
594
595   }
596
597 }
598
599
600
601
602
603 /*
604
605  * Initialize for a processing pass.
606
607  */
608
609
610
611 METHODDEF void
612
613 start_pass_main (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
614
615 {
616
617   my_main_ptr main = (my_main_ptr) cinfo->main;
618
619
620
621   switch (pass_mode) {
622
623   case JBUF_PASS_THRU:
624
625     if (cinfo->upsample->need_context_rows) {
626
627       main->pub.process_data = process_data_context_main;
628
629       make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
630
631       main->whichptr = 0;       /* Read first iMCU row into xbuffer[0] */
632
633       main->context_state = CTX_PREPARE_FOR_IMCU;
634
635       main->iMCU_row_ctr = 0;
636
637     } else {
638
639       /* Simple case with no context needed */
640
641       main->pub.process_data = process_data_simple_main;
642
643     }
644
645     main->buffer_full = FALSE;  /* Mark buffer empty */
646
647     main->rowgroup_ctr = 0;
648
649     break;
650
651 #ifdef QUANT_2PASS_SUPPORTED
652
653   case JBUF_CRANK_DEST:
654
655     /* For last pass of 2-pass quantization, just crank the postprocessor */
656
657     main->pub.process_data = process_data_crank_post;
658
659     break;
660
661 #endif
662
663   default:
664
665     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
666
667     break;
668
669   }
670
671 }
672
673
674
675
676
677 /*
678
679  * Process some data.
680
681  * This handles the simple case where no context is required.
682
683  */
684
685
686
687 METHODDEF void
688
689 process_data_simple_main (j_decompress_ptr cinfo,
690
691                           JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
692
693                           JDIMENSION out_rows_avail)
694
695 {
696
697   my_main_ptr main = (my_main_ptr) cinfo->main;
698
699   JDIMENSION rowgroups_avail;
700
701
702
703   /* Read input data if we haven't filled the main buffer yet */
704
705   if (! main->buffer_full) {
706
707     if (! (*cinfo->coef->decompress_data) (cinfo, main->buffer))
708
709       return;                   /* suspension forced, can do nothing more */
710
711     main->buffer_full = TRUE;   /* OK, we have an iMCU row to work with */
712
713   }
714
715
716
717   /* There are always min_DCT_scaled_size row groups in an iMCU row. */
718
719   rowgroups_avail = (JDIMENSION) cinfo->min_DCT_scaled_size;
720
721   /* Note: at the bottom of the image, we may pass extra garbage row groups
722
723    * to the postprocessor.  The postprocessor has to check for bottom
724
725    * of image anyway (at row resolution), so no point in us doing it too.
726
727    */
728
729
730
731   /* Feed the postprocessor */
732
733   (*cinfo->post->post_process_data) (cinfo, main->buffer,
734
735                                      &main->rowgroup_ctr, rowgroups_avail,
736
737                                      output_buf, out_row_ctr, out_rows_avail);
738
739
740
741   /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
742
743   if (main->rowgroup_ctr >= rowgroups_avail) {
744
745     main->buffer_full = FALSE;
746
747     main->rowgroup_ctr = 0;
748
749   }
750
751 }
752
753
754
755
756
757 /*
758
759  * Process some data.
760
761  * This handles the case where context rows must be provided.
762
763  */
764
765
766
767 METHODDEF void
768
769 process_data_context_main (j_decompress_ptr cinfo,
770
771                            JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
772
773                            JDIMENSION out_rows_avail)
774
775 {
776
777   my_main_ptr main = (my_main_ptr) cinfo->main;
778
779
780
781   /* Read input data if we haven't filled the main buffer yet */
782
783   if (! main->buffer_full) {
784
785     if (! (*cinfo->coef->decompress_data) (cinfo,
786
787                                            main->xbuffer[main->whichptr]))
788
789       return;                   /* suspension forced, can do nothing more */
790
791     main->buffer_full = TRUE;   /* OK, we have an iMCU row to work with */
792
793     main->iMCU_row_ctr++;       /* count rows received */
794
795   }
796
797
798
799   /* Postprocessor typically will not swallow all the input data it is handed
800
801    * in one call (due to filling the output buffer first).  Must be prepared
802
803    * to exit and restart.  This switch lets us keep track of how far we got.
804
805    * Note that each case falls through to the next on successful completion.
806
807    */
808
809   switch (main->context_state) {
810
811   case CTX_POSTPONED_ROW:
812
813     /* Call postprocessor using previously set pointers for postponed row */
814
815     (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr],
816
817                         &main->rowgroup_ctr, main->rowgroups_avail,
818
819                         output_buf, out_row_ctr, out_rows_avail);
820
821     if (main->rowgroup_ctr < main->rowgroups_avail)
822
823       return;                   /* Need to suspend */
824
825     main->context_state = CTX_PREPARE_FOR_IMCU;
826
827     if (*out_row_ctr >= out_rows_avail)
828
829       return;                   /* Postprocessor exactly filled output buf */
830
831     /*FALLTHROUGH*/
832
833   case CTX_PREPARE_FOR_IMCU:
834
835     /* Prepare to process first M-1 row groups of this iMCU row */
836
837     main->rowgroup_ctr = 0;
838
839     main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size - 1);
840
841     /* Check for bottom of image: if so, tweak pointers to "duplicate"
842
843      * the last sample row, and adjust rowgroups_avail to ignore padding rows.
844
845      */
846
847     if (main->iMCU_row_ctr == cinfo->total_iMCU_rows)
848
849       set_bottom_pointers(cinfo);
850
851     main->context_state = CTX_PROCESS_IMCU;
852
853     /*FALLTHROUGH*/
854
855   case CTX_PROCESS_IMCU:
856
857     /* Call postprocessor using previously set pointers */
858
859     (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr],
860
861                         &main->rowgroup_ctr, main->rowgroups_avail,
862
863                         output_buf, out_row_ctr, out_rows_avail);
864
865     if (main->rowgroup_ctr < main->rowgroups_avail)
866
867       return;                   /* Need to suspend */
868
869     /* After the first iMCU, change wraparound pointers to normal state */
870
871     if (main->iMCU_row_ctr == 1)
872
873       set_wraparound_pointers(cinfo);
874
875     /* Prepare to load new iMCU row using other xbuffer list */
876
877     main->whichptr ^= 1;        /* 0=>1 or 1=>0 */
878
879     main->buffer_full = FALSE;
880
881     /* Still need to process last row group of this iMCU row, */
882
883     /* which is saved at index M+1 of the other xbuffer */
884
885     main->rowgroup_ctr = (JDIMENSION) (cinfo->min_DCT_scaled_size + 1);
886
887     main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size + 2);
888
889     main->context_state = CTX_POSTPONED_ROW;
890
891   }
892
893 }
894
895
896
897
898
899 /*
900
901  * Process some data.
902
903  * Final pass of two-pass quantization: just call the postprocessor.
904
905  * Source data will be the postprocessor controller's internal buffer.
906
907  */
908
909
910
911 #ifdef QUANT_2PASS_SUPPORTED
912
913
914
915 METHODDEF void
916
917 process_data_crank_post (j_decompress_ptr cinfo,
918
919                          JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
920
921                          JDIMENSION out_rows_avail)
922
923 {
924
925   (*cinfo->post->post_process_data) (cinfo, (JSAMPIMAGE) NULL,
926
927                                      (JDIMENSION *) NULL, (JDIMENSION) 0,
928
929                                      output_buf, out_row_ctr, out_rows_avail);
930
931 }
932
933
934
935 #endif /* QUANT_2PASS_SUPPORTED */
936
937
938
939
940
941 /*
942
943  * Initialize main buffer controller.
944
945  */
946
947
948
949 GLOBAL void
950
951 jinit_d_main_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
952
953 {
954
955   my_main_ptr main;
956
957   int ci, rgroup, ngroups;
958
959   jpeg_component_info *compptr;
960
961
962
963   main = (my_main_ptr)
964
965     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
966
967                                 SIZEOF(my_main_controller));
968
969   cinfo->main = (struct jpeg_d_main_controller *) main;
970
971   main->pub.start_pass = start_pass_main;
972
973
974
975   if (need_full_buffer)         /* shouldn't happen */
976
977     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
978
979
980
981   /* Allocate the workspace.
982
983    * ngroups is the number of row groups we need.
984
985    */
986
987   if (cinfo->upsample->need_context_rows) {
988
989     if (cinfo->min_DCT_scaled_size < 2) /* unsupported, see comments above */
990
991       ERREXIT(cinfo, JERR_NOTIMPL);
992
993     alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
994
995     ngroups = cinfo->min_DCT_scaled_size + 2;
996
997   } else {
998
999     ngroups = cinfo->min_DCT_scaled_size;
1000
1001   }
1002
1003
1004
1005   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
1006
1007        ci++, compptr++) {
1008
1009     rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
1010
1011       cinfo->min_DCT_scaled_size; /* height of a row group of component */
1012
1013     main->buffer[ci] = (*cinfo->mem->alloc_sarray)
1014
1015                         ((j_common_ptr) cinfo, JPOOL_IMAGE,
1016
1017                          compptr->width_in_blocks * compptr->DCT_scaled_size,
1018
1019                          (JDIMENSION) (rgroup * ngroups));
1020
1021   }
1022
1023 }
1024