From 2c594a52751117cc1535fd042931b841cc71afb2 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Wed, 26 Feb 2014 18:07:23 -0800 Subject: Removing vp9_systemdependent.c. Change-Id: I7b9738a7113c0c4687e5d320581ff69d98a8b271 --- vp9/common/generic/vp9_systemdependent.c | 19 ------------------- vp9/common/vp9_alloccommon.c | 2 +- vp9/common/vp9_systemdependent.h | 3 --- 3 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 vp9/common/generic/vp9_systemdependent.c (limited to 'vp9/common') diff --git a/vp9/common/generic/vp9_systemdependent.c b/vp9/common/generic/vp9_systemdependent.c deleted file mode 100644 index 536febb65..000000000 --- a/vp9/common/generic/vp9_systemdependent.c +++ /dev/null @@ -1,19 +0,0 @@ -/* - * 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 "./vp9_rtcd.h" -#include "vp9/common/vp9_onyxc_int.h" - -void vp9_machine_specific_config(VP9_COMMON *cm) { - (void)cm; - vp9_rtcd(); -} diff --git a/vp9/common/vp9_alloccommon.c b/vp9/common/vp9_alloccommon.c index 6f771992b..ff4b7c1f9 100644 --- a/vp9/common/vp9_alloccommon.c +++ b/vp9/common/vp9_alloccommon.c @@ -201,7 +201,7 @@ int vp9_alloc_frame_buffers(VP9_COMMON *cm, int width, int height) { } void vp9_create_common(VP9_COMMON *cm) { - vp9_machine_specific_config(cm); + vp9_rtcd(); } void vp9_remove_common(VP9_COMMON *cm) { diff --git a/vp9/common/vp9_systemdependent.h b/vp9/common/vp9_systemdependent.h index 7455abce3..72edbca55 100644 --- a/vp9/common/vp9_systemdependent.h +++ b/vp9/common/vp9_systemdependent.h @@ -76,9 +76,6 @@ static INLINE int get_msb(unsigned int n) { } #endif -struct VP9Common; -void vp9_machine_specific_config(struct VP9Common *cm); - #ifdef __cplusplus } // extern "C" #endif -- cgit v1.2.3