| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| start_pass_upsample(j_decompress_ptr cinfo) |
| { |
| my_upsample_ptr upsample = (my_upsample_ptr)cinfo->upsample; |
| |
| |
| upsample->next_row_out = cinfo->max_v_samp_factor; |
| |
| upsample->rows_to_go = cinfo->output_height; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| sep_upsample(j_decompress_ptr cinfo, JSAMPIMAGE input_buf, |
| JDIMENSION *in_row_group_ctr, JDIMENSION in_row_groups_avail, |
| JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, |
| JDIMENSION out_rows_avail) |
| { |
| my_upsample_ptr upsample = (my_upsample_ptr)cinfo->upsample; |
| int ci; |
| jpeg_component_info *compptr; |
| JDIMENSION num_rows; |
| |
| |
| if (upsample->next_row_out >= cinfo->max_v_samp_factor) { |
| for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; |
| ci++, compptr++) { |
| |
| |
| |
| (*upsample->methods[ci]) (cinfo, compptr, |
| input_buf[ci] + (*in_row_group_ctr * upsample->rowgroup_height[ci]), |
| upsample->color_buf + ci); |
| } |
| upsample->next_row_out = 0; |
| } |
| |
| |
| |
| |
| num_rows = (JDIMENSION)(cinfo->max_v_samp_factor - upsample->next_row_out); |
| |
| |
| |
| if (num_rows > upsample->rows_to_go) |
| num_rows = upsample->rows_to_go; |
| |
| out_rows_avail -= *out_row_ctr; |
| if (num_rows > out_rows_avail) |
| num_rows = out_rows_avail; |
| |
| (*cinfo->cconvert->color_convert) (cinfo, upsample->color_buf, |
| (JDIMENSION)upsample->next_row_out, |
| output_buf + *out_row_ctr, (int)num_rows); |
| |
| |
| *out_row_ctr += num_rows; |
| upsample->rows_to_go -= num_rows; |
| upsample->next_row_out += num_rows; |
| |
| if (upsample->next_row_out >= cinfo->max_v_samp_factor) |
| (*in_row_group_ctr)++; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| fullsize_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| *output_data_ptr = input_data; |
| } |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| noop_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| *output_data_ptr = NULL; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| int_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| my_upsample_ptr upsample = (my_upsample_ptr)cinfo->upsample; |
| JSAMPARRAY output_data = *output_data_ptr; |
| register JSAMPROW inptr, outptr; |
| register JSAMPLE invalue; |
| register int h; |
| JSAMPROW outend; |
| int h_expand, v_expand; |
| int inrow, outrow; |
| |
| h_expand = upsample->h_expand[compptr->component_index]; |
| v_expand = upsample->v_expand[compptr->component_index]; |
| |
| inrow = outrow = 0; |
| while (outrow < cinfo->max_v_samp_factor) { |
| |
| inptr = input_data[inrow]; |
| outptr = output_data[outrow]; |
| outend = outptr + cinfo->output_width; |
| while (outptr < outend) { |
| invalue = *inptr++; |
| for (h = h_expand; h > 0; h--) { |
| *outptr++ = invalue; |
| } |
| } |
| |
| if (v_expand > 1) { |
| jcopy_sample_rows(output_data, outrow, output_data, outrow + 1, |
| v_expand - 1, cinfo->output_width); |
| } |
| inrow++; |
| outrow += v_expand; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| h2v1_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| JSAMPARRAY output_data = *output_data_ptr; |
| register JSAMPROW inptr, outptr; |
| register JSAMPLE invalue; |
| JSAMPROW outend; |
| int inrow; |
| |
| for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) { |
| inptr = input_data[inrow]; |
| outptr = output_data[inrow]; |
| outend = outptr + cinfo->output_width; |
| while (outptr < outend) { |
| invalue = *inptr++; |
| *outptr++ = invalue; |
| *outptr++ = invalue; |
| } |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| h2v2_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| JSAMPARRAY output_data = *output_data_ptr; |
| register JSAMPROW inptr, outptr; |
| register JSAMPLE invalue; |
| JSAMPROW outend; |
| int inrow, outrow; |
| |
| inrow = outrow = 0; |
| while (outrow < cinfo->max_v_samp_factor) { |
| inptr = input_data[inrow]; |
| outptr = output_data[outrow]; |
| outend = outptr + cinfo->output_width; |
| while (outptr < outend) { |
| invalue = *inptr++; |
| *outptr++ = invalue; |
| *outptr++ = invalue; |
| } |
| jcopy_sample_rows(output_data, outrow, output_data, outrow + 1, 1, |
| cinfo->output_width); |
| inrow++; |
| outrow += 2; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| h2v1_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| JSAMPARRAY output_data = *output_data_ptr; |
| register JSAMPROW inptr, outptr; |
| register int invalue; |
| register JDIMENSION colctr; |
| int inrow; |
| |
| for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) { |
| inptr = input_data[inrow]; |
| outptr = output_data[inrow]; |
| |
| invalue = GETJSAMPLE(*inptr++); |
| *outptr++ = (JSAMPLE)invalue; |
| *outptr++ = (JSAMPLE)((invalue * 3 + GETJSAMPLE(*inptr) + 2) >> 2); |
| |
| for (colctr = compptr->downsampled_width - 2; colctr > 0; colctr--) { |
| |
| invalue = GETJSAMPLE(*inptr++) * 3; |
| *outptr++ = (JSAMPLE)((invalue + GETJSAMPLE(inptr[-2]) + 1) >> 2); |
| *outptr++ = (JSAMPLE)((invalue + GETJSAMPLE(*inptr) + 2) >> 2); |
| } |
| |
| |
| invalue = GETJSAMPLE(*inptr); |
| *outptr++ = (JSAMPLE)((invalue * 3 + GETJSAMPLE(inptr[-1]) + 1) >> 2); |
| *outptr++ = (JSAMPLE)invalue; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| h1v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| JSAMPARRAY output_data = *output_data_ptr; |
| JSAMPROW inptr0, inptr1, outptr; |
| |
| int thiscolsum, bias; |
| |
| JLONG thiscolsum, bias; |
| |
| JDIMENSION colctr; |
| int inrow, outrow, v; |
| |
| inrow = outrow = 0; |
| while (outrow < cinfo->max_v_samp_factor) { |
| for (v = 0; v < 2; v++) { |
| |
| inptr0 = input_data[inrow]; |
| if (v == 0) { |
| inptr1 = input_data[inrow - 1]; |
| bias = 1; |
| } else { |
| inptr1 = input_data[inrow + 1]; |
| bias = 2; |
| } |
| outptr = output_data[outrow++]; |
| |
| for (colctr = 0; colctr < compptr->downsampled_width; colctr++) { |
| thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); |
| *outptr++ = (JSAMPLE)((thiscolsum + bias) >> 2); |
| } |
| } |
| inrow++; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| METHODDEF(void) |
| h2v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr, |
| JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr) |
| { |
| JSAMPARRAY output_data = *output_data_ptr; |
| register JSAMPROW inptr0, inptr1, outptr; |
| |
| register int thiscolsum, lastcolsum, nextcolsum; |
| |
| register JLONG thiscolsum, lastcolsum, nextcolsum; |
| |
| register JDIMENSION colctr; |
| int inrow, outrow, v; |
| |
| inrow = outrow = 0; |
| while (outrow < cinfo->max_v_samp_factor) { |
| for (v = 0; v < 2; v++) { |
| |
| inptr0 = input_data[inrow]; |
| if (v == 0) |
| inptr1 = input_data[inrow - 1]; |
| else |
| inptr1 = input_data[inrow + 1]; |
| outptr = output_data[outrow++]; |
| |
| |
| thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); |
| nextcolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); |
| *outptr++ = (JSAMPLE)((thiscolsum * 4 + 8) >> 4); |
| *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4); |
| lastcolsum = thiscolsum; thiscolsum = nextcolsum; |
| |
| for (colctr = compptr->downsampled_width - 2; colctr > 0; colctr--) { |
| |
| |
| nextcolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); |
| *outptr++ = (JSAMPLE)((thiscolsum * 3 + lastcolsum + 8) >> 4); |
| *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4); |
| lastcolsum = thiscolsum; thiscolsum = nextcolsum; |
| } |
| |
| |
| *outptr++ = (JSAMPLE)((thiscolsum * 3 + lastcolsum + 8) >> 4); |
| *outptr++ = (JSAMPLE)((thiscolsum * 4 + 7) >> 4); |
| } |
| inrow++; |
| } |
| } |
| |
| |
| |
| |
| |
| |
| GLOBAL(void) |
| jinit_upsampler(j_decompress_ptr cinfo) |
| { |
| my_upsample_ptr upsample; |
| int ci; |
| jpeg_component_info *compptr; |
| boolean need_buffer, do_fancy; |
| int h_in_group, v_in_group, h_out_group, v_out_group; |
| |
| if (!cinfo->master->jinit_upsampler_no_alloc) { |
| upsample = (my_upsample_ptr) |
| (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, |
| sizeof(my_upsampler)); |
| cinfo->upsample = (struct jpeg_upsampler *)upsample; |
| upsample->pub.start_pass = start_pass_upsample; |
| upsample->pub.upsample = sep_upsample; |
| upsample->pub.need_context_rows = FALSE; |
| } else |
| upsample = (my_upsample_ptr)cinfo->upsample; |
| |
| if (cinfo->CCIR601_sampling) |
| ERREXIT(cinfo, JERR_CCIR601_NOTIMPL); |
| |
| |
| |
| |
| do_fancy = cinfo->do_fancy_upsampling && cinfo->_min_DCT_scaled_size > 1; |
| |
| |
| |
| |
| for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components; |
| ci++, compptr++) { |
| |
| |
| |
| h_in_group = (compptr->h_samp_factor * compptr->_DCT_scaled_size) / |
| cinfo->_min_DCT_scaled_size; |
| v_in_group = (compptr->v_samp_factor * compptr->_DCT_scaled_size) / |
| cinfo->_min_DCT_scaled_size; |
| h_out_group = cinfo->max_h_samp_factor; |
| v_out_group = cinfo->max_v_samp_factor; |
| upsample->rowgroup_height[ci] = v_in_group; |
| need_buffer = TRUE; |
| if (!compptr->component_needed) { |
| |
| upsample->methods[ci] = noop_upsample; |
| need_buffer = FALSE; |
| } else if (h_in_group == h_out_group && v_in_group == v_out_group) { |
| |
| upsample->methods[ci] = fullsize_upsample; |
| need_buffer = FALSE; |
| } else if (h_in_group * 2 == h_out_group && v_in_group == v_out_group) { |
| |
| if (do_fancy && compptr->downsampled_width > 2) { |
| if (jsimd_can_h2v1_fancy_upsample()) |
| upsample->methods[ci] = jsimd_h2v1_fancy_upsample; |
| else |
| upsample->methods[ci] = h2v1_fancy_upsample; |
| } else { |
| if (jsimd_can_h2v1_upsample()) |
| upsample->methods[ci] = jsimd_h2v1_upsample; |
| else |
| upsample->methods[ci] = h2v1_upsample; |
| } |
| } else if (h_in_group == h_out_group && |
| v_in_group * 2 == v_out_group && do_fancy) { |
| |
| upsample->methods[ci] = h1v2_fancy_upsample; |
| upsample->pub.need_context_rows = TRUE; |
| } else if (h_in_group * 2 == h_out_group && |
| v_in_group * 2 == v_out_group) { |
| |
| if (do_fancy && compptr->downsampled_width > 2) { |
| if (jsimd_can_h2v2_fancy_upsample()) |
| upsample->methods[ci] = jsimd_h2v2_fancy_upsample; |
| else |
| upsample->methods[ci] = h2v2_fancy_upsample; |
| upsample->pub.need_context_rows = TRUE; |
| } else { |
| if (jsimd_can_h2v2_upsample()) |
| upsample->methods[ci] = jsimd_h2v2_upsample; |
| else |
| upsample->methods[ci] = h2v2_upsample; |
| } |
| } else if ((h_out_group % h_in_group) == 0 && |
| (v_out_group % v_in_group) == 0) { |
| |
| |
| if (jsimd_can_int_upsample()) |
| upsample->methods[ci] = jsimd_int_upsample; |
| else |
| |
| upsample->methods[ci] = int_upsample; |
| upsample->h_expand[ci] = (UINT8)(h_out_group / h_in_group); |
| upsample->v_expand[ci] = (UINT8)(v_out_group / v_in_group); |
| } else |
| ERREXIT(cinfo, JERR_FRACT_SAMPLE_NOTIMPL); |
| if (need_buffer && !cinfo->master->jinit_upsampler_no_alloc) { |
| upsample->color_buf[ci] = (*cinfo->mem->alloc_sarray) |
| ((j_common_ptr)cinfo, JPOOL_IMAGE, |
| (JDIMENSION)jround_up((long)cinfo->output_width, |
| (long)cinfo->max_h_samp_factor), |
| (JDIMENSION)cinfo->max_v_samp_factor); |
| } |
| } |
| } |