2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-09-15 14:34:12 +02:00
|
|
|
#include "vpx_config.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "dequantize.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/idct.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
|
2012-01-04 17:56:50 +01:00
|
|
|
void vp8_dequantize_b_c(BLOCKD *d, short *DQC)
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
short *DQ = d->dqcoeff;
|
|
|
|
short *Q = d->qcoeff;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
DQ[i] = Q[i] * DQC[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
void vp8_dequant_idct_add_c(short *input, short *dq,
|
|
|
|
unsigned char *dest, int stride)
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
input[i] = dq[i] * input[i];
|
|
|
|
}
|
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
vp8_short_idct4x4llm_c(input, dest, stride, dest, stride);
|
2010-05-28 20:28:12 +02:00
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
vpx_memset(input, 0, 32);
|
2010-05-28 20:28:12 +02:00
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|