2010-08-20 19:58:19 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-08-20 19:58:19 +02:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
2011-09-15 14:34:12 +02:00
|
|
|
#include "vpx_config.h"
|
2012-11-09 02:09:30 +01:00
|
|
|
#include "vp8_rtcd.h"
|
2013-10-29 19:27:58 +01:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *dest,
|
|
|
|
int stride);
|
|
|
|
void vp8_dc_only_idct_add_c(short input_dc, unsigned char *pred,
|
2011-10-18 18:06:50 +02:00
|
|
|
int pred_stride, unsigned char *dst_ptr,
|
|
|
|
int dst_stride);
|
2010-10-27 17:21:02 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst,
|
|
|
|
int stride, char *eobs) {
|
|
|
|
int i, j;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-18 15:54:50 +02:00
|
|
|
for (i = 0; i < 4; ++i) {
|
|
|
|
for (j = 0; j < 4; ++j) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (*eobs++ > 1) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_dequant_idct_add_c(q, dq, dst, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_dc_only_idct_add_c(q[0] * dq[0], dst, stride, dst, stride);
|
|
|
|
memset(q, 0, 2 * sizeof(q[0]));
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
q += 16;
|
|
|
|
dst += 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
dst += 4 * stride - 16;
|
|
|
|
}
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dstu,
|
|
|
|
unsigned char *dstv, int stride,
|
|
|
|
char *eobs) {
|
|
|
|
int i, j;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-18 15:54:50 +02:00
|
|
|
for (i = 0; i < 2; ++i) {
|
|
|
|
for (j = 0; j < 2; ++j) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (*eobs++ > 1) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_dequant_idct_add_c(q, dq, dstu, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_dc_only_idct_add_c(q[0] * dq[0], dstu, stride, dstu, stride);
|
|
|
|
memset(q, 0, 2 * sizeof(q[0]));
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
q += 16;
|
|
|
|
dstu += 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
dstu += 4 * stride - 8;
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-18 15:54:50 +02:00
|
|
|
for (i = 0; i < 2; ++i) {
|
|
|
|
for (j = 0; j < 2; ++j) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (*eobs++ > 1) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_dequant_idct_add_c(q, dq, dstv, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_dc_only_idct_add_c(q[0] * dq[0], dstv, stride, dstv, stride);
|
|
|
|
memset(q, 0, 2 * sizeof(q[0]));
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
q += 16;
|
|
|
|
dstv += 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
|
|
|
|
dstv += 4 * stride - 8;
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|