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-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2013-06-06 05:56:37 +02:00
|
|
|
#include "vp9/common/vp9_blockd.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_entropymode.h"
|
|
|
|
#include "vp9/common/vp9_entropymv.h"
|
2013-06-06 05:56:37 +02:00
|
|
|
#include "vp9/common/vp9_findnearmv.h"
|
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_systemdependent.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
void vp9_update_mode_info_border(VP9_COMMON *cm, MODE_INFO *mi) {
|
|
|
|
const int stride = cm->mode_info_stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
// Clear down top border row
|
2013-04-02 03:23:04 +02:00
|
|
|
vpx_memset(mi, 0, sizeof(MODE_INFO) * stride);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Clear left border column
|
2013-06-06 05:56:37 +02:00
|
|
|
for (i = 1; i < cm->mi_rows + 1; i++)
|
2013-04-02 03:23:04 +02:00
|
|
|
vpx_memset(&mi[i * stride], 0, sizeof(MODE_INFO));
|
2012-01-28 11:07:08 +01:00
|
|
|
}
|
2012-10-30 05:24:12 +01:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
void vp9_update_mode_info_in_image(VP9_COMMON *cm, MODE_INFO *mi) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
// For each in image mode_info element set the in image flag to 1
|
2013-06-06 05:56:37 +02:00
|
|
|
for (i = 0; i < cm->mi_rows; i++) {
|
|
|
|
MODE_INFO *ptr = mi;
|
|
|
|
for (j = 0; j < cm->mi_cols; j++) {
|
2013-04-24 21:28:27 +02:00
|
|
|
ptr->mbmi.mb_in_image = 1;
|
|
|
|
ptr++; // Next element in the row
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-24 21:28:27 +02:00
|
|
|
// Step over border element at start of next row
|
2013-06-06 05:56:37 +02:00
|
|
|
mi += cm->mode_info_stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2010-07-22 14:07:32 +02:00
|
|
|
|
2013-04-02 03:23:04 +02:00
|
|
|
void vp9_free_frame_buffers(VP9_COMMON *oci) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i;
|
2010-07-22 14:07:32 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 0; i < NUM_YV12_BUFFERS; i++)
|
2013-05-07 00:52:06 +02:00
|
|
|
vp9_free_frame_buffer(&oci->yv12_fb[i]);
|
2010-07-22 14:07:32 +02:00
|
|
|
|
2013-05-07 00:52:06 +02:00
|
|
|
vp9_free_frame_buffer(&oci->temp_scale_frame);
|
|
|
|
vp9_free_frame_buffer(&oci->post_proc_buffer);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_free(oci->mip);
|
|
|
|
vpx_free(oci->prev_mip);
|
2013-04-23 19:12:18 +02:00
|
|
|
vpx_free(oci->above_seg_context);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-29 19:37:25 +02:00
|
|
|
vpx_free(oci->above_context[0]);
|
|
|
|
for (i = 0; i < MAX_MB_PLANE; i++)
|
|
|
|
oci->above_context[i] = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
oci->mip = 0;
|
|
|
|
oci->prev_mip = 0;
|
2013-04-23 19:12:18 +02:00
|
|
|
oci->above_seg_context = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) {
|
2013-06-07 00:43:06 +02:00
|
|
|
cm->mb_cols = (aligned_width + 8) >> 4;
|
|
|
|
cm->mb_rows = (aligned_height + 8) >> 4;
|
2013-06-06 05:56:37 +02:00
|
|
|
cm->MBs = cm->mb_rows * cm->mb_cols;
|
|
|
|
|
|
|
|
cm->mi_cols = aligned_width >> LOG2_MI_SIZE;
|
|
|
|
cm->mi_rows = aligned_height >> LOG2_MI_SIZE;
|
|
|
|
cm->mode_info_stride = cm->mi_cols + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setup_mi(VP9_COMMON *cm) {
|
|
|
|
cm->mi = cm->mip + cm->mode_info_stride + 1;
|
|
|
|
cm->prev_mi = cm->prev_mip + cm->mode_info_stride + 1;
|
|
|
|
|
|
|
|
vpx_memset(cm->mip, 0,
|
|
|
|
cm->mode_info_stride * (cm->mi_rows + 1) * sizeof(MODE_INFO));
|
|
|
|
|
|
|
|
vp9_update_mode_info_border(cm, cm->mip);
|
|
|
|
vp9_update_mode_info_in_image(cm, cm->mi);
|
|
|
|
|
|
|
|
vp9_update_mode_info_border(cm, cm->prev_mip);
|
|
|
|
vp9_update_mode_info_in_image(cm, cm->prev_mi);
|
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
int vp9_alloc_frame_buffers(VP9_COMMON *oci, int width, int height) {
|
2013-05-08 00:36:30 +02:00
|
|
|
int i, mi_cols;
|
2010-07-22 14:07:32 +02:00
|
|
|
|
2013-04-02 03:23:04 +02:00
|
|
|
// Our internal buffers are always multiples of 16
|
2013-06-07 00:43:06 +02:00
|
|
|
const int aligned_width = multiple8(width);
|
|
|
|
const int aligned_height = multiple8(height);
|
2013-06-06 05:56:37 +02:00
|
|
|
const int ss_x = oci->subsampling_x;
|
|
|
|
const int ss_y = oci->subsampling_y;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-02 03:23:04 +02:00
|
|
|
vp9_free_frame_buffers(oci);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 0; i < NUM_YV12_BUFFERS; i++) {
|
|
|
|
oci->fb_idx_ref_cnt[i] = 0;
|
2013-06-06 05:56:37 +02:00
|
|
|
if (vp9_alloc_frame_buffer(&oci->yv12_fb[i], width, height, ss_x, ss_y,
|
|
|
|
VP9BORDERINPIXELS) < 0)
|
|
|
|
goto fail;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-01-16 21:19:42 +01:00
|
|
|
oci->new_fb_idx = NUM_YV12_BUFFERS - 1;
|
|
|
|
oci->fb_idx_ref_cnt[oci->new_fb_idx] = 1;
|
|
|
|
|
2013-04-17 20:45:35 +02:00
|
|
|
for (i = 0; i < ALLOWED_REFS_PER_FRAME; i++)
|
2013-01-16 21:19:42 +01:00
|
|
|
oci->active_ref_idx[i] = i;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-01-16 21:19:42 +01:00
|
|
|
for (i = 0; i < NUM_REF_FRAMES; i++) {
|
|
|
|
oci->ref_frame_map[i] = i;
|
|
|
|
oci->fb_idx_ref_cnt[i] = 1;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
if (vp9_alloc_frame_buffer(&oci->temp_scale_frame, width, 16, ss_x, ss_y,
|
|
|
|
VP9BORDERINPIXELS) < 0)
|
|
|
|
goto fail;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
if (vp9_alloc_frame_buffer(&oci->post_proc_buffer, width, height, ss_x, ss_y,
|
|
|
|
VP9BORDERINPIXELS) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
set_mb_mi(oci, aligned_width, aligned_height);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
// Allocation
|
2013-04-26 20:57:17 +02:00
|
|
|
oci->mip = vpx_calloc(oci->mode_info_stride * (oci->mi_rows + 1),
|
|
|
|
sizeof(MODE_INFO));
|
2013-06-06 05:56:37 +02:00
|
|
|
if (!oci->mip)
|
|
|
|
goto fail;
|
2012-02-03 16:10:44 +01:00
|
|
|
|
2013-04-26 20:57:17 +02:00
|
|
|
oci->prev_mip = vpx_calloc(oci->mode_info_stride * (oci->mi_rows + 1),
|
|
|
|
sizeof(MODE_INFO));
|
2013-06-06 05:56:37 +02:00
|
|
|
if (!oci->prev_mip)
|
|
|
|
goto fail;
|
2011-05-02 15:30:51 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
setup_mi(oci);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-29 19:37:25 +02:00
|
|
|
// FIXME(jkoleszar): allocate subsampled arrays for U/V once subsampling
|
|
|
|
// information is exposed at this level
|
2013-05-08 00:36:30 +02:00
|
|
|
mi_cols = mi_cols_aligned_to_sb(oci);
|
2013-06-06 15:07:09 +02:00
|
|
|
|
2013-05-16 02:55:08 +02:00
|
|
|
# if CONFIG_ALPHA
|
|
|
|
// TODO(jkoleszar): Why is this * 2?
|
|
|
|
oci->above_context[0] = vpx_calloc(sizeof(ENTROPY_CONTEXT) * 8 * mi_cols, 1);
|
|
|
|
#else
|
2013-05-08 00:36:30 +02:00
|
|
|
oci->above_context[0] = vpx_calloc(sizeof(ENTROPY_CONTEXT) * 6 * mi_cols, 1);
|
2013-05-16 02:55:08 +02:00
|
|
|
#endif
|
2013-06-06 05:56:37 +02:00
|
|
|
if (!oci->above_context[0])
|
|
|
|
goto fail;
|
|
|
|
|
2013-05-16 02:55:08 +02:00
|
|
|
for (i = 1; i < MAX_MB_PLANE; i++)
|
|
|
|
oci->above_context[i] =
|
|
|
|
oci->above_context[0] + i * sizeof(ENTROPY_CONTEXT) * 2 * mi_cols;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
oci->above_seg_context = vpx_calloc(sizeof(PARTITION_CONTEXT) * mi_cols, 1);
|
|
|
|
if (!oci->above_seg_context)
|
|
|
|
goto fail;
|
2013-04-23 19:12:18 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return 0;
|
2013-06-06 05:56:37 +02:00
|
|
|
|
|
|
|
fail:
|
|
|
|
vp9_free_frame_buffers(oci);
|
|
|
|
return 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-01-15 15:43:35 +01:00
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_setup_version(VP9_COMMON *cm) {
|
2012-07-14 00:21:29 +02:00
|
|
|
if (cm->version & 0x4) {
|
|
|
|
if (!CONFIG_EXPERIMENTAL)
|
|
|
|
vpx_internal_error(&cm->error, VPX_CODEC_UNSUP_BITSTREAM,
|
|
|
|
"Bitstream was created by an experimental "
|
|
|
|
"encoder");
|
|
|
|
cm->experimental = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cm->version & 0x3) {
|
2010-05-18 17:58:33 +02:00
|
|
|
case 0:
|
2012-07-14 00:21:29 +02:00
|
|
|
cm->no_lpf = 0;
|
|
|
|
cm->use_bilinear_mc_filter = 0;
|
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
case 1:
|
2012-07-14 00:21:29 +02:00
|
|
|
cm->no_lpf = 0;
|
|
|
|
cm->use_bilinear_mc_filter = 1;
|
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
case 2:
|
2012-02-16 18:02:17 +01:00
|
|
|
case 3:
|
2012-07-14 00:21:29 +02:00
|
|
|
cm->no_lpf = 1;
|
|
|
|
cm->use_bilinear_mc_filter = 1;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_create_common(VP9_COMMON *oci) {
|
2012-10-31 00:25:53 +01:00
|
|
|
vp9_machine_specific_config(oci);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
vp9_init_mbmode_probs(oci);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
oci->txfm_mode = ONLY_4X4;
|
|
|
|
oci->comp_pred_mode = HYBRID_PREDICTION;
|
|
|
|
oci->no_lpf = 0;
|
|
|
|
oci->use_bilinear_mc_filter = 0;
|
|
|
|
oci->clr_type = REG_YUV;
|
|
|
|
|
2013-04-02 03:23:04 +02:00
|
|
|
// Initialize reference frame sign bias structure to defaults
|
2012-07-14 00:21:29 +02:00
|
|
|
vpx_memset(oci->ref_frame_sign_bias, 0, sizeof(oci->ref_frame_sign_bias));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_remove_common(VP9_COMMON *oci) {
|
2013-04-02 03:23:04 +02:00
|
|
|
vp9_free_frame_buffers(oci);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 00:25:53 +01:00
|
|
|
void vp9_initialize_common() {
|
|
|
|
vp9_coef_tree_initialize();
|
|
|
|
vp9_entropy_mode_init();
|
|
|
|
vp9_entropy_mv_init();
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-04-30 20:14:27 +02:00
|
|
|
|
|
|
|
void vp9_update_frame_size(VP9_COMMON *cm) {
|
2013-06-07 00:43:06 +02:00
|
|
|
const int aligned_width = multiple8(cm->width);
|
|
|
|
const int aligned_height = multiple8(cm->height);
|
2013-04-30 20:14:27 +02:00
|
|
|
|
2013-06-06 05:56:37 +02:00
|
|
|
set_mb_mi(cm, aligned_width, aligned_height);
|
|
|
|
setup_mi(cm);
|
2013-04-30 20:14:27 +02:00
|
|
|
}
|