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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INC_INVTRANS_H
|
|
|
|
#define __INC_INVTRANS_H
|
|
|
|
|
2011-09-15 14:34:12 +02:00
|
|
|
#include "vpx_config.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "idct.h"
|
|
|
|
#include "blockd.h"
|
2011-12-15 20:23:36 +01:00
|
|
|
#include "onyxc_int.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-12-21 21:39:39 +01:00
|
|
|
#if CONFIG_MULTITHREAD
|
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
#endif
|
|
|
|
|
2011-12-15 20:23:36 +01:00
|
|
|
static void eob_adjust(char *eobs, short *diff)
|
|
|
|
{
|
|
|
|
/* eob adjust.... the idct can only skip if both the dc and eob are zero */
|
|
|
|
int js;
|
|
|
|
for(js = 0; js < 16; js++)
|
|
|
|
{
|
|
|
|
if((eobs[js] == 0) && (diff[0] != 0))
|
|
|
|
eobs[js]++;
|
|
|
|
diff+=16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vp8_inverse_transform_mby(MACROBLOCKD *xd,
|
|
|
|
const VP8_COMMON_RTCD *rtcd)
|
|
|
|
{
|
2012-01-04 17:56:50 +01:00
|
|
|
short *DQC = xd->dequant_y1;
|
2011-12-21 21:39:39 +01:00
|
|
|
|
2011-12-15 20:23:36 +01:00
|
|
|
if (xd->mode_info_context->mbmi.mode != SPLITMV)
|
|
|
|
{
|
|
|
|
/* do 2nd order transform on the dc block */
|
|
|
|
if (xd->eobs[24] > 1)
|
|
|
|
{
|
|
|
|
IDCT_INVOKE(&rtcd->idct, iwalsh16)
|
|
|
|
(&xd->block[24].dqcoeff[0], xd->qcoeff);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IDCT_INVOKE(&rtcd->idct, iwalsh1)
|
|
|
|
(&xd->block[24].dqcoeff[0], xd->qcoeff);
|
|
|
|
}
|
|
|
|
eob_adjust(xd->eobs, xd->qcoeff);
|
|
|
|
|
2012-01-04 17:56:50 +01:00
|
|
|
DQC = xd->dequant_y1_dc;
|
2011-12-15 20:23:36 +01:00
|
|
|
}
|
|
|
|
DEQUANT_INVOKE (&rtcd->dequant, idct_add_y_block)
|
2011-12-21 21:39:39 +01:00
|
|
|
(xd->qcoeff, DQC,
|
2011-12-15 20:23:36 +01:00
|
|
|
xd->dst.y_buffer,
|
|
|
|
xd->dst.y_stride, xd->eobs);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|