Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching full:pcol

6  				opj_event_msg(p_manager, EVT_ERROR, "Invalid component/palette index for direct mapping %d.\n", pcol);
9 - else if (pcol_usage[pcol] && cmap[i].mtyp == 1) {
10 + else if (pcol_usage[pcol] && cmap[i].mtyp != 0) {
11 opj_event_msg(p_manager, EVT_ERROR, "Component %d is mapped twice.\n", pcol);
15 assert( pcol == 0 );
18 - assert( i == pcol );
19 - new_comps[pcol] = old_comps[cmp];
20 + assert( i == pcol ); // probably wrong?
26 cmp = cmap[i].cmp; pcol = cmap[i].pcol;
29 - max = new_comps[pcol].w * new_comps[pcol].h;
43 - assert( i == pcol );
44 - dst = new_comps[pcol].data;
45 + assert( i == pcol ); // probably wrong?