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
|
|
|
*/
|
|
|
|
|
2012-05-15 01:21:01 +02:00
|
|
|
#include <stdio.h>
|
2013-03-07 21:24:35 +01:00
|
|
|
|
2012-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2012-11-09 02:09:30 +01:00
|
|
|
#include "vp9_rtcd.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_reconintra.h"
|
2013-05-16 02:21:15 +02:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2013-07-09 23:52:20 +02:00
|
|
|
#include "vpx_ports/vpx_once.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-26 03:15:42 +02:00
|
|
|
const TX_TYPE mode2txfm_map[MB_MODE_COUNT] = {
|
|
|
|
DCT_DCT, // DC
|
|
|
|
ADST_DCT, // V
|
|
|
|
DCT_ADST, // H
|
|
|
|
DCT_DCT, // D45
|
|
|
|
ADST_ADST, // D135
|
|
|
|
ADST_DCT, // D117
|
|
|
|
DCT_ADST, // D153
|
|
|
|
DCT_ADST, // D27
|
|
|
|
ADST_DCT, // D63
|
|
|
|
ADST_ADST, // TM
|
|
|
|
DCT_DCT, // NEARESTMV
|
|
|
|
DCT_DCT, // NEARMV
|
|
|
|
DCT_DCT, // ZEROMV
|
|
|
|
DCT_DCT // NEWMV
|
|
|
|
};
|
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
#define intra_pred_sized(type, size) \
|
|
|
|
void vp9_##type##_predictor_##size##x##size##_c(uint8_t *pred_ptr, \
|
|
|
|
ptrdiff_t stride, \
|
|
|
|
uint8_t *above_row, \
|
|
|
|
uint8_t *left_col) { \
|
|
|
|
type##_predictor(pred_ptr, stride, size, above_row, left_col); \
|
|
|
|
}
|
|
|
|
#define intra_pred_allsizes(type) \
|
|
|
|
intra_pred_sized(type, 4) \
|
|
|
|
intra_pred_sized(type, 8) \
|
|
|
|
intra_pred_sized(type, 16) \
|
|
|
|
intra_pred_sized(type, 32)
|
|
|
|
|
|
|
|
static INLINE void d27_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-03-07 21:24:35 +01:00
|
|
|
int r, c;
|
2013-04-23 20:06:11 +02:00
|
|
|
// first column
|
2013-08-08 23:52:39 +02:00
|
|
|
for (r = 0; r < bs - 1; ++r)
|
|
|
|
pred_ptr[r * stride] = ROUND_POWER_OF_TWO(left_col[r] + left_col[r + 1], 1);
|
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[(bs - 1) * stride] = left_col[bs - 1];
|
|
|
|
pred_ptr++;
|
2013-04-23 20:06:11 +02:00
|
|
|
// second column
|
2013-08-08 23:52:39 +02:00
|
|
|
for (r = 0; r < bs - 2; ++r)
|
|
|
|
pred_ptr[r * stride] = ROUND_POWER_OF_TWO(left_col[r] +
|
|
|
|
left_col[r + 1] * 2 +
|
|
|
|
left_col[r + 2], 2);
|
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[(bs - 2) * stride] = ROUND_POWER_OF_TWO(left_col[bs - 2] +
|
|
|
|
left_col[bs - 1] * 3,
|
2013-04-23 20:06:11 +02:00
|
|
|
2);
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[(bs - 1) * stride] = left_col[bs - 1];
|
|
|
|
pred_ptr++;
|
2013-03-07 21:24:35 +01:00
|
|
|
|
2013-04-23 20:06:11 +02:00
|
|
|
// rest of last row
|
2013-08-08 23:52:39 +02:00
|
|
|
for (c = 0; c < bs - 2; ++c)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[(bs - 1) * stride + c] = left_col[bs - 1];
|
2013-03-07 21:24:35 +01:00
|
|
|
|
2013-08-08 23:52:39 +02:00
|
|
|
for (r = bs - 2; r >= 0; --r)
|
|
|
|
for (c = 0; c < bs - 2; ++c)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[r * stride + c] = pred_ptr[(r + 1) * stride + c - 2];
|
2012-05-15 01:21:01 +02:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(d27)
|
2012-05-15 01:21:01 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void d63_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-03-07 21:24:35 +01:00
|
|
|
int r, c;
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 0; r < bs; ++r) {
|
2013-08-08 23:52:39 +02:00
|
|
|
for (c = 0; c < bs; ++c)
|
|
|
|
pred_ptr[c] = r & 1 ? ROUND_POWER_OF_TWO(above_row[r/2 + c] +
|
|
|
|
above_row[r/2 + c + 1] * 2 +
|
|
|
|
above_row[r/2 + c + 2], 2)
|
|
|
|
: ROUND_POWER_OF_TWO(above_row[r/2 + c] +
|
|
|
|
above_row[r/2+ c + 1], 1);
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr += stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-05-15 01:21:01 +02:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(d63)
|
2012-05-15 01:21:01 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void d45_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int r, c;
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 0; r < bs; ++r) {
|
|
|
|
for (c = 0; c < bs; ++c) {
|
|
|
|
if (r + c + 2 < bs * 2)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = ROUND_POWER_OF_TWO(above_row[r + c] +
|
|
|
|
above_row[r + c + 1] * 2 +
|
|
|
|
above_row[r + c + 2], 2);
|
2013-04-23 20:06:11 +02:00
|
|
|
else
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = above_row[bs * 2 - 1];
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-10 21:09:07 +01:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr += stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-05-15 01:21:01 +02:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(d45)
|
2012-05-15 01:21:01 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void d117_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int r, c;
|
2013-04-23 20:06:11 +02:00
|
|
|
// first row
|
2013-07-09 02:25:51 +02:00
|
|
|
for (c = 0; c < bs; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = ROUND_POWER_OF_TWO(above_row[c - 1] + above_row[c], 1);
|
|
|
|
pred_ptr += stride;
|
2013-04-23 20:06:11 +02:00
|
|
|
|
|
|
|
// second row
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[0] = ROUND_POWER_OF_TWO(left_col[0] +
|
|
|
|
above_row[-1] * 2 +
|
|
|
|
above_row[0], 2);
|
2013-07-09 02:25:51 +02:00
|
|
|
for (c = 1; c < bs; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = ROUND_POWER_OF_TWO(above_row[c - 2] +
|
|
|
|
above_row[c - 1] * 2 +
|
|
|
|
above_row[c], 2);
|
|
|
|
pred_ptr += stride;
|
2013-04-23 20:06:11 +02:00
|
|
|
|
|
|
|
// the rest of first col
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[0] = ROUND_POWER_OF_TWO(above_row[-1] +
|
|
|
|
left_col[0] * 2 +
|
|
|
|
left_col[1], 2);
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 3; r < bs; ++r)
|
2013-08-08 23:52:39 +02:00
|
|
|
pred_ptr[(r - 2) * stride] = ROUND_POWER_OF_TWO(left_col[r - 3] +
|
|
|
|
left_col[r - 2] * 2 +
|
|
|
|
left_col[r - 1], 2);
|
2013-04-23 20:06:11 +02:00
|
|
|
// the rest of the block
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 2; r < bs; ++r) {
|
|
|
|
for (c = 1; c < bs; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = pred_ptr[-2 * stride + c - 1];
|
|
|
|
pred_ptr += stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-05-15 01:21:01 +02:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(d117)
|
2012-05-15 01:21:01 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void d135_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int r, c;
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[0] = ROUND_POWER_OF_TWO(left_col[0] +
|
|
|
|
above_row[-1] * 2 +
|
|
|
|
above_row[0], 2);
|
2013-07-09 02:25:51 +02:00
|
|
|
for (c = 1; c < bs; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = ROUND_POWER_OF_TWO(above_row[c - 2] +
|
|
|
|
above_row[c - 1] * 2 +
|
|
|
|
above_row[c], 2);
|
2013-04-23 20:06:11 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[stride] = ROUND_POWER_OF_TWO(above_row[-1] +
|
|
|
|
left_col[0] * 2 +
|
|
|
|
left_col[1], 2);
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 2; r < bs; ++r)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[r * stride] = ROUND_POWER_OF_TWO(left_col[r - 2] +
|
|
|
|
left_col[r - 1] * 2 +
|
|
|
|
left_col[r], 2);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 1; r < bs; ++r) {
|
|
|
|
for (c = 1; c < bs; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = pred_ptr[-stride + c - 1];
|
|
|
|
pred_ptr += stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-05-15 01:21:01 +02:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(d135)
|
2012-05-15 01:21:01 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void d153_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int r, c;
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[0] = ROUND_POWER_OF_TWO(above_row[-1] + left_col[0], 1);
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 1; r < bs; r++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[r * stride] =
|
|
|
|
ROUND_POWER_OF_TWO(left_col[r - 1] + left_col[r], 1);
|
|
|
|
pred_ptr++;
|
|
|
|
|
|
|
|
pred_ptr[0] = ROUND_POWER_OF_TWO(left_col[0] +
|
|
|
|
above_row[-1] * 2 +
|
|
|
|
above_row[0], 2);
|
|
|
|
pred_ptr[stride] = ROUND_POWER_OF_TWO(above_row[-1] +
|
|
|
|
left_col[0] * 2 +
|
|
|
|
left_col[1], 2);
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 2; r < bs; r++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[r * stride] = ROUND_POWER_OF_TWO(left_col[r - 2] +
|
|
|
|
left_col[r - 1] * 2 +
|
|
|
|
left_col[r], 2);
|
|
|
|
pred_ptr++;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-07-09 02:25:51 +02:00
|
|
|
for (c = 0; c < bs - 2; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = ROUND_POWER_OF_TWO(above_row[c - 1] +
|
|
|
|
above_row[c] * 2 +
|
|
|
|
above_row[c + 1], 2);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
for (r = 1; r < bs; ++r) {
|
|
|
|
for (c = 0; c < bs - 2; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = pred_ptr[-stride + c - 2];
|
|
|
|
pred_ptr += stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-05-15 01:21:01 +02:00
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(d153)
|
2012-05-15 01:21:01 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void v_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int r;
|
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memcpy(pred_ptr, above_row, bs);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(v)
|
2013-07-09 02:25:51 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void h_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int r;
|
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(pred_ptr, left_col[r], bs);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(h)
|
2013-07-09 02:25:51 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void tm_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int r, c;
|
2013-07-09 23:52:20 +02:00
|
|
|
int ytop_left = above_row[-1];
|
2013-07-09 02:25:51 +02:00
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
|
|
|
for (c = 0; c < bs; c++)
|
2013-07-09 23:52:20 +02:00
|
|
|
pred_ptr[c] = clip_pixel(left_col[r] + above_row[c] - ytop_left);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(tm)
|
2013-07-09 02:25:51 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void dc_128_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int r;
|
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(pred_ptr, 128, bs);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(dc_128)
|
2013-07-09 02:25:51 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void dc_left_predictor(uint8_t *pred_ptr, ptrdiff_t stride,
|
|
|
|
int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int i, r;
|
|
|
|
int expected_dc = 128;
|
|
|
|
int average = 0;
|
|
|
|
const int count = bs;
|
|
|
|
|
|
|
|
for (i = 0; i < bs; i++)
|
2013-07-09 23:52:20 +02:00
|
|
|
average += left_col[i];
|
2013-07-09 02:25:51 +02:00
|
|
|
expected_dc = (average + (count >> 1)) / count;
|
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(pred_ptr, expected_dc, bs);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(dc_left)
|
2013-07-09 02:25:51 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void dc_top_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int i, r;
|
|
|
|
int expected_dc = 128;
|
|
|
|
int average = 0;
|
|
|
|
const int count = bs;
|
|
|
|
|
|
|
|
for (i = 0; i < bs; i++)
|
2013-07-09 23:52:20 +02:00
|
|
|
average += above_row[i];
|
2013-07-09 02:25:51 +02:00
|
|
|
expected_dc = (average + (count >> 1)) / count;
|
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(pred_ptr, expected_dc, bs);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(dc_top)
|
2013-07-09 02:25:51 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
static INLINE void dc_predictor(uint8_t *pred_ptr, ptrdiff_t stride, int bs,
|
|
|
|
uint8_t *above_row, uint8_t *left_col) {
|
2013-07-09 02:25:51 +02:00
|
|
|
int i, r;
|
|
|
|
int expected_dc = 128;
|
|
|
|
int average = 0;
|
|
|
|
const int count = 2 * bs;
|
|
|
|
|
|
|
|
for (i = 0; i < bs; i++)
|
2013-07-09 23:52:20 +02:00
|
|
|
average += above_row[i];
|
2013-07-09 02:25:51 +02:00
|
|
|
for (i = 0; i < bs; i++)
|
2013-07-09 23:52:20 +02:00
|
|
|
average += left_col[i];
|
2013-07-09 02:25:51 +02:00
|
|
|
expected_dc = (average + (count >> 1)) / count;
|
|
|
|
|
|
|
|
for (r = 0; r < bs; r++) {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(pred_ptr, expected_dc, bs);
|
|
|
|
pred_ptr += stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-09 23:52:20 +02:00
|
|
|
intra_pred_allsizes(dc)
|
|
|
|
#undef intra_pred_allsizes
|
|
|
|
|
|
|
|
typedef void (*intra_pred_fn)(uint8_t *pred_ptr, ptrdiff_t stride,
|
|
|
|
uint8_t *above_row, uint8_t *left_col);
|
|
|
|
|
|
|
|
static intra_pred_fn pred[VP9_INTRA_MODES][4];
|
|
|
|
static intra_pred_fn dc_pred[2][2][4];
|
|
|
|
|
|
|
|
static void init_intra_pred_fn_ptrs(void) {
|
|
|
|
#define intra_pred_allsizes(l, type) \
|
|
|
|
l[0] = vp9_##type##_predictor_4x4; \
|
|
|
|
l[1] = vp9_##type##_predictor_8x8; \
|
|
|
|
l[2] = vp9_##type##_predictor_16x16; \
|
|
|
|
l[3] = vp9_##type##_predictor_32x32
|
|
|
|
|
|
|
|
intra_pred_allsizes(pred[V_PRED], v);
|
|
|
|
intra_pred_allsizes(pred[H_PRED], h);
|
|
|
|
intra_pred_allsizes(pred[D27_PRED], d27);
|
|
|
|
intra_pred_allsizes(pred[D45_PRED], d45);
|
|
|
|
intra_pred_allsizes(pred[D63_PRED], d63);
|
|
|
|
intra_pred_allsizes(pred[D117_PRED], d117);
|
|
|
|
intra_pred_allsizes(pred[D135_PRED], d135);
|
|
|
|
intra_pred_allsizes(pred[D153_PRED], d153);
|
|
|
|
intra_pred_allsizes(pred[TM_PRED], tm);
|
|
|
|
|
|
|
|
intra_pred_allsizes(dc_pred[0][0], dc_128);
|
|
|
|
intra_pred_allsizes(dc_pred[0][1], dc_top);
|
|
|
|
intra_pred_allsizes(dc_pred[1][0], dc_left);
|
|
|
|
intra_pred_allsizes(dc_pred[1][1], dc);
|
|
|
|
|
|
|
|
#undef intra_pred_allsizes
|
|
|
|
}
|
2013-07-09 02:25:51 +02:00
|
|
|
|
|
|
|
static void build_intra_predictors(uint8_t *src, int src_stride,
|
2013-07-09 23:52:20 +02:00
|
|
|
uint8_t *pred_ptr, int stride,
|
|
|
|
MB_PREDICTION_MODE mode, TX_SIZE txsz,
|
2013-07-09 02:25:51 +02:00
|
|
|
int up_available, int left_available,
|
|
|
|
int right_available) {
|
|
|
|
int i;
|
2013-07-09 23:52:20 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, left_col, 64);
|
2013-07-09 02:25:51 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, yabove_data, 128 + 16);
|
2013-07-09 23:52:20 +02:00
|
|
|
uint8_t *above_row = yabove_data + 16;
|
|
|
|
const int bs = 4 << txsz;
|
2013-04-13 01:53:04 +02:00
|
|
|
|
|
|
|
// 127 127 127 .. 127 127 127 127 127 127
|
|
|
|
// 129 A B .. Y Z
|
|
|
|
// 129 C D .. W X
|
|
|
|
// 129 E F .. U V
|
|
|
|
// 129 G H .. S T T T T T
|
|
|
|
// ..
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-07-09 23:52:20 +02:00
|
|
|
once(init_intra_pred_fn_ptrs);
|
[WIP] Add column-based tiling.
This patch adds column-based tiling. The idea is to make each tile
independently decodable (after reading the common frame header) and
also independendly encodable (minus within-frame cost adjustments in
the RD loop) to speed-up hardware & software en/decoders if they used
multi-threading. Column-based tiling has the added advantage (over
other tiling methods) that it minimizes realtime use-case latency,
since all threads can start encoding data as soon as the first SB-row
worth of data is available to the encoder.
There is some test code that does random tile ordering in the decoder,
to confirm that each tile is indeed independently decodable from other
tiles in the same frame. At tile edges, all contexts assume default
values (i.e. 0, 0 motion vector, no coefficients, DC intra4x4 mode),
and motion vector search and ordering do not cross tiles in the same
frame.
t log
Tile independence is not maintained between frames ATM, i.e. tile 0 of
frame 1 is free to use motion vectors that point into any tile of frame
0. We support 1 (i.e. no tiling), 2 or 4 column-tiles.
The loopfilter crosses tile boundaries. I discussed this briefly with Aki
and he says that's OK. An in-loop loopfilter would need to do some sync
between tile threads, but that shouldn't be a big issue.
Resuls: with tiling disabled, we go up slightly because of improved edge
use in the intra4x4 prediction. With 2 tiles, we lose about ~1% on derf,
~0.35% on HD and ~0.55% on STD/HD. With 4 tiles, we lose another ~1.5%
on derf ~0.77% on HD and ~0.85% on STD/HD. Most of this loss is
concentrated in the low-bitrate end of clips, and most of it is because
of the loss of edges at tile boundaries and the resulting loss of intra
predictors.
TODO:
- more tiles (perhaps allow row-based tiling also, and max. 8 tiles)?
- maybe optionally (for EC purposes), motion vectors themselves
should not cross tile edges, or we should emulate such borders as
if they were off-frame, to limit error propagation to within one
tile only. This doesn't have to be the default behaviour but could
be an optional bitstream flag.
Change-Id: I5951c3a0742a767b20bc9fb5af685d9892c2c96f
2013-02-01 18:35:28 +01:00
|
|
|
if (left_available) {
|
2013-07-09 02:25:51 +02:00
|
|
|
for (i = 0; i < bs; i++)
|
2013-07-09 23:52:20 +02:00
|
|
|
left_col[i] = src[i * src_stride - 1];
|
[WIP] Add column-based tiling.
This patch adds column-based tiling. The idea is to make each tile
independently decodable (after reading the common frame header) and
also independendly encodable (minus within-frame cost adjustments in
the RD loop) to speed-up hardware & software en/decoders if they used
multi-threading. Column-based tiling has the added advantage (over
other tiling methods) that it minimizes realtime use-case latency,
since all threads can start encoding data as soon as the first SB-row
worth of data is available to the encoder.
There is some test code that does random tile ordering in the decoder,
to confirm that each tile is indeed independently decodable from other
tiles in the same frame. At tile edges, all contexts assume default
values (i.e. 0, 0 motion vector, no coefficients, DC intra4x4 mode),
and motion vector search and ordering do not cross tiles in the same
frame.
t log
Tile independence is not maintained between frames ATM, i.e. tile 0 of
frame 1 is free to use motion vectors that point into any tile of frame
0. We support 1 (i.e. no tiling), 2 or 4 column-tiles.
The loopfilter crosses tile boundaries. I discussed this briefly with Aki
and he says that's OK. An in-loop loopfilter would need to do some sync
between tile threads, but that shouldn't be a big issue.
Resuls: with tiling disabled, we go up slightly because of improved edge
use in the intra4x4 prediction. With 2 tiles, we lose about ~1% on derf,
~0.35% on HD and ~0.55% on STD/HD. With 4 tiles, we lose another ~1.5%
on derf ~0.77% on HD and ~0.85% on STD/HD. Most of this loss is
concentrated in the low-bitrate end of clips, and most of it is because
of the loss of edges at tile boundaries and the resulting loss of intra
predictors.
TODO:
- more tiles (perhaps allow row-based tiling also, and max. 8 tiles)?
- maybe optionally (for EC purposes), motion vectors themselves
should not cross tile edges, or we should emulate such borders as
if they were off-frame, to limit error propagation to within one
tile only. This doesn't have to be the default behaviour but could
be an optional bitstream flag.
Change-Id: I5951c3a0742a767b20bc9fb5af685d9892c2c96f
2013-02-01 18:35:28 +01:00
|
|
|
} else {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(left_col, 129, bs);
|
[WIP] Add column-based tiling.
This patch adds column-based tiling. The idea is to make each tile
independently decodable (after reading the common frame header) and
also independendly encodable (minus within-frame cost adjustments in
the RD loop) to speed-up hardware & software en/decoders if they used
multi-threading. Column-based tiling has the added advantage (over
other tiling methods) that it minimizes realtime use-case latency,
since all threads can start encoding data as soon as the first SB-row
worth of data is available to the encoder.
There is some test code that does random tile ordering in the decoder,
to confirm that each tile is indeed independently decodable from other
tiles in the same frame. At tile edges, all contexts assume default
values (i.e. 0, 0 motion vector, no coefficients, DC intra4x4 mode),
and motion vector search and ordering do not cross tiles in the same
frame.
t log
Tile independence is not maintained between frames ATM, i.e. tile 0 of
frame 1 is free to use motion vectors that point into any tile of frame
0. We support 1 (i.e. no tiling), 2 or 4 column-tiles.
The loopfilter crosses tile boundaries. I discussed this briefly with Aki
and he says that's OK. An in-loop loopfilter would need to do some sync
between tile threads, but that shouldn't be a big issue.
Resuls: with tiling disabled, we go up slightly because of improved edge
use in the intra4x4 prediction. With 2 tiles, we lose about ~1% on derf,
~0.35% on HD and ~0.55% on STD/HD. With 4 tiles, we lose another ~1.5%
on derf ~0.77% on HD and ~0.85% on STD/HD. Most of this loss is
concentrated in the low-bitrate end of clips, and most of it is because
of the loss of edges at tile boundaries and the resulting loss of intra
predictors.
TODO:
- more tiles (perhaps allow row-based tiling also, and max. 8 tiles)?
- maybe optionally (for EC purposes), motion vectors themselves
should not cross tile edges, or we should emulate such borders as
if they were off-frame, to limit error propagation to within one
tile only. This doesn't have to be the default behaviour but could
be an optional bitstream flag.
Change-Id: I5951c3a0742a767b20bc9fb5af685d9892c2c96f
2013-02-01 18:35:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (up_available) {
|
2013-07-09 23:52:20 +02:00
|
|
|
uint8_t *above_ptr = src - src_stride;
|
2013-07-09 02:25:51 +02:00
|
|
|
if (bs == 4 && right_available && left_available) {
|
2013-07-09 23:52:20 +02:00
|
|
|
above_row = above_ptr;
|
2013-07-09 02:25:51 +02:00
|
|
|
} else {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memcpy(above_row, above_ptr, bs);
|
2013-07-09 02:25:51 +02:00
|
|
|
if (bs == 4 && right_available)
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memcpy(above_row + bs, above_ptr + bs, bs);
|
2013-07-09 02:25:51 +02:00
|
|
|
else
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(above_row + bs, above_row[bs - 1], bs);
|
|
|
|
above_row[-1] = left_available ? above_ptr[-1] : 129;
|
2013-07-09 02:25:51 +02:00
|
|
|
}
|
[WIP] Add column-based tiling.
This patch adds column-based tiling. The idea is to make each tile
independently decodable (after reading the common frame header) and
also independendly encodable (minus within-frame cost adjustments in
the RD loop) to speed-up hardware & software en/decoders if they used
multi-threading. Column-based tiling has the added advantage (over
other tiling methods) that it minimizes realtime use-case latency,
since all threads can start encoding data as soon as the first SB-row
worth of data is available to the encoder.
There is some test code that does random tile ordering in the decoder,
to confirm that each tile is indeed independently decodable from other
tiles in the same frame. At tile edges, all contexts assume default
values (i.e. 0, 0 motion vector, no coefficients, DC intra4x4 mode),
and motion vector search and ordering do not cross tiles in the same
frame.
t log
Tile independence is not maintained between frames ATM, i.e. tile 0 of
frame 1 is free to use motion vectors that point into any tile of frame
0. We support 1 (i.e. no tiling), 2 or 4 column-tiles.
The loopfilter crosses tile boundaries. I discussed this briefly with Aki
and he says that's OK. An in-loop loopfilter would need to do some sync
between tile threads, but that shouldn't be a big issue.
Resuls: with tiling disabled, we go up slightly because of improved edge
use in the intra4x4 prediction. With 2 tiles, we lose about ~1% on derf,
~0.35% on HD and ~0.55% on STD/HD. With 4 tiles, we lose another ~1.5%
on derf ~0.77% on HD and ~0.85% on STD/HD. Most of this loss is
concentrated in the low-bitrate end of clips, and most of it is because
of the loss of edges at tile boundaries and the resulting loss of intra
predictors.
TODO:
- more tiles (perhaps allow row-based tiling also, and max. 8 tiles)?
- maybe optionally (for EC purposes), motion vectors themselves
should not cross tile edges, or we should emulate such borders as
if they were off-frame, to limit error propagation to within one
tile only. This doesn't have to be the default behaviour but could
be an optional bitstream flag.
Change-Id: I5951c3a0742a767b20bc9fb5af685d9892c2c96f
2013-02-01 18:35:28 +01:00
|
|
|
} else {
|
2013-07-09 23:52:20 +02:00
|
|
|
vpx_memset(above_row, 127, bs * 2);
|
|
|
|
above_row[-1] = 127;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2013-07-09 02:25:51 +02:00
|
|
|
|
|
|
|
if (mode == DC_PRED) {
|
2013-07-09 23:52:20 +02:00
|
|
|
dc_pred[left_available][up_available][txsz](pred_ptr, stride,
|
|
|
|
above_row, left_col);
|
2013-07-09 02:25:51 +02:00
|
|
|
} else {
|
2013-07-09 23:52:20 +02:00
|
|
|
pred[mode][txsz](pred_ptr, stride, above_row, left_col);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-16 02:21:15 +02:00
|
|
|
void vp9_predict_intra_block(MACROBLOCKD *xd,
|
|
|
|
int block_idx,
|
2013-05-17 21:50:40 +02:00
|
|
|
int bwl_in,
|
2013-05-16 02:21:15 +02:00
|
|
|
TX_SIZE tx_size,
|
|
|
|
int mode,
|
2013-06-26 04:41:56 +02:00
|
|
|
uint8_t *reference, int ref_stride,
|
2013-05-16 02:21:15 +02:00
|
|
|
uint8_t *predictor, int pre_stride) {
|
2013-05-17 21:50:40 +02:00
|
|
|
const int bwl = bwl_in - tx_size;
|
2013-05-05 00:49:41 +02:00
|
|
|
const int wmask = (1 << bwl) - 1;
|
2013-05-31 21:30:32 +02:00
|
|
|
const int have_top = (block_idx >> bwl) || xd->up_available;
|
|
|
|
const int have_left = (block_idx & wmask) || xd->left_available;
|
|
|
|
const int have_right = ((block_idx & wmask) != wmask);
|
2011-08-05 01:30:27 +02:00
|
|
|
|
2013-05-16 02:21:15 +02:00
|
|
|
assert(bwl >= 0);
|
2013-07-09 02:25:51 +02:00
|
|
|
build_intra_predictors(reference, ref_stride,
|
|
|
|
predictor, pre_stride,
|
|
|
|
mode,
|
2013-07-09 23:52:20 +02:00
|
|
|
tx_size,
|
2013-07-09 02:25:51 +02:00
|
|
|
have_top, have_left,
|
|
|
|
have_right);
|
2013-04-23 20:06:11 +02:00
|
|
|
}
|