Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
08acc349
Commit
08acc349
authored
Dec 01, 2014
by
Johann
Browse files
Remove last remnants of obj_int_extract
Change-Id: Icc7da6027763b5ed7cbfe70ffe271103ead59fe1
parent
5370c6f1
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
08acc349
...
...
@@ -44,7 +44,6 @@
/ivfenc.dox
/libvpx.so*
/libvpx.ver
/obj_int_extract
/samples.dox
/test_libvpx
/vp8_api1_migration.dox
...
...
build/make/obj_int_extract.c
deleted
100644 → 0
View file @
5370c6f1
This diff is collapsed.
Click to expand it.
vp8/encoder/vp8_asm_enc_offsets.c
deleted
100644 → 0
View file @
5370c6f1
/*
* Copyright (c) 2011 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_ports/asm_offsets.h"
BEGIN
END
vpx_ports/asm_offsets.h
deleted
100644 → 0
View file @
5370c6f1
/*
* Copyright (c) 2011 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.
*/
#ifndef VPX_PORTS_ASM_OFFSETS_H_
#define VPX_PORTS_ASM_OFFSETS_H_
#include
<stddef.h>
#define ct_assert(name,cond) \
static void assert_##name(void) UNUSED;\
static void assert_##name(void) {switch(0){case 0:case !!(cond):;}}
#if INLINE_ASM
#define DEFINE(sym, val) asm("\n" #sym " EQU %0" : : "i" (val))
#define BEGIN int main(void) {
#define END return 0; }
#else
#define DEFINE(sym, val) const int sym = val
#define BEGIN
#define END
#endif
#endif // VPX_PORTS_ASM_OFFSETS_H_
vpx_ports/vpx_ports.mk
View file @
08acc349
...
...
@@ -11,7 +11,6 @@
PORTS_SRCS-yes
+=
vpx_ports.mk
PORTS_SRCS-$(BUILD_LIBVPX)
+=
asm_offsets.h
PORTS_SRCS-$(BUILD_LIBVPX)
+=
mem.h
PORTS_SRCS-$(BUILD_LIBVPX)
+=
vpx_timer.h
...
...
vpx_scale/vpx_scale_asm_offsets.c
deleted
100644 → 0
View file @
5370c6f1
/*
* Copyright (c) 2011 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_ports/asm_offsets.h"
BEGIN
END
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment