summaryrefslogtreecommitdiff
path: root/vp8/decoder/generic
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2011-08-19 14:06:00 -0400
committerJohn Koleszar <jkoleszar@google.com>2012-01-30 12:06:27 -0800
commita910049aea5e2be97b232dbdd7700d078eb7ecd0 (patch)
tree756d6b7f6a9e9af9006a6ecee4ad3a4d3c809627 /vp8/decoder/generic
parent57cc35dd603491a90524c04ef23dfbbef3d1af5a (diff)
downloadlibvpx-a910049aea5e2be97b232dbdd7700d078eb7ecd0.tar
libvpx-a910049aea5e2be97b232dbdd7700d078eb7ecd0.tar.gz
libvpx-a910049aea5e2be97b232dbdd7700d078eb7ecd0.tar.bz2
libvpx-a910049aea5e2be97b232dbdd7700d078eb7ecd0.zip
New RTCD implementation
This is a proof of concept RTCD implementation to replace the current system of nested includes, prototypes, INVOKE macros, etc. Currently only the decoder specific functions are implemented in the new system. Additional functions will be added in subsequent commits. Overview: RTCD "functions" are implemented as either a global function pointer or a macro (when only one eligible specialization available). Functions which have RTCD specializations are listed using a simple DSL identifying the function's base name, its prototype, and the architecture extensions that specializations are available for. Advantages over the old system: - No INVOKE macros. A call to an RTCD function looks like an ordinary function call. - No need to pass vtables around. - If there is only one eligible function to call, the function is called directly, rather than indirecting through a function pointer. - Supports the notion of "required" extensions, so in combination with the above, on x86_64 if the best function available is sse2 or lower it will be called directly, since all x86_64 platforms implement sse2. - Elides all references to functions which will never be called, which could reduce binary size. For example if sse2 is required and there are both mmx and sse2 implementations of a certain function, the code will have no link time references to the mmx code. - Significantly easier to add a new function, just one file to edit. Disadvantages: - Requires global writable data (though this is not a new requirement) - 1 new generated source file. Change-Id: Iae6edab65315f79c168485c96872641c5aa09d55
Diffstat (limited to 'vp8/decoder/generic')
-rw-r--r--vp8/decoder/generic/dsystemdependent.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/vp8/decoder/generic/dsystemdependent.c b/vp8/decoder/generic/dsystemdependent.c
deleted file mode 100644
index 8a84e566a..000000000
--- a/vp8/decoder/generic/dsystemdependent.c
+++ /dev/null
@@ -1,33 +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 "vp8/common/dequantize.h"
-#include "vp8/decoder/onyxd_int.h"
-
-extern void vp8_arch_x86_decode_init(VP8D_COMP *pbi);
-extern void vp8_arch_arm_decode_init(VP8D_COMP *pbi);
-
-void vp8_dmachine_specific_config(VP8D_COMP *pbi)
-{
- /* Pure C: */
-#if CONFIG_RUNTIME_CPU_DETECT
- pbi->mb.rtcd = &pbi->common.rtcd;
-#endif
-
-#if ARCH_X86 || ARCH_X86_64
- vp8_arch_x86_decode_init(pbi);
-#endif
-
-#if ARCH_ARM
- vp8_arch_arm_decode_init(pbi);
-#endif
-}