mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 17:40:12 +00:00
Conflicts: libgpujpeg/gpujpeg_huffman_cpu_decoder.c libgpujpeg/gpujpeg_huffman_cpu_encoder.c libgpujpeg/gpujpeg_preprocessor.cu
256 lines
7.6 KiB
C
256 lines
7.6 KiB
C
/**
|
|
* Copyright (c) 2011, CESNET z.s.p.o
|
|
* Copyright (c) 2011, Silicon Genome, LLC.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "gpujpeg_dct_cpu.h"
|
|
#include "gpujpeg_util.h"
|
|
|
|
#define W1 2841 // 2048*sqrt(2)*cos(1*pi/16)
|
|
#define W2 2676 // 2048*sqrt(2)*cos(2*pi/16)
|
|
#define W3 2408 // 2048*sqrt(2)*cos(3*pi/16)
|
|
#define W5 1609 // 2048*sqrt(2)*cos(5*pi/16)
|
|
#define W6 1108 // 2048*sqrt(2)*cos(6*pi/16)
|
|
#define W7 565 // 2048*sqrt(2)*cos(7*pi/16)
|
|
|
|
/** Clipping table and pointer to it */
|
|
static int16_t iclip[1024];
|
|
static int16_t* iclp;
|
|
|
|
/**
|
|
* Row (horizontal) IDCT
|
|
*
|
|
* 7 pi 1
|
|
* dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
|
|
* l=0 8 2
|
|
*
|
|
* where: c[0] = 128
|
|
* c[1..7] = 128*sqrt(2)
|
|
*/
|
|
void
|
|
gpujpeg_idct_cpu_perform_row(int16_t* blk)
|
|
{
|
|
int x0, x1, x2, x3, x4, x5, x6, x7, x8;
|
|
|
|
// shortcut
|
|
if (!((x1 = blk[4]<<11) | (x2 = blk[6]) | (x3 = blk[2]) |
|
|
(x4 = blk[1]) | (x5 = blk[7]) | (x6 = blk[5]) | (x7 = blk[3])))
|
|
{
|
|
blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
|
|
return;
|
|
}
|
|
|
|
// for proper rounding in the fourth stage
|
|
x0 = (blk[0]<<11) + 128;
|
|
|
|
// first stage
|
|
x8 = W7*(x4+x5);
|
|
x4 = x8 + (W1-W7)*x4;
|
|
x5 = x8 - (W1+W7)*x5;
|
|
x8 = W3*(x6+x7);
|
|
x6 = x8 - (W3-W5)*x6;
|
|
x7 = x8 - (W3+W5)*x7;
|
|
|
|
// second stage
|
|
x8 = x0 + x1;
|
|
x0 -= x1;
|
|
x1 = W6*(x3+x2);
|
|
x2 = x1 - (W2+W6)*x2;
|
|
x3 = x1 + (W2-W6)*x3;
|
|
x1 = x4 + x6;
|
|
x4 -= x6;
|
|
x6 = x5 + x7;
|
|
x5 -= x7;
|
|
|
|
// third stage
|
|
x7 = x8 + x3;
|
|
x8 -= x3;
|
|
x3 = x0 + x2;
|
|
x0 -= x2;
|
|
x2 = (181*(x4+x5)+128)>>8;
|
|
x4 = (181*(x4-x5)+128)>>8;
|
|
|
|
// fourth stage
|
|
blk[0] = (x7+x1)>>8;
|
|
blk[1] = (x3+x2)>>8;
|
|
blk[2] = (x0+x4)>>8;
|
|
blk[3] = (x8+x6)>>8;
|
|
blk[4] = (x8-x6)>>8;
|
|
blk[5] = (x0-x4)>>8;
|
|
blk[6] = (x3-x2)>>8;
|
|
blk[7] = (x7-x1)>>8;
|
|
}
|
|
|
|
/**
|
|
* Column (vertical) IDCT
|
|
*
|
|
* 7 pi 1
|
|
* dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
|
|
* l=0 8 2
|
|
*
|
|
* where: c[0] = 1/1024
|
|
* c[1..7] = (1/1024)*sqrt(2)
|
|
*/
|
|
void
|
|
gpujpeg_idct_cpu_perform_column(int16_t* blk)
|
|
{
|
|
int x0, x1, x2, x3, x4, x5, x6, x7, x8;
|
|
|
|
// shortcut
|
|
if (!((x1 = (blk[8*4]<<8)) | (x2 = blk[8*6]) | (x3 = blk[8*2]) |
|
|
(x4 = blk[8*1]) | (x5 = blk[8*7]) | (x6 = blk[8*5]) | (x7 = blk[8*3])))
|
|
{
|
|
blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=blk[8*5]=blk[8*6]=blk[8*7]=
|
|
iclp[(blk[8*0]+32)>>6];
|
|
return;
|
|
}
|
|
|
|
x0 = (blk[8*0]<<8) + 8192;
|
|
|
|
// first stage
|
|
x8 = W7*(x4+x5) + 4;
|
|
x4 = (x8+(W1-W7)*x4)>>3;
|
|
x5 = (x8-(W1+W7)*x5)>>3;
|
|
x8 = W3*(x6+x7) + 4;
|
|
x6 = (x8-(W3-W5)*x6)>>3;
|
|
x7 = (x8-(W3+W5)*x7)>>3;
|
|
|
|
// second stage
|
|
x8 = x0 + x1;
|
|
x0 -= x1;
|
|
x1 = W6*(x3+x2) + 4;
|
|
x2 = (x1-(W2+W6)*x2)>>3;
|
|
x3 = (x1+(W2-W6)*x3)>>3;
|
|
x1 = x4 + x6;
|
|
x4 -= x6;
|
|
x6 = x5 + x7;
|
|
x5 -= x7;
|
|
|
|
// third stage
|
|
x7 = x8 + x3;
|
|
x8 -= x3;
|
|
x3 = x0 + x2;
|
|
x0 -= x2;
|
|
x2 = (181*(x4+x5)+128)>>8;
|
|
x4 = (181*(x4-x5)+128)>>8;
|
|
|
|
// fourth stage
|
|
blk[8*0] = iclp[(x7+x1)>>14];
|
|
blk[8*1] = iclp[(x3+x2)>>14];
|
|
blk[8*2] = iclp[(x0+x4)>>14];
|
|
blk[8*3] = iclp[(x8+x6)>>14];
|
|
blk[8*4] = iclp[(x8-x6)>>14];
|
|
blk[8*5] = iclp[(x0-x4)>>14];
|
|
blk[8*6] = iclp[(x3-x2)>>14];
|
|
blk[8*7] = iclp[(x7-x1)>>14];
|
|
}
|
|
|
|
/**
|
|
* Perform inverse DCT on 8x8 block
|
|
*
|
|
* @param block
|
|
*/
|
|
void gpujpeg_idct_cpu_perform(int16_t* block, int16_t* table)
|
|
{
|
|
for ( int i = 0; i < 64; i++ ) {
|
|
int pos = i;
|
|
block[i] = (int)block[i] * (int)table[i];
|
|
}
|
|
|
|
for ( int i = 0; i < 8; i++ )
|
|
gpujpeg_idct_cpu_perform_row(block + 8 * i);
|
|
|
|
for ( int i = 0; i < 8; i++ )
|
|
gpujpeg_idct_cpu_perform_column(block + i);
|
|
}
|
|
|
|
/**
|
|
* Init inverse DCT
|
|
*/
|
|
void gpujpeg_idct_cpu_init()
|
|
{
|
|
iclp = iclip + 512;
|
|
for ( int i = -512; i < 512; i++ )
|
|
iclp[i] = (i < -256) ? -256 : ((i > 255) ? 255 : i);
|
|
}
|
|
|
|
/** Documented at declaration */
|
|
void
|
|
gpujpeg_idct_cpu(struct gpujpeg_decoder* decoder)
|
|
{
|
|
gpujpeg_idct_cpu_init();
|
|
|
|
// Get coder
|
|
struct gpujpeg_coder* coder = &decoder->coder;
|
|
|
|
// Perform IDCT and dequantization
|
|
for ( int comp = 0; comp < coder->param_image.comp_count; comp++ ) {
|
|
// Get component
|
|
struct gpujpeg_component* component = &coder->component[comp];
|
|
|
|
// Determine table type
|
|
enum gpujpeg_component_type type = (comp == 0) ? GPUJPEG_COMPONENT_LUMINANCE : GPUJPEG_COMPONENT_CHROMINANCE;
|
|
|
|
// Copy data to host
|
|
cudaMemcpy(component->data_quantized, component->d_data_quantized, component->data_size * sizeof(uint16_t), cudaMemcpyDeviceToHost);
|
|
|
|
// Perform IDCT on CPU
|
|
int width = component->data_width / GPUJPEG_BLOCK_SIZE;
|
|
int height = component->data_height / GPUJPEG_BLOCK_SIZE;
|
|
for ( int y = 0; y < height; y++ ) {
|
|
for ( int x = 0; x < width; x++ ) {
|
|
int index = y * width + x;
|
|
gpujpeg_idct_cpu_perform(
|
|
&component->data_quantized[index * 64],
|
|
decoder->table_quantization[type].table
|
|
);
|
|
}
|
|
}
|
|
|
|
// Copy results to device
|
|
uint8_t* data = NULL;
|
|
assert(cudaMallocHost((void**)&data, component->data_size * sizeof(uint8_t)) == cudaSuccess);
|
|
for ( int y = 0; y < height; y++ ) {
|
|
for ( int x = 0; x < width; x++ ) {
|
|
for ( int c = 0; c < (GPUJPEG_BLOCK_SIZE * GPUJPEG_BLOCK_SIZE); c++ ) {
|
|
int coefficient_index = (y * width + x) * (GPUJPEG_BLOCK_SIZE * GPUJPEG_BLOCK_SIZE) + c;
|
|
uint16_t coefficient = component->data_quantized[coefficient_index];
|
|
coefficient += 128;
|
|
if ( coefficient > 255 )
|
|
coefficient = 255;
|
|
if ( coefficient < 0 )
|
|
coefficient = 0;
|
|
int index = ((y * GPUJPEG_BLOCK_SIZE) + (c / GPUJPEG_BLOCK_SIZE)) * component->data_width + ((x * GPUJPEG_BLOCK_SIZE) + (c % GPUJPEG_BLOCK_SIZE));
|
|
data[index] = coefficient;
|
|
}
|
|
}
|
|
}
|
|
cudaMemcpy(component->d_data, data, component->data_size * sizeof(uint8_t), cudaMemcpyHostToDevice);
|
|
cudaFreeHost(data);
|
|
}
|
|
}
|