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.
|
|
|
|
*/
|
|
|
|
|
2012-11-09 02:09:30 +01:00
|
|
|
#include "vp9_rtcd.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_blockd.h"
|
2012-11-30 16:29:43 +01:00
|
|
|
#include "vp9/decoder/vp9_dequantize.h"
|
2010-10-27 17:21:02 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
void vp9_dequant_idct_add_y_block_c(int16_t *q, const int16_t *dq,
|
|
|
|
uint8_t *pre,
|
|
|
|
uint8_t *dst,
|
2013-02-21 19:04:40 +01:00
|
|
|
int stride, MACROBLOCKD *xd) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
for (j = 0; j < 4; j++) {
|
2013-02-28 22:01:41 +01:00
|
|
|
vp9_dequant_idct_add(q, dq, pre, dst, 16, stride, xd->eobs[i * 4 + j]);
|
2012-07-14 00:21:29 +02:00
|
|
|
q += 16;
|
|
|
|
pre += 4;
|
|
|
|
dst += 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
pre += 64 - 16;
|
|
|
|
dst += 4 * stride - 16;
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
void vp9_dequant_idct_add_uv_block_c(int16_t *q, const int16_t *dq,
|
|
|
|
uint8_t *pre, uint8_t *dstu,
|
|
|
|
uint8_t *dstv, int stride,
|
2013-02-21 19:04:40 +01:00
|
|
|
MACROBLOCKD *xd) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++) {
|
2013-02-28 22:01:41 +01:00
|
|
|
vp9_dequant_idct_add(q, dq, pre, dstu, 8, stride,
|
|
|
|
xd->eobs[16 + i * 2 + j]);
|
2012-07-14 00:21:29 +02:00
|
|
|
q += 16;
|
|
|
|
pre += 4;
|
|
|
|
dstu += 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
pre += 32 - 8;
|
|
|
|
dstu += 4 * stride - 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++) {
|
2013-02-28 22:01:41 +01:00
|
|
|
vp9_dequant_idct_add(q, dq, pre, dstv, 8, stride,
|
|
|
|
xd->eobs[20 + i * 2 + j]);
|
2012-07-14 00:21:29 +02:00
|
|
|
q += 16;
|
|
|
|
pre += 4;
|
|
|
|
dstv += 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
pre += 32 - 8;
|
|
|
|
dstv += 4 * stride - 8;
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
void vp9_dequant_idct_add_y_block_8x8_c(int16_t *q, const int16_t *dq,
|
|
|
|
uint8_t *pre,
|
|
|
|
uint8_t *dst,
|
2013-02-21 19:04:40 +01:00
|
|
|
int stride, MACROBLOCKD *xd) {
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t *origdest = dst;
|
|
|
|
uint8_t *origpred = pre;
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2013-02-27 19:00:24 +01:00
|
|
|
vp9_dequant_idct_add_8x8_c(q, dq, pre, dst, 16, stride, xd->eobs[0]);
|
2012-10-31 00:16:28 +01:00
|
|
|
vp9_dequant_idct_add_8x8_c(&q[64], dq, origpred + 8,
|
2013-02-27 19:00:24 +01:00
|
|
|
origdest + 8, 16, stride, xd->eobs[4]);
|
2012-10-31 00:16:28 +01:00
|
|
|
vp9_dequant_idct_add_8x8_c(&q[128], dq, origpred + 8 * 16,
|
2013-02-21 19:04:40 +01:00
|
|
|
origdest + 8 * stride, 16, stride,
|
2013-02-27 19:00:24 +01:00
|
|
|
xd->eobs[8]);
|
2012-10-31 00:16:28 +01:00
|
|
|
vp9_dequant_idct_add_8x8_c(&q[192], dq, origpred + 8 * 16 + 8,
|
2013-02-15 19:15:42 +01:00
|
|
|
origdest + 8 * stride + 8, 16, stride,
|
2013-02-27 19:00:24 +01:00
|
|
|
xd->eobs[12]);
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
void vp9_dequant_idct_add_uv_block_8x8_c(int16_t *q, const int16_t *dq,
|
|
|
|
uint8_t *pre,
|
|
|
|
uint8_t *dstu,
|
|
|
|
uint8_t *dstv,
|
2013-02-21 19:04:40 +01:00
|
|
|
int stride, MACROBLOCKD *xd) {
|
2013-02-27 19:00:24 +01:00
|
|
|
vp9_dequant_idct_add_8x8_c(q, dq, pre, dstu, 8, stride, xd->eobs[16]);
|
2011-02-14 23:18:18 +01:00
|
|
|
|
|
|
|
q += 64;
|
|
|
|
pre += 64;
|
|
|
|
|
2013-02-27 19:00:24 +01:00
|
|
|
vp9_dequant_idct_add_8x8_c(q, dq, pre, dstv, 8, stride, xd->eobs[20]);
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
2012-02-29 02:11:12 +01:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
void vp9_dequant_idct_add_y_block_lossless_c(int16_t *q, const int16_t *dq,
|
|
|
|
uint8_t *pre,
|
|
|
|
uint8_t *dst,
|
2013-02-21 19:04:40 +01:00
|
|
|
int stride, MACROBLOCKD *xd) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
for (j = 0; j < 4; j++) {
|
2013-02-28 22:01:41 +01:00
|
|
|
vp9_dequant_idct_add_lossless_c(q, dq, pre, dst, 16, stride,
|
|
|
|
xd->eobs[i * 4 + j]);
|
2012-07-14 00:21:29 +02:00
|
|
|
q += 16;
|
|
|
|
pre += 4;
|
|
|
|
dst += 4;
|
Add lossless compression mode.
This commit adds lossless compression capability to the experimental
branch. The lossless experiment can be enabled using --enable-lossless
in configure. When the experiment is enabled, the encoder will use
lossless compression mode by command line option --lossless, and the
decoder automatically recognizes a losslessly encoded clip and decodes
accordingly.
To achieve the lossless coding, this commit has changed the following:
1. To encode at lossless mode, encoder forces the use of unit
quantizer, i.e, Q 0, where effective quantization is 1. Encoder also
disables the usage of 8x8 transform and allows only 4x4 transform;
2. At Q 0, the first order 4x4 DCT/IDCT have been switched over
to a pair of forward and inverse Walsh-Hadamard Transform
(http://goo.gl/EIsfy), with proper scaling applied to match the range
of the original 4x4 DCT/IDCT pair;
3. At Q 0, the second order remains to use the previous
walsh-hadamard transform pair. However, to maintain the reversibility
in second order transform at Q 0, scaling down is applied to first
order DC coefficients prior to forward transform, and scaling up is
applied to the second order output prior to quantization. Symmetric
upscaling and downscaling are added around inverse second order
transform;
4. At lossless mode, encoder also disables a number of minor
features to ensure no loss is introduced, these features includes:
a. Trellis quantization optimization
b. Loop filtering
c. Aggressive zero-binning, rounding and zero-bin boosting
d. Mode based zero-bin boosting
Lossless coding test was performed on all clips within the derf set,
to verify that the commit has achieved lossless compression for all
clips. The average compression ratio is around 2.57 to 1.
(http://goo.gl/dEShs)
Change-Id: Ia3aba7dd09df40dd590f93b9aba134defbc64e34
2012-06-14 04:03:31 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
pre += 64 - 16;
|
|
|
|
dst += 4 * stride - 16;
|
|
|
|
}
|
Add lossless compression mode.
This commit adds lossless compression capability to the experimental
branch. The lossless experiment can be enabled using --enable-lossless
in configure. When the experiment is enabled, the encoder will use
lossless compression mode by command line option --lossless, and the
decoder automatically recognizes a losslessly encoded clip and decodes
accordingly.
To achieve the lossless coding, this commit has changed the following:
1. To encode at lossless mode, encoder forces the use of unit
quantizer, i.e, Q 0, where effective quantization is 1. Encoder also
disables the usage of 8x8 transform and allows only 4x4 transform;
2. At Q 0, the first order 4x4 DCT/IDCT have been switched over
to a pair of forward and inverse Walsh-Hadamard Transform
(http://goo.gl/EIsfy), with proper scaling applied to match the range
of the original 4x4 DCT/IDCT pair;
3. At Q 0, the second order remains to use the previous
walsh-hadamard transform pair. However, to maintain the reversibility
in second order transform at Q 0, scaling down is applied to first
order DC coefficients prior to forward transform, and scaling up is
applied to the second order output prior to quantization. Symmetric
upscaling and downscaling are added around inverse second order
transform;
4. At lossless mode, encoder also disables a number of minor
features to ensure no loss is introduced, these features includes:
a. Trellis quantization optimization
b. Loop filtering
c. Aggressive zero-binning, rounding and zero-bin boosting
d. Mode based zero-bin boosting
Lossless coding test was performed on all clips within the derf set,
to verify that the commit has achieved lossless compression for all
clips. The average compression ratio is around 2.57 to 1.
(http://goo.gl/dEShs)
Change-Id: Ia3aba7dd09df40dd590f93b9aba134defbc64e34
2012-06-14 04:03:31 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
void vp9_dequant_idct_add_uv_block_lossless_c(int16_t *q, const int16_t *dq,
|
|
|
|
uint8_t *pre,
|
|
|
|
uint8_t *dstu,
|
|
|
|
uint8_t *dstv,
|
2012-11-02 21:06:51 +01:00
|
|
|
int stride,
|
2013-02-21 19:04:40 +01:00
|
|
|
MACROBLOCKD *xd) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++) {
|
2013-02-28 22:01:41 +01:00
|
|
|
vp9_dequant_idct_add_lossless_c(q, dq, pre, dstu, 8, stride,
|
|
|
|
xd->eobs[16 + i * 2 + j]);
|
2012-07-14 00:21:29 +02:00
|
|
|
q += 16;
|
|
|
|
pre += 4;
|
|
|
|
dstu += 4;
|
Add lossless compression mode.
This commit adds lossless compression capability to the experimental
branch. The lossless experiment can be enabled using --enable-lossless
in configure. When the experiment is enabled, the encoder will use
lossless compression mode by command line option --lossless, and the
decoder automatically recognizes a losslessly encoded clip and decodes
accordingly.
To achieve the lossless coding, this commit has changed the following:
1. To encode at lossless mode, encoder forces the use of unit
quantizer, i.e, Q 0, where effective quantization is 1. Encoder also
disables the usage of 8x8 transform and allows only 4x4 transform;
2. At Q 0, the first order 4x4 DCT/IDCT have been switched over
to a pair of forward and inverse Walsh-Hadamard Transform
(http://goo.gl/EIsfy), with proper scaling applied to match the range
of the original 4x4 DCT/IDCT pair;
3. At Q 0, the second order remains to use the previous
walsh-hadamard transform pair. However, to maintain the reversibility
in second order transform at Q 0, scaling down is applied to first
order DC coefficients prior to forward transform, and scaling up is
applied to the second order output prior to quantization. Symmetric
upscaling and downscaling are added around inverse second order
transform;
4. At lossless mode, encoder also disables a number of minor
features to ensure no loss is introduced, these features includes:
a. Trellis quantization optimization
b. Loop filtering
c. Aggressive zero-binning, rounding and zero-bin boosting
d. Mode based zero-bin boosting
Lossless coding test was performed on all clips within the derf set,
to verify that the commit has achieved lossless compression for all
clips. The average compression ratio is around 2.57 to 1.
(http://goo.gl/dEShs)
Change-Id: Ia3aba7dd09df40dd590f93b9aba134defbc64e34
2012-06-14 04:03:31 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
pre += 32 - 8;
|
|
|
|
dstu += 4 * stride - 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < 2; j++) {
|
2013-02-28 22:01:41 +01:00
|
|
|
vp9_dequant_idct_add_lossless_c(q, dq, pre, dstv, 8, stride,
|
|
|
|
xd->eobs[20 + i * 2 + j]);
|
2012-07-14 00:21:29 +02:00
|
|
|
q += 16;
|
|
|
|
pre += 4;
|
|
|
|
dstv += 4;
|
Add lossless compression mode.
This commit adds lossless compression capability to the experimental
branch. The lossless experiment can be enabled using --enable-lossless
in configure. When the experiment is enabled, the encoder will use
lossless compression mode by command line option --lossless, and the
decoder automatically recognizes a losslessly encoded clip and decodes
accordingly.
To achieve the lossless coding, this commit has changed the following:
1. To encode at lossless mode, encoder forces the use of unit
quantizer, i.e, Q 0, where effective quantization is 1. Encoder also
disables the usage of 8x8 transform and allows only 4x4 transform;
2. At Q 0, the first order 4x4 DCT/IDCT have been switched over
to a pair of forward and inverse Walsh-Hadamard Transform
(http://goo.gl/EIsfy), with proper scaling applied to match the range
of the original 4x4 DCT/IDCT pair;
3. At Q 0, the second order remains to use the previous
walsh-hadamard transform pair. However, to maintain the reversibility
in second order transform at Q 0, scaling down is applied to first
order DC coefficients prior to forward transform, and scaling up is
applied to the second order output prior to quantization. Symmetric
upscaling and downscaling are added around inverse second order
transform;
4. At lossless mode, encoder also disables a number of minor
features to ensure no loss is introduced, these features includes:
a. Trellis quantization optimization
b. Loop filtering
c. Aggressive zero-binning, rounding and zero-bin boosting
d. Mode based zero-bin boosting
Lossless coding test was performed on all clips within the derf set,
to verify that the commit has achieved lossless compression for all
clips. The average compression ratio is around 2.57 to 1.
(http://goo.gl/dEShs)
Change-Id: Ia3aba7dd09df40dd590f93b9aba134defbc64e34
2012-06-14 04:03:31 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
pre += 32 - 8;
|
|
|
|
dstv += 4 * stride - 8;
|
|
|
|
}
|
Add lossless compression mode.
This commit adds lossless compression capability to the experimental
branch. The lossless experiment can be enabled using --enable-lossless
in configure. When the experiment is enabled, the encoder will use
lossless compression mode by command line option --lossless, and the
decoder automatically recognizes a losslessly encoded clip and decodes
accordingly.
To achieve the lossless coding, this commit has changed the following:
1. To encode at lossless mode, encoder forces the use of unit
quantizer, i.e, Q 0, where effective quantization is 1. Encoder also
disables the usage of 8x8 transform and allows only 4x4 transform;
2. At Q 0, the first order 4x4 DCT/IDCT have been switched over
to a pair of forward and inverse Walsh-Hadamard Transform
(http://goo.gl/EIsfy), with proper scaling applied to match the range
of the original 4x4 DCT/IDCT pair;
3. At Q 0, the second order remains to use the previous
walsh-hadamard transform pair. However, to maintain the reversibility
in second order transform at Q 0, scaling down is applied to first
order DC coefficients prior to forward transform, and scaling up is
applied to the second order output prior to quantization. Symmetric
upscaling and downscaling are added around inverse second order
transform;
4. At lossless mode, encoder also disables a number of minor
features to ensure no loss is introduced, these features includes:
a. Trellis quantization optimization
b. Loop filtering
c. Aggressive zero-binning, rounding and zero-bin boosting
d. Mode based zero-bin boosting
Lossless coding test was performed on all clips within the derf set,
to verify that the commit has achieved lossless compression for all
clips. The average compression ratio is around 2.57 to 1.
(http://goo.gl/dEShs)
Change-Id: Ia3aba7dd09df40dd590f93b9aba134defbc64e34
2012-06-14 04:03:31 +02:00
|
|
|
}
|
|
|
|
|