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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "vpx_ports/config.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/idct.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "quantize.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/reconintra.h"
|
|
|
|
#include "vp8/common/reconintra4x4.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "encodemb.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/invtrans.h"
|
|
|
|
#include "vp8/common/recon.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "dct.h"
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/g_common.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "encodeintra.h"
|
|
|
|
|
|
|
|
|
2011-02-14 23:18:18 +01:00
|
|
|
#ifdef ENC_DEBUG
|
|
|
|
extern int enc_debug;
|
|
|
|
#endif
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
#if CONFIG_RUNTIME_CPU_DETECT
|
|
|
|
#define IF_RTCD(x) (x)
|
|
|
|
#else
|
|
|
|
#define IF_RTCD(x) NULL
|
|
|
|
#endif
|
2011-05-20 03:37:13 +02:00
|
|
|
|
2011-06-14 12:39:06 +02:00
|
|
|
int vp8_encode_intra(VP8_COMP *cpi, MACROBLOCK *x, int use_dc_pred)
|
|
|
|
{
|
|
|
|
|
|
|
|
int i;
|
|
|
|
int intra_pred_var = 0;
|
|
|
|
(void) cpi;
|
|
|
|
|
|
|
|
if (use_dc_pred)
|
|
|
|
{
|
|
|
|
x->e_mbd.mode_info_context->mbmi.mode = DC_PRED;
|
|
|
|
x->e_mbd.mode_info_context->mbmi.uv_mode = DC_PRED;
|
|
|
|
x->e_mbd.mode_info_context->mbmi.ref_frame = INTRA_FRAME;
|
|
|
|
|
|
|
|
vp8_encode_intra16x16mby(IF_RTCD(&cpi->rtcd), x);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
x->e_mbd.block[i].bmi.as_mode = B_DC_PRED;
|
|
|
|
vp8_encode_intra4x4block(IF_RTCD(&cpi->rtcd), x, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
intra_pred_var = VARIANCE_INVOKE(&cpi->rtcd.variance, getmbss)(x->src_diff);
|
|
|
|
|
|
|
|
return intra_pred_var;
|
|
|
|
}
|
2011-05-20 03:37:13 +02:00
|
|
|
|
|
|
|
void vp8_encode_intra4x4block(const VP8_ENCODER_RTCD *rtcd,
|
|
|
|
MACROBLOCK *x, int ib)
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
2011-05-20 03:37:13 +02:00
|
|
|
BLOCKD *b = &x->e_mbd.block[ib];
|
|
|
|
BLOCK *be = &x->block[ib];
|
|
|
|
|
2011-04-27 19:05:10 +02:00
|
|
|
RECON_INVOKE(&rtcd->common->recon, intra4x4_predict)
|
2011-06-02 19:46:41 +02:00
|
|
|
(b, b->bmi.as_mode, b->predictor);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
ENCODEMB_INVOKE(&rtcd->encodemb, subb)(be, b, 16);
|
|
|
|
|
|
|
|
x->vp8_short_fdct4x4(be->src_diff, be->coeff, 32);
|
|
|
|
|
|
|
|
x->quantize_b(be, b);
|
|
|
|
|
|
|
|
vp8_inverse_transform_b(IF_RTCD(&rtcd->common->idct), b, 32);
|
|
|
|
|
|
|
|
RECON_INVOKE(&rtcd->common->recon, recon)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
|
|
}
|
|
|
|
|
|
|
|
void vp8_encode_intra4x4mby(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *mb)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
MACROBLOCKD *x = &mb->e_mbd;
|
|
|
|
vp8_intra_prediction_down_copy(x);
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
2011-05-20 03:37:13 +02:00
|
|
|
vp8_encode_intra4x4block(rtcd, mb, i);
|
2010-05-18 17:58:33 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vp8_encode_intra16x16mby(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x)
|
|
|
|
{
|
2011-06-23 19:54:02 +02:00
|
|
|
BLOCK *b = &x->block[0];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-03-11 17:35:38 +01:00
|
|
|
RECON_INVOKE(&rtcd->common->recon, build_intra_predictors_mby)(&x->e_mbd);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-06-23 19:54:02 +02:00
|
|
|
ENCODEMB_INVOKE(&rtcd->encodemb, submby)(x->src_diff, *(b->base_src), x->e_mbd.predictor, b->src_stride);
|
2011-02-14 23:18:18 +01:00
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_transform_intra_mby_8x8(x);
|
|
|
|
else
|
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
vp8_transform_intra_mby(x);
|
|
|
|
|
2011-02-14 23:18:18 +01:00
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_quantize_mby_8x8(x);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
vp8_quantize_mby(x);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2010-10-11 23:37:27 +02:00
|
|
|
if (x->optimize)
|
2011-02-14 23:18:18 +01:00
|
|
|
{
|
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_optimize_mby_8x8(x, rtcd);
|
|
|
|
else
|
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
vp8_optimize_mby(x, rtcd);
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-02-14 23:18:18 +01:00
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_inverse_transform_mby_8x8(IF_RTCD(&rtcd->common->idct), &x->e_mbd);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
vp8_inverse_transform_mby(IF_RTCD(&rtcd->common->idct), &x->e_mbd);
|
|
|
|
|
|
|
|
#ifdef ENC_DEBUG
|
|
|
|
if (enc_debug) {
|
|
|
|
int i;
|
|
|
|
printf("Intra qcoeff:\n");
|
|
|
|
printf("%d %d:\n", x->e_mbd.mb_to_left_edge, x->e_mbd.mb_to_top_edge);
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.qcoeff[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("Intra dqcoeff:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.dqcoeff[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("Intra diff:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.diff[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("Intra predictor:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.predictor[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("eobs:\n");
|
|
|
|
for (i=0;i<25;i++)
|
|
|
|
printf("%d ", x->e_mbd.block[i].eob);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2010-10-26 17:37:23 +02:00
|
|
|
RECON_INVOKE(&rtcd->common->recon, recon_mby)
|
|
|
|
(IF_RTCD(&rtcd->common->recon), &x->e_mbd);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void vp8_encode_intra16x16mbuv(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x)
|
|
|
|
{
|
2011-04-27 19:05:10 +02:00
|
|
|
RECON_INVOKE(&rtcd->common->recon, build_intra_predictors_mbuv)(&x->e_mbd);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
ENCODEMB_INVOKE(&rtcd->encodemb, submbuv)(x->src_diff, x->src.u_buffer, x->src.v_buffer, x->e_mbd.predictor, x->src.uv_stride);
|
2011-02-14 23:18:18 +01:00
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_transform_mbuv_8x8(x);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
vp8_transform_mbuv(x);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-02-14 23:18:18 +01:00
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_quantize_mbuv_8x8(x);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
vp8_quantize_mbuv(x);
|
|
|
|
|
|
|
|
#ifdef ENC_DEBUG
|
|
|
|
if (enc_debug) {
|
|
|
|
int i;
|
|
|
|
printf("vp8_encode_intra16x16mbuv\n");
|
|
|
|
printf("%d %d:\n", x->e_mbd.mb_to_left_edge, x->e_mbd.mb_to_top_edge);
|
|
|
|
printf("qcoeff:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.qcoeff[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("dqcoeff:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.dqcoeff[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("diff:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.diff[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("predictor:\n");
|
|
|
|
for (i =0; i<400; i++) {
|
|
|
|
printf("%3d ", x->e_mbd.predictor[i]);
|
|
|
|
if (i%16 == 15) printf("\n");
|
|
|
|
}
|
|
|
|
printf("eobs:\n");
|
|
|
|
for (i=0;i<25;i++)
|
|
|
|
printf("%d ", x->e_mbd.block[i].eob);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
#endif
|
2011-05-11 04:57:51 +02:00
|
|
|
if (x->optimize)
|
2011-02-14 23:18:18 +01:00
|
|
|
{
|
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_optimize_mbuv_8x8(x, rtcd);
|
|
|
|
else
|
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
vp8_optimize_mbuv(x, rtcd);
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-02-14 23:18:18 +01:00
|
|
|
#if CONFIG_T8X8
|
|
|
|
if(x->e_mbd.mode_info_context->mbmi.segment_id >= 2)
|
|
|
|
vp8_inverse_transform_mbuv_8x8(IF_RTCD(&rtcd->common->idct), &x->e_mbd);
|
|
|
|
else
|
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
vp8_inverse_transform_mbuv(IF_RTCD(&rtcd->common->idct), &x->e_mbd);
|
|
|
|
|
|
|
|
vp8_recon_intra_mbuv(IF_RTCD(&rtcd->common->recon), &x->e_mbd);
|
|
|
|
}
|
2011-08-05 01:30:27 +02:00
|
|
|
|
|
|
|
#if CONFIG_I8X8
|
|
|
|
void vp8_encode_intra8x8(const VP8_ENCODER_RTCD *rtcd,
|
|
|
|
MACROBLOCK *x, int ib)
|
|
|
|
{
|
|
|
|
BLOCKD *b = &x->e_mbd.block[ib];
|
|
|
|
BLOCK *be = &x->block[ib];
|
|
|
|
const int iblock[4]={0,1,4,5};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
RECON_INVOKE(&rtcd->common->recon, intra8x8_predict)
|
|
|
|
(b, b->bmi.as_mode, b->predictor);
|
|
|
|
|
|
|
|
for(i=0;i<4;i++)
|
|
|
|
{
|
|
|
|
b = &x->e_mbd.block[ib + iblock[i]];
|
|
|
|
be = &x->block[ib + iblock[i]];
|
|
|
|
ENCODEMB_INVOKE(&rtcd->encodemb, subb)(be, b, 16);
|
|
|
|
x->vp8_short_fdct4x4(be->src_diff, be->coeff, 32);
|
|
|
|
x->quantize_b(be, b);
|
|
|
|
vp8_inverse_transform_b(IF_RTCD(&rtcd->common->idct), b, 32);
|
|
|
|
RECON_INVOKE(&rtcd->common->recon, recon)(b->predictor,
|
|
|
|
b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
extern const int vp8_i8x8_block[4];
|
|
|
|
void vp8_encode_intra8x8mby(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x)
|
|
|
|
{
|
|
|
|
int i, ib;
|
|
|
|
|
|
|
|
for(i=0;i<4;i++)
|
|
|
|
{
|
|
|
|
ib = vp8_i8x8_block[i];
|
|
|
|
vp8_encode_intra8x8(rtcd, x, ib);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void vp8_encode_intra_uv4x4(const VP8_ENCODER_RTCD *rtcd,
|
|
|
|
MACROBLOCK *x, int ib,
|
|
|
|
int mode)
|
|
|
|
{
|
|
|
|
BLOCKD *b = &x->e_mbd.block[ib];
|
|
|
|
BLOCK *be = &x->block[ib];
|
|
|
|
|
|
|
|
RECON_INVOKE(&rtcd->common->recon, intra_uv4x4_predict)
|
|
|
|
(b, mode, b->predictor);
|
|
|
|
|
|
|
|
ENCODEMB_INVOKE(&rtcd->encodemb, subb)(be, b, 8);
|
|
|
|
|
|
|
|
x->vp8_short_fdct4x4(be->src_diff, be->coeff, 16);
|
|
|
|
|
|
|
|
x->quantize_b(be, b);
|
|
|
|
|
|
|
|
vp8_inverse_transform_b(IF_RTCD(&rtcd->common->idct), b, 16);
|
|
|
|
|
|
|
|
RECON_INVOKE(&rtcd->common->recon, recon_uv)(b->predictor,
|
|
|
|
b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void vp8_encode_intra8x8mbuv(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *x)
|
|
|
|
{
|
|
|
|
int i, ib, mode;
|
|
|
|
BLOCKD *b;
|
|
|
|
for(i=0;i<4;i++)
|
|
|
|
{
|
|
|
|
ib = vp8_i8x8_block[i];
|
|
|
|
b = &x->e_mbd.block[ib];
|
|
|
|
mode = b->bmi.as_mode;
|
|
|
|
/*u */
|
|
|
|
vp8_encode_intra_uv4x4(rtcd, x, i+16, mode);
|
|
|
|
/*v */
|
|
|
|
vp8_encode_intra_uv4x4(rtcd, x, i+20, mode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|