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"
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_idct_dequant_0_2x_sse2(short *q, short *dq, unsigned char *dst,
|
|
|
|
int dst_stride);
|
|
|
|
void vp8_idct_dequant_full_2x_sse2(short *q, short *dq, unsigned char *dst,
|
|
|
|
int dst_stride);
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst,
|
|
|
|
int stride, char *eobs) {
|
|
|
|
int i;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-18 15:54:50 +02:00
|
|
|
for (i = 0; i < 4; ++i) {
|
2016-07-14 07:26:28 +02:00
|
|
|
if (((short *)(eobs))[0]) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (((short *)(eobs))[0] & 0xfefe) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_full_2x_sse2(q, dq, dst, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_0_2x_sse2(q, dq, dst, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
}
|
|
|
|
if (((short *)(eobs))[1]) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (((short *)(eobs))[1] & 0xfefe) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_full_2x_sse2(q + 32, dq, dst + 8, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_0_2x_sse2(q + 32, dq, dst + 8, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
q += 64;
|
|
|
|
dst += stride * 4;
|
|
|
|
eobs += 4;
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq,
|
|
|
|
unsigned char *dstu,
|
|
|
|
unsigned char *dstv, int stride,
|
|
|
|
char *eobs) {
|
|
|
|
if (((short *)(eobs))[0]) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (((short *)(eobs))[0] & 0xfefe) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_full_2x_sse2(q, dq, dstu, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_0_2x_sse2(q, dq, dstu, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
}
|
|
|
|
q += 32;
|
|
|
|
dstu += stride * 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if (((short *)(eobs))[1]) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (((short *)(eobs))[1] & 0xfefe) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_full_2x_sse2(q, dq, dstu, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_0_2x_sse2(q, dq, dstu, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
}
|
|
|
|
q += 32;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if (((short *)(eobs))[2]) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (((short *)(eobs))[2] & 0xfefe) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_full_2x_sse2(q, dq, dstv, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_0_2x_sse2(q, dq, dstv, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
}
|
|
|
|
q += 32;
|
|
|
|
dstv += stride * 4;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if (((short *)(eobs))[3]) {
|
2016-07-19 08:15:57 +02:00
|
|
|
if (((short *)(eobs))[3] & 0xfefe) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_full_2x_sse2(q, dq, dstv, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
} else {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_idct_dequant_0_2x_sse2(q, dq, dstv, stride);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|