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
|
|
|
|
2010-09-07 20:21:27 +02:00
|
|
|
/* place these declarations here because we don't want to maintain them
|
|
|
|
* outside of this scope
|
|
|
|
*/
|
2011-10-18 18:06:50 +02:00
|
|
|
void idct_dequant_full_2x_neon(short *q, short *dq,
|
|
|
|
unsigned char *dst, int stride);
|
|
|
|
void idct_dequant_0_2x_neon(short *q, short dq,
|
|
|
|
unsigned char *dst, int stride);
|
|
|
|
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
void vp8_dequant_idct_add_y_block_neon(short *q, short *dq,
|
|
|
|
unsigned char *dst,
|
|
|
|
int stride, char *eobs)
|
2010-08-20 19:58:19 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
2011-10-18 18:06:50 +02:00
|
|
|
if (((short *)(eobs))[0])
|
|
|
|
{
|
|
|
|
if (((short *)eobs)[0] & 0xfefe)
|
|
|
|
idct_dequant_full_2x_neon (q, dq, dst, stride);
|
|
|
|
else
|
|
|
|
idct_dequant_0_2x_neon (q, dq[0], dst, stride);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((short *)(eobs))[1])
|
|
|
|
{
|
|
|
|
if (((short *)eobs)[1] & 0xfefe)
|
|
|
|
idct_dequant_full_2x_neon (q+32, dq, dst+8, stride);
|
|
|
|
else
|
|
|
|
idct_dequant_0_2x_neon (q+32, dq[0], dst+8, stride);
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
q += 64;
|
|
|
|
dst += 4*stride;
|
|
|
|
eobs += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq,
|
|
|
|
unsigned char *dstu,
|
|
|
|
unsigned char *dstv,
|
|
|
|
int stride, char *eobs)
|
2010-08-20 19:58:19 +02:00
|
|
|
{
|
2011-10-18 18:06:50 +02:00
|
|
|
if (((short *)(eobs))[0])
|
|
|
|
{
|
|
|
|
if (((short *)eobs)[0] & 0xfefe)
|
|
|
|
idct_dequant_full_2x_neon (q, dq, dstu, stride);
|
|
|
|
else
|
|
|
|
idct_dequant_0_2x_neon (q, dq[0], dstu, stride);
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2010-09-07 20:21:27 +02:00
|
|
|
q += 32;
|
|
|
|
dstu += 4*stride;
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
if (((short *)(eobs))[1])
|
|
|
|
{
|
|
|
|
if (((short *)eobs)[1] & 0xfefe)
|
|
|
|
idct_dequant_full_2x_neon (q, dq, dstu, stride);
|
|
|
|
else
|
|
|
|
idct_dequant_0_2x_neon (q, dq[0], dstu, stride);
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
|
2010-09-07 20:21:27 +02:00
|
|
|
q += 32;
|
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
if (((short *)(eobs))[2])
|
|
|
|
{
|
|
|
|
if (((short *)eobs)[2] & 0xfefe)
|
|
|
|
idct_dequant_full_2x_neon (q, dq, dstv, stride);
|
|
|
|
else
|
|
|
|
idct_dequant_0_2x_neon (q, dq[0], dstv, stride);
|
|
|
|
}
|
2010-09-07 20:21:27 +02:00
|
|
|
|
|
|
|
q += 32;
|
|
|
|
dstv += 4*stride;
|
|
|
|
|
2011-10-18 18:06:50 +02:00
|
|
|
if (((short *)(eobs))[3])
|
|
|
|
{
|
|
|
|
if (((short *)eobs)[3] & 0xfefe)
|
|
|
|
idct_dequant_full_2x_neon (q, dq, dstv, stride);
|
|
|
|
else
|
|
|
|
idct_dequant_0_2x_neon (q, dq[0], dstv, stride);
|
|
|
|
}
|
2010-08-20 19:58:19 +02:00
|
|
|
}
|