5d4cffb35f
This commit adds a pick_sb_mode() function which selects the best 32x32 superblock coding mode. Then it selects the best per-MB modes, compares the two and encodes that in the bitstream. The bitstream coding is rather simplistic right now. At the SB level, we code a bit to indicate whether this block uses SB-coding (32x32 prediction) or MB-coding (anything else), and then we follow with the actual modes. This could and should be modified in the future, but is omitted from this commit because it will likely involve reorganizing much more code rather than just adding SB coding, so it's better to let that be judged on its own merits. Gains on derf: about even, YT/HD: +0.75%, STD/HD: +1.5%. Change-Id: Iae313a7cbd8f75b3c66d04a68b991cb096eaaba6
241 lines
5.1 KiB
C
241 lines
5.1 KiB
C
/*
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
|
|
#include "vpx_ports/config.h"
|
|
#include "recon.h"
|
|
#include "blockd.h"
|
|
|
|
void vp8_recon_b_c
|
|
(
|
|
unsigned char *pred_ptr,
|
|
short *diff_ptr,
|
|
unsigned char *dst_ptr,
|
|
int stride
|
|
) {
|
|
int r, c;
|
|
|
|
for (r = 0; r < 4; r++) {
|
|
for (c = 0; c < 4; c++) {
|
|
int a = diff_ptr[c] + pred_ptr[c];
|
|
|
|
if (a < 0)
|
|
a = 0;
|
|
|
|
if (a > 255)
|
|
a = 255;
|
|
|
|
dst_ptr[c] = (unsigned char) a;
|
|
}
|
|
|
|
dst_ptr += stride;
|
|
diff_ptr += 16;
|
|
pred_ptr += 16;
|
|
}
|
|
}
|
|
|
|
void vp8_recon_uv_b_c
|
|
(
|
|
unsigned char *pred_ptr,
|
|
short *diff_ptr,
|
|
unsigned char *dst_ptr,
|
|
int stride
|
|
) {
|
|
int r, c;
|
|
|
|
for (r = 0; r < 4; r++) {
|
|
for (c = 0; c < 4; c++) {
|
|
int a = diff_ptr[c] + pred_ptr[c];
|
|
|
|
if (a < 0)
|
|
a = 0;
|
|
|
|
if (a > 255)
|
|
a = 255;
|
|
|
|
dst_ptr[c] = (unsigned char) a;
|
|
}
|
|
|
|
dst_ptr += stride;
|
|
diff_ptr += 8;
|
|
pred_ptr += 8;
|
|
}
|
|
}
|
|
void vp8_recon4b_c
|
|
(
|
|
unsigned char *pred_ptr,
|
|
short *diff_ptr,
|
|
unsigned char *dst_ptr,
|
|
int stride
|
|
) {
|
|
int r, c;
|
|
|
|
for (r = 0; r < 4; r++) {
|
|
for (c = 0; c < 16; c++) {
|
|
int a = diff_ptr[c] + pred_ptr[c];
|
|
|
|
if (a < 0)
|
|
a = 0;
|
|
|
|
if (a > 255)
|
|
a = 255;
|
|
|
|
dst_ptr[c] = (unsigned char) a;
|
|
}
|
|
|
|
dst_ptr += stride;
|
|
diff_ptr += 16;
|
|
pred_ptr += 16;
|
|
}
|
|
}
|
|
|
|
void vp8_recon2b_c
|
|
(
|
|
unsigned char *pred_ptr,
|
|
short *diff_ptr,
|
|
unsigned char *dst_ptr,
|
|
int stride
|
|
) {
|
|
int r, c;
|
|
|
|
for (r = 0; r < 4; r++) {
|
|
for (c = 0; c < 8; c++) {
|
|
int a = diff_ptr[c] + pred_ptr[c];
|
|
|
|
if (a < 0)
|
|
a = 0;
|
|
|
|
if (a > 255)
|
|
a = 255;
|
|
|
|
dst_ptr[c] = (unsigned char) a;
|
|
}
|
|
|
|
dst_ptr += stride;
|
|
diff_ptr += 8;
|
|
pred_ptr += 8;
|
|
}
|
|
}
|
|
|
|
#if CONFIG_SUPERBLOCKS
|
|
void vp8_recon_mby_s_c(const vp8_recon_rtcd_vtable_t *rtcd, MACROBLOCKD *xd, uint8_t *dst) {
|
|
int x, y;
|
|
BLOCKD *b = &xd->block[0];
|
|
int stride = b->dst_stride;
|
|
short *diff = b->diff;
|
|
|
|
for (y = 0; y < 16; y++) {
|
|
for (x = 0; x < 16; x++) {
|
|
int a = dst[x] + diff[x];
|
|
if (a < 0)
|
|
a = 0;
|
|
else if (a > 255)
|
|
a = 255;
|
|
dst[x] = a;
|
|
}
|
|
dst += stride;
|
|
diff += 16;
|
|
}
|
|
}
|
|
|
|
void vp8_recon_mbuv_s_c(const vp8_recon_rtcd_vtable_t *rtcd, MACROBLOCKD *xd, uint8_t *udst, uint8_t *vdst) {
|
|
int x, y, i;
|
|
uint8_t *dst = udst;
|
|
|
|
for (i = 0; i < 2; i++, dst = vdst) {
|
|
BLOCKD *b = &xd->block[16 + 4 * i];
|
|
int stride = b->dst_stride;
|
|
short *diff = b->diff;
|
|
|
|
for (y = 0; y < 8; y++) {
|
|
for (x = 0; x < 8; x++) {
|
|
int a = dst[x] + diff[x];
|
|
if (a < 0)
|
|
a = 0;
|
|
else if (a > 255)
|
|
a = 255;
|
|
dst[x] = a;
|
|
}
|
|
dst += stride;
|
|
diff += 8;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void vp8_recon_mby_c(const vp8_recon_rtcd_vtable_t *rtcd, MACROBLOCKD *xd) {
|
|
#if ARCH_ARM
|
|
BLOCKD *b = &xd->block[0];
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
|
|
/*b = &xd->block[4];*/
|
|
b += 4;
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
|
|
/*b = &xd->block[8];*/
|
|
b += 4;
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
|
|
/*b = &xd->block[12];*/
|
|
b += 4;
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
#else
|
|
int i;
|
|
|
|
for (i = 0; i < 16; i += 4) {
|
|
BLOCKD *b = &xd->block[i];
|
|
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void vp8_recon_mb_c(const vp8_recon_rtcd_vtable_t *rtcd, MACROBLOCKD *xd) {
|
|
#if ARCH_ARM
|
|
BLOCKD *b = &xd->block[0];
|
|
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b += 4;
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b += 4;
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b += 4;
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b += 4;
|
|
|
|
/*b = &xd->block[16];*/
|
|
|
|
RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b++;
|
|
b++;
|
|
RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b++;
|
|
b++;
|
|
RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
b++;
|
|
b++;
|
|
RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
#else
|
|
int i;
|
|
|
|
for (i = 0; i < 16; i += 4) {
|
|
BLOCKD *b = &xd->block[i];
|
|
|
|
RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
}
|
|
|
|
for (i = 16; i < 24; i += 2) {
|
|
BLOCKD *b = &xd->block[i];
|
|
|
|
RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
|
|
}
|
|
#endif
|
|
}
|