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-07-03 19:54:50 +02:00
|
|
|
|
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_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
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
void vp9_set_mb_mi(VP9_COMMON *cm, int width, int height) {
|
|
|
|
const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
|
|
|
|
const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2);
|
|
|
|
|
2013-08-22 23:45:24 +02:00
|
|
|
cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
|
|
|
|
cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
|
2014-08-12 20:24:24 +02:00
|
|
|
cm->mi_stride = calc_mi_size(cm->mi_cols);
|
2013-10-01 20:54:10 +02:00
|
|
|
|
|
|
|
cm->mb_cols = (cm->mi_cols + 1) >> 1;
|
|
|
|
cm->mb_rows = (cm->mi_rows + 1) >> 1;
|
|
|
|
cm->MBs = cm->mb_rows * cm->mb_cols;
|
2013-06-06 05:56:37 +02:00
|
|
|
}
|
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
void vp9_free_ref_frame_buffers(VP9_COMMON *cm) {
|
2014-03-19 19:50:04 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < FRAME_BUFFERS; ++i) {
|
|
|
|
if (cm->frame_bufs[i].ref_count > 0 &&
|
|
|
|
cm->frame_bufs[i].raw_frame_buffer.data != NULL) {
|
|
|
|
cm->release_fb_cb(cm->cb_priv, &cm->frame_bufs[i].raw_frame_buffer);
|
|
|
|
cm->frame_bufs[i].ref_count = 0;
|
|
|
|
}
|
2014-11-03 21:25:18 +01:00
|
|
|
vpx_free(cm->frame_bufs[i].mvs);
|
|
|
|
cm->frame_bufs[i].mvs = NULL;
|
|
|
|
vp9_free_frame_buffer(&cm->frame_bufs[i].buf);
|
2014-03-19 19:50:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
vp9_free_frame_buffer(&cm->post_proc_buffer);
|
2014-06-17 01:22:28 +02:00
|
|
|
}
|
2014-03-19 19:50:04 +01:00
|
|
|
|
2014-06-17 01:22:28 +02:00
|
|
|
void vp9_free_context_buffers(VP9_COMMON *cm) {
|
2014-11-03 20:23:22 +01:00
|
|
|
cm->free_mi(cm);
|
2014-03-19 19:50:04 +01:00
|
|
|
vpx_free(cm->last_frame_seg_map);
|
|
|
|
cm->last_frame_seg_map = NULL;
|
2014-03-25 02:32:46 +01:00
|
|
|
vpx_free(cm->above_context);
|
|
|
|
cm->above_context = NULL;
|
2014-03-21 00:08:54 +01:00
|
|
|
vpx_free(cm->above_seg_context);
|
|
|
|
cm->above_seg_context = NULL;
|
2014-03-19 19:50:04 +01:00
|
|
|
}
|
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
int vp9_alloc_context_buffers(VP9_COMMON *cm, int width, int height) {
|
|
|
|
vp9_free_context_buffers(cm);
|
2013-11-14 23:55:49 +01:00
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
vp9_set_mb_mi(cm, width, height);
|
2014-11-03 20:23:22 +01:00
|
|
|
if (cm->alloc_mi(cm, cm->mi_stride * calc_mi_size(cm->mi_rows)))
|
2014-08-12 20:24:24 +02:00
|
|
|
goto fail;
|
2013-11-14 23:55:49 +01:00
|
|
|
|
2014-03-10 22:53:30 +01:00
|
|
|
cm->last_frame_seg_map = (uint8_t *)vpx_calloc(cm->mi_rows * cm->mi_cols, 1);
|
2014-07-11 00:35:51 +02:00
|
|
|
if (!cm->last_frame_seg_map) goto fail;
|
2013-11-14 23:55:49 +01:00
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
cm->above_context = (ENTROPY_CONTEXT *)vpx_calloc(
|
|
|
|
2 * mi_cols_aligned_to_sb(cm->mi_cols) * MAX_MB_PLANE,
|
|
|
|
sizeof(*cm->above_context));
|
|
|
|
if (!cm->above_context) goto fail;
|
2014-03-25 02:32:46 +01:00
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
cm->above_seg_context = (PARTITION_CONTEXT *)vpx_calloc(
|
|
|
|
mi_cols_aligned_to_sb(cm->mi_cols), sizeof(*cm->above_seg_context));
|
|
|
|
if (!cm->above_seg_context) goto fail;
|
2014-03-21 00:08:54 +01:00
|
|
|
|
2013-11-14 23:55:49 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
2014-06-17 01:22:28 +02:00
|
|
|
vp9_free_context_buffers(cm);
|
2013-11-14 23:55:49 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-06-17 01:22:28 +02:00
|
|
|
static void init_frame_bufs(VP9_COMMON *cm) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
cm->new_fb_idx = FRAME_BUFFERS - 1;
|
|
|
|
cm->frame_bufs[cm->new_fb_idx].ref_count = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < REF_FRAMES; ++i) {
|
|
|
|
cm->ref_frame_map[i] = i;
|
|
|
|
cm->frame_bufs[i].ref_count = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
int vp9_alloc_ref_frame_buffers(VP9_COMMON *cm, int width, int height) {
|
2014-06-17 01:22:28 +02:00
|
|
|
int i;
|
2013-08-23 05:04:24 +02:00
|
|
|
const int ss_x = cm->subsampling_x;
|
|
|
|
const int ss_y = cm->subsampling_y;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
vp9_free_ref_frame_buffers(cm);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-06-17 01:22:28 +02:00
|
|
|
for (i = 0; i < FRAME_BUFFERS; ++i) {
|
2014-01-29 21:48:01 +01:00
|
|
|
cm->frame_bufs[i].ref_count = 0;
|
|
|
|
if (vp9_alloc_frame_buffer(&cm->frame_bufs[i].buf, width, height,
|
2014-08-26 21:35:15 +02:00
|
|
|
ss_x, ss_y,
|
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
cm->use_highbitdepth,
|
|
|
|
#endif
|
|
|
|
VP9_ENC_BORDER_IN_PIXELS) < 0)
|
2013-06-06 05:56:37 +02:00
|
|
|
goto fail;
|
2014-10-28 00:19:04 +01:00
|
|
|
if (cm->frame_bufs[i].mvs == NULL) {
|
|
|
|
cm->frame_bufs[i].mvs =
|
|
|
|
(MV_REF *)vpx_calloc(cm->mi_rows * cm->mi_cols,
|
|
|
|
sizeof(*cm->frame_bufs[i].mvs));
|
|
|
|
if (cm->frame_bufs[i].mvs == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
cm->frame_bufs[i].mi_rows = cm->mi_rows;
|
|
|
|
cm->frame_bufs[i].mi_cols = cm->mi_cols;
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-06-17 01:22:28 +02:00
|
|
|
init_frame_bufs(cm);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-06-28 00:08:07 +02:00
|
|
|
#if CONFIG_INTERNAL_STATS || CONFIG_VP9_POSTPROC
|
2013-08-23 05:04:24 +02:00
|
|
|
if (vp9_alloc_frame_buffer(&cm->post_proc_buffer, width, height, ss_x, ss_y,
|
2014-08-26 21:35:15 +02:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
cm->use_highbitdepth,
|
|
|
|
#endif
|
2014-01-10 22:10:39 +01:00
|
|
|
VP9_ENC_BORDER_IN_PIXELS) < 0)
|
2013-06-06 05:56:37 +02:00
|
|
|
goto fail;
|
2014-06-28 00:08:07 +02:00
|
|
|
#endif
|
2013-06-06 05:56:37 +02:00
|
|
|
|
2014-06-17 01:22:28 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
2014-07-11 00:35:51 +02:00
|
|
|
vp9_free_ref_frame_buffers(cm);
|
2013-06-06 05:56:37 +02:00
|
|
|
return 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-01-15 15:43:35 +01:00
|
|
|
|
2013-08-23 05:04:24 +02:00
|
|
|
void vp9_remove_common(VP9_COMMON *cm) {
|
2014-07-11 00:35:51 +02:00
|
|
|
vp9_free_ref_frame_buffers(cm);
|
2014-06-17 01:22:28 +02:00
|
|
|
vp9_free_context_buffers(cm);
|
2014-02-06 02:44:42 +01:00
|
|
|
vp9_free_internal_frame_buffers(&cm->int_frame_buffers);
|
2014-10-30 02:38:18 +01:00
|
|
|
|
|
|
|
vpx_free(cm->fc);
|
|
|
|
cm->fc = NULL;
|
|
|
|
vpx_free(cm->frame_contexts);
|
|
|
|
cm->frame_contexts = NULL;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-04-30 20:14:27 +02:00
|
|
|
|
2014-07-11 00:35:51 +02:00
|
|
|
void vp9_init_context_buffers(VP9_COMMON *cm) {
|
2014-11-03 20:23:22 +01:00
|
|
|
cm->setup_mi(cm);
|
2013-08-10 01:21:27 +02:00
|
|
|
if (cm->last_frame_seg_map)
|
|
|
|
vpx_memset(cm->last_frame_seg_map, 0, cm->mi_rows * cm->mi_cols);
|
2013-04-30 20:14:27 +02:00
|
|
|
}
|