chromium/third_party/libvpx/source/libvpx/vp9/common/vp9_alloccommon.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_config.h"
#include "vpx_mem/vpx_mem.h"

#include "vp9/common/vp9_alloccommon.h"
#include "vp9/common/vp9_blockd.h"
#include "vp9/common/vp9_entropymode.h"
#include "vp9/common/vp9_entropymv.h"
#include "vp9/common/vp9_onyxc_int.h"

void vp9_set_mi_size(int *mi_rows, int *mi_cols, int *mi_stride, int width,
                     int height) {}

void vp9_set_mb_size(int *mb_rows, int *mb_cols, int *mb_num, int mi_rows,
                     int mi_cols) {}

void vp9_set_mb_mi(VP9_COMMON *cm, int width, int height) {}

static int alloc_seg_map(VP9_COMMON *cm, int seg_map_size) {}

static void free_seg_map(VP9_COMMON *cm) {}

void vp9_free_ref_frame_buffers(BufferPool *pool) {}

void vp9_free_postproc_buffers(VP9_COMMON *cm) {}

void vp9_free_context_buffers(VP9_COMMON *cm) {}

int vp9_alloc_loop_filter(VP9_COMMON *cm) {}

int vp9_alloc_context_buffers(VP9_COMMON *cm, int width, int height) {}

void vp9_remove_common(VP9_COMMON *cm) {}

void vp9_init_context_buffers(VP9_COMMON *cm) {}

void vp9_swap_current_and_last_seg_map(VP9_COMMON *cm) {}