Coverage Report

Created: 2025-06-16 07:00

/src/libjpeg-turbo/src/jdmainct.h
Line
Count
Source
1
/*
2
 * jdmainct.h
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1994-1996, Thomas G. Lane.
6
 * libjpeg-turbo Modifications:
7
 * Copyright (C) 2022, D. R. Commander.
8
 * For conditions of distribution and use, see the accompanying README.ijg
9
 * file.
10
 */
11
12
#define JPEG_INTERNALS
13
#include "jpeglib.h"
14
#include "jpegapicomp.h"
15
#include "jsamplecomp.h"
16
17
18
#if BITS_IN_JSAMPLE != 16 || defined(D_LOSSLESS_SUPPORTED)
19
20
/* Private buffer controller object */
21
22
typedef struct {
23
  struct jpeg_d_main_controller pub; /* public fields */
24
25
  /* Pointer to allocated workspace (M or M+2 row groups). */
26
  _JSAMPARRAY buffer[MAX_COMPONENTS];
27
28
  boolean buffer_full;          /* Have we gotten an iMCU row from decoder? */
29
  JDIMENSION rowgroup_ctr;      /* counts row groups output to postprocessor */
30
31
  /* Remaining fields are only used in the context case. */
32
33
  /* These are the master pointers to the funny-order pointer lists. */
34
  _JSAMPIMAGE xbuffer[2];       /* pointers to weird pointer lists */
35
36
  int whichptr;                 /* indicates which pointer set is now in use */
37
  int context_state;            /* process_data state machine status */
38
  JDIMENSION rowgroups_avail;   /* row groups available to postprocessor */
39
  JDIMENSION iMCU_row_ctr;      /* counts iMCU rows to detect image top/bot */
40
} my_main_controller;
41
42
typedef my_main_controller *my_main_ptr;
43
44
45
/* context_state values: */
46
722k
#define CTX_PREPARE_FOR_IMCU    0       /* need to prepare for MCU row */
47
6.62M
#define CTX_PROCESS_IMCU        1       /* feeding iMCU to postprocessor */
48
1.22M
#define CTX_POSTPONED_ROW       2       /* feeding postponed row group */
49
50
51
LOCAL(void)
52
set_wraparound_pointers(j_decompress_ptr cinfo)
53
/* Set up the "wraparound" pointers at top and bottom of the pointer lists.
54
 * This changes the pointer list state from top-of-image to the normal state.
55
 */
56
14.9k
{
57
14.9k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
58
14.9k
  int ci, i, rgroup;
59
14.9k
  int M = cinfo->_min_DCT_scaled_size;
60
14.9k
  jpeg_component_info *compptr;
61
14.9k
  _JSAMPARRAY xbuf0, xbuf1;
62
63
64.1k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
64
49.1k
       ci++, compptr++) {
65
49.1k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
66
49.1k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
67
49.1k
    xbuf0 = main_ptr->xbuffer[0][ci];
68
49.1k
    xbuf1 = main_ptr->xbuffer[1][ci];
69
136k
    for (i = 0; i < rgroup; i++) {
70
87.2k
      xbuf0[i - rgroup] = xbuf0[rgroup * (M + 1) + i];
71
87.2k
      xbuf1[i - rgroup] = xbuf1[rgroup * (M + 1) + i];
72
87.2k
      xbuf0[rgroup * (M + 2) + i] = xbuf0[i];
73
87.2k
      xbuf1[rgroup * (M + 2) + i] = xbuf1[i];
74
87.2k
    }
75
49.1k
  }
76
14.9k
}
Unexecuted instantiation: jdapistd-8.c:set_wraparound_pointers
Unexecuted instantiation: jdapistd-12.c:set_wraparound_pointers
jdmainct-8.c:set_wraparound_pointers
Line
Count
Source
56
9.13k
{
57
9.13k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
58
9.13k
  int ci, i, rgroup;
59
9.13k
  int M = cinfo->_min_DCT_scaled_size;
60
9.13k
  jpeg_component_info *compptr;
61
9.13k
  _JSAMPARRAY xbuf0, xbuf1;
62
63
38.9k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
64
29.7k
       ci++, compptr++) {
65
29.7k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
66
29.7k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
67
29.7k
    xbuf0 = main_ptr->xbuffer[0][ci];
68
29.7k
    xbuf1 = main_ptr->xbuffer[1][ci];
69
83.0k
    for (i = 0; i < rgroup; i++) {
70
53.3k
      xbuf0[i - rgroup] = xbuf0[rgroup * (M + 1) + i];
71
53.3k
      xbuf1[i - rgroup] = xbuf1[rgroup * (M + 1) + i];
72
53.3k
      xbuf0[rgroup * (M + 2) + i] = xbuf0[i];
73
53.3k
      xbuf1[rgroup * (M + 2) + i] = xbuf1[i];
74
53.3k
    }
75
29.7k
  }
76
9.13k
}
jdmainct-12.c:set_wraparound_pointers
Line
Count
Source
56
5.84k
{
57
5.84k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
58
5.84k
  int ci, i, rgroup;
59
5.84k
  int M = cinfo->_min_DCT_scaled_size;
60
5.84k
  jpeg_component_info *compptr;
61
5.84k
  _JSAMPARRAY xbuf0, xbuf1;
62
63
25.1k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
64
19.3k
       ci++, compptr++) {
65
19.3k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
66
19.3k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
67
19.3k
    xbuf0 = main_ptr->xbuffer[0][ci];
68
19.3k
    xbuf1 = main_ptr->xbuffer[1][ci];
69
53.3k
    for (i = 0; i < rgroup; i++) {
70
33.9k
      xbuf0[i - rgroup] = xbuf0[rgroup * (M + 1) + i];
71
33.9k
      xbuf1[i - rgroup] = xbuf1[rgroup * (M + 1) + i];
72
33.9k
      xbuf0[rgroup * (M + 2) + i] = xbuf0[i];
73
33.9k
      xbuf1[rgroup * (M + 2) + i] = xbuf1[i];
74
33.9k
    }
75
19.3k
  }
76
5.84k
}
Unexecuted instantiation: jdmainct-16.c:set_wraparound_pointers
77
78
#endif /* BITS_IN_JSAMPLE != 16 || defined(D_LOSSLESS_SUPPORTED) */