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
|
|
|
*/
|
|
|
|
|
2011-09-15 14:34:12 +02:00
|
|
|
#include "vpx_config.h"
|
2015-05-15 05:27:59 +02:00
|
|
|
#include "alloccommon.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "blockd.h"
|
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
#include "onyxc_int.h"
|
|
|
|
#include "findnearmv.h"
|
|
|
|
#include "entropymode.h"
|
|
|
|
#include "systemdependent.h"
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_de_alloc_frame_buffers(VP8_COMMON *oci) {
|
|
|
|
int i;
|
2016-07-19 08:15:57 +02:00
|
|
|
for (i = 0; i < NUM_YV12_BUFFERS; ++i) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_yv12_de_alloc_frame_buffer(&oci->yv12_fb[i]);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2010-07-22 14:07:32 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_yv12_de_alloc_frame_buffer(&oci->temp_scale_frame);
|
2012-03-22 17:13:18 +01:00
|
|
|
#if CONFIG_POSTPROC
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_yv12_de_alloc_frame_buffer(&oci->post_proc_buffer);
|
2016-07-19 08:15:57 +02:00
|
|
|
if (oci->post_proc_buffer_int_used) {
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_yv12_de_alloc_frame_buffer(&oci->post_proc_buffer_int);
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2012-10-10 20:27:11 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
vpx_free(oci->pp_limits_buffer);
|
|
|
|
oci->pp_limits_buffer = NULL;
|
2016-07-16 00:52:45 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
vpx_free(oci->postproc_state.generated_noise);
|
|
|
|
oci->postproc_state.generated_noise = NULL;
|
2012-03-22 17:13:18 +01:00
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
vpx_free(oci->above_context);
|
|
|
|
vpx_free(oci->mip);
|
2012-04-24 14:33:44 +02:00
|
|
|
#if CONFIG_ERROR_CONCEALMENT
|
2016-07-14 07:26:28 +02:00
|
|
|
vpx_free(oci->prev_mip);
|
|
|
|
oci->prev_mip = NULL;
|
2012-04-24 14:33:44 +02:00
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->above_context = NULL;
|
|
|
|
oci->mip = NULL;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
int vp8_alloc_frame_buffers(VP8_COMMON *oci, int width, int height) {
|
|
|
|
int i;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_de_alloc_frame_buffers(oci);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
/* our internal buffers are always multiples of 16 */
|
|
|
|
if ((width & 0xf) != 0) width += 16 - (width & 0xf);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if ((height & 0xf) != 0) height += 16 - (height & 0xf);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-18 15:54:50 +02:00
|
|
|
for (i = 0; i < NUM_YV12_BUFFERS; ++i) {
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->fb_idx_ref_cnt[i] = 0;
|
|
|
|
oci->yv12_fb[i].flags = 0;
|
|
|
|
if (vp8_yv12_alloc_frame_buffer(&oci->yv12_fb[i], width, height,
|
2016-07-19 08:15:57 +02:00
|
|
|
VP8BORDERINPIXELS) < 0) {
|
2016-07-14 07:26:28 +02:00
|
|
|
goto allocation_fail;
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->new_fb_idx = 0;
|
|
|
|
oci->lst_fb_idx = 1;
|
|
|
|
oci->gld_fb_idx = 2;
|
|
|
|
oci->alt_fb_idx = 3;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->fb_idx_ref_cnt[0] = 1;
|
|
|
|
oci->fb_idx_ref_cnt[1] = 1;
|
|
|
|
oci->fb_idx_ref_cnt[2] = 1;
|
|
|
|
oci->fb_idx_ref_cnt[3] = 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if (vp8_yv12_alloc_frame_buffer(&oci->temp_scale_frame, width, 16,
|
2016-07-19 08:15:57 +02:00
|
|
|
VP8BORDERINPIXELS) < 0) {
|
2016-07-14 07:26:28 +02:00
|
|
|
goto allocation_fail;
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->mb_rows = height >> 4;
|
|
|
|
oci->mb_cols = width >> 4;
|
|
|
|
oci->MBs = oci->mb_rows * oci->mb_cols;
|
|
|
|
oci->mode_info_stride = oci->mb_cols + 1;
|
|
|
|
oci->mip =
|
|
|
|
vpx_calloc((oci->mb_cols + 1) * (oci->mb_rows + 1), sizeof(MODE_INFO));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if (!oci->mip) goto allocation_fail;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->mi = oci->mip + oci->mode_info_stride + 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
/* Allocation of previous mode info will be done in vp8_decode_frame()
|
|
|
|
* as it is a decoder only data */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
oci->above_context =
|
|
|
|
vpx_calloc(sizeof(ENTROPY_CONTEXT_PLANES) * oci->mb_cols, 1);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
if (!oci->above_context) goto allocation_fail;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-10 20:27:11 +02:00
|
|
|
#if CONFIG_POSTPROC
|
2016-07-14 07:26:28 +02:00
|
|
|
if (vp8_yv12_alloc_frame_buffer(&oci->post_proc_buffer, width, height,
|
2016-07-19 08:15:57 +02:00
|
|
|
VP8BORDERINPIXELS) < 0) {
|
2016-07-14 07:26:28 +02:00
|
|
|
goto allocation_fail;
|
2016-07-19 08:15:57 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
|
|
|
|
oci->post_proc_buffer_int_used = 0;
|
|
|
|
memset(&oci->postproc_state, 0, sizeof(oci->postproc_state));
|
|
|
|
memset(oci->post_proc_buffer.buffer_alloc, 128,
|
|
|
|
oci->post_proc_buffer.frame_size);
|
|
|
|
|
|
|
|
/* Allocate buffer to store post-processing filter coefficients.
|
|
|
|
*
|
|
|
|
* Note: Round up mb_cols to support SIMD reads
|
|
|
|
*/
|
|
|
|
oci->pp_limits_buffer = vpx_memalign(16, 24 * ((oci->mb_cols + 1) & ~1));
|
|
|
|
if (!oci->pp_limits_buffer) goto allocation_fail;
|
2012-10-10 20:27:11 +02:00
|
|
|
#endif
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
return 0;
|
2012-10-11 17:46:23 +02:00
|
|
|
|
|
|
|
allocation_fail:
|
2016-07-14 07:26:28 +02:00
|
|
|
vp8_de_alloc_frame_buffers(oci);
|
|
|
|
return 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-10-11 17:46:23 +02:00
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_setup_version(VP8_COMMON *cm) {
|
|
|
|
switch (cm->version) {
|
2010-05-18 17:58:33 +02:00
|
|
|
case 0:
|
2016-07-14 07:26:28 +02:00
|
|
|
cm->no_lpf = 0;
|
|
|
|
cm->filter_type = NORMAL_LOOPFILTER;
|
|
|
|
cm->use_bilinear_mc_filter = 0;
|
|
|
|
cm->full_pixel = 0;
|
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
case 1:
|
2016-07-14 07:26:28 +02:00
|
|
|
cm->no_lpf = 0;
|
|
|
|
cm->filter_type = SIMPLE_LOOPFILTER;
|
|
|
|
cm->use_bilinear_mc_filter = 1;
|
|
|
|
cm->full_pixel = 0;
|
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
case 2:
|
2016-07-14 07:26:28 +02:00
|
|
|
cm->no_lpf = 1;
|
|
|
|
cm->filter_type = NORMAL_LOOPFILTER;
|
|
|
|
cm->use_bilinear_mc_filter = 1;
|
|
|
|
cm->full_pixel = 0;
|
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
case 3:
|
2016-07-14 07:26:28 +02:00
|
|
|
cm->no_lpf = 1;
|
|
|
|
cm->filter_type = SIMPLE_LOOPFILTER;
|
|
|
|
cm->use_bilinear_mc_filter = 1;
|
|
|
|
cm->full_pixel = 1;
|
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
default:
|
2016-07-14 07:26:28 +02:00
|
|
|
/*4,5,6,7 are reserved for future use*/
|
|
|
|
cm->no_lpf = 0;
|
|
|
|
cm->filter_type = NORMAL_LOOPFILTER;
|
|
|
|
cm->use_bilinear_mc_filter = 0;
|
|
|
|
cm->full_pixel = 0;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_create_common(VP8_COMMON *oci) {
|
|
|
|
vp8_machine_specific_config(oci);
|
|
|
|
|
|
|
|
vp8_init_mbmode_probs(oci);
|
|
|
|
vp8_default_bmode_probs(oci->fc.bmode_prob);
|
|
|
|
|
|
|
|
oci->mb_no_coeff_skip = 1;
|
|
|
|
oci->no_lpf = 0;
|
|
|
|
oci->filter_type = NORMAL_LOOPFILTER;
|
|
|
|
oci->use_bilinear_mc_filter = 0;
|
|
|
|
oci->full_pixel = 0;
|
|
|
|
oci->multi_token_partition = ONE_PARTITION;
|
|
|
|
oci->clamp_type = RECON_CLAMP_REQUIRED;
|
|
|
|
|
|
|
|
/* Initialize reference frame sign bias structure to defaults */
|
|
|
|
memset(oci->ref_frame_sign_bias, 0, sizeof(oci->ref_frame_sign_bias));
|
|
|
|
|
|
|
|
/* Default disable buffer to buffer copying */
|
|
|
|
oci->copy_buffer_to_gf = 0;
|
|
|
|
oci->copy_buffer_to_arf = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2016-07-14 07:26:28 +02:00
|
|
|
void vp8_remove_common(VP8_COMMON *oci) { vp8_de_alloc_frame_buffers(oci); }
|