Skip to content
GitLab
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
c351aa7f
Commit
c351aa7f
authored
Feb 17, 2011
by
John Koleszar
Committed by
Code Review
Feb 17, 2011
Browse files
Merge "Fix relative include paths"
parents
da9402fb
02321de0
Changes
70
Hide whitespace changes
Inline
Side-by-side
vp8/common/arm/arm_systemdependent.c
View file @
c351aa7f
...
...
@@ -11,13 +11,13 @@
#include
"vpx_ports/config.h"
#include
"vpx_ports/arm.h"
#include
"g_common.h"
#include
"pragmas.h"
#include
"subpixel.h"
#include
"loopfilter.h"
#include
"recon.h"
#include
"idct.h"
#include
"onyxc_int.h"
#include
"
vp8/common/
g_common.h"
#include
"
vp8/common/
pragmas.h"
#include
"
vp8/common/
subpixel.h"
#include
"
vp8/common/
loopfilter.h"
#include
"
vp8/common/
recon.h"
#include
"
vp8/common/
idct.h"
#include
"
vp8/common/
onyxc_int.h"
extern
void
(
*
vp8_build_intra_predictors_mby_ptr
)(
MACROBLOCKD
*
x
);
extern
void
vp8_build_intra_predictors_mby
(
MACROBLOCKD
*
x
);
...
...
vp8/common/arm/bilinearfilter_arm.c
View file @
c351aa7f
...
...
@@ -10,9 +10,9 @@
#include
<math.h>
#include
"filter.h"
#include
"subpixel.h"
#include
"
arm/
bilinearfilter_arm.h"
#include
"
vp8/common/
filter.h"
#include
"
vp8/common/
subpixel.h"
#include
"bilinearfilter_arm.h"
void
vp8_filter_block2d_bil_armv6
(
...
...
vp8/common/arm/filter_arm.c
View file @
c351aa7f
...
...
@@ -11,8 +11,8 @@
#include
"vpx_ports/config.h"
#include
<math.h>
#include
"filter.h"
#include
"subpixel.h"
#include
"
vp8/common/
filter.h"
#include
"
vp8/common/
subpixel.h"
#include
"vpx_ports/mem.h"
extern
void
vp8_filter_block2d_first_pass_armv6
...
...
vp8/common/arm/loopfilter_arm.c
View file @
c351aa7f
...
...
@@ -11,8 +11,8 @@
#include
"vpx_ports/config.h"
#include
<math.h>
#include
"loopfilter.h"
#include
"onyxc_int.h"
#include
"
vp8/common/
loopfilter.h"
#include
"
vp8/common/
onyxc_int.h"
extern
prototype_loopfilter
(
vp8_loop_filter_horizontal_edge_armv6
);
extern
prototype_loopfilter
(
vp8_loop_filter_vertical_edge_armv6
);
...
...
vp8/common/arm/neon/recon_neon.c
View file @
c351aa7f
...
...
@@ -10,8 +10,8 @@
#include
"vpx_ports/config.h"
#include
"recon.h"
#include
"blockd.h"
#include
"
vp8/common/
recon.h"
#include
"
vp8/common/
blockd.h"
extern
void
vp8_recon16x16mb_neon
(
unsigned
char
*
pred_ptr
,
short
*
diff_ptr
,
unsigned
char
*
dst_ptr
,
int
ystride
,
unsigned
char
*
udst_ptr
,
unsigned
char
*
vdst_ptr
);
...
...
vp8/common/arm/reconintra_arm.c
View file @
c351aa7f
...
...
@@ -10,10 +10,10 @@
#include
"vpx_ports/config.h"
#include
"blockd.h"
#include
"reconintra.h"
#include
"
vp8/common/
blockd.h"
#include
"
vp8/common/
reconintra.h"
#include
"vpx_mem/vpx_mem.h"
#include
"recon.h"
#include
"
vp8/common/
recon.h"
#if HAVE_ARMV7
extern
void
vp8_build_intra_predictors_mby_neon_func
(
...
...
vp8/common/generic/systemdependent.c
View file @
c351aa7f
...
...
@@ -10,12 +10,12 @@
#include
"vpx_ports/config.h"
#include
"g_common.h"
#include
"subpixel.h"
#include
"loopfilter.h"
#include
"recon.h"
#include
"idct.h"
#include
"onyxc_int.h"
#include
"
vp8/common/
g_common.h"
#include
"
vp8/common/
subpixel.h"
#include
"
vp8/common/
loopfilter.h"
#include
"
vp8/common/
recon.h"
#include
"
vp8/common/
idct.h"
#include
"
vp8/common/
onyxc_int.h"
extern
void
vp8_arch_x86_common_init
(
VP8_COMMON
*
ctx
);
extern
void
vp8_arch_arm_common_init
(
VP8_COMMON
*
ctx
);
...
...
vp8/common/x86/loopfilter_x86.c
View file @
c351aa7f
...
...
@@ -10,7 +10,7 @@
#include
"vpx_ports/config.h"
#include
"loopfilter.h"
#include
"
vp8/common/
loopfilter.h"
prototype_loopfilter
(
vp8_loop_filter_horizontal_edge_c
);
prototype_loopfilter
(
vp8_loop_filter_vertical_edge_c
);
...
...
vp8/common/x86/vp8_asm_stubs.c
View file @
c351aa7f
...
...
@@ -11,7 +11,7 @@
#include
"vpx_ports/config.h"
#include
"vpx_ports/mem.h"
#include
"subpixel.h"
#include
"
vp8/common/
subpixel.h"
extern
const
short
vp8_six_tap_mmx
[
8
][
6
*
8
];
extern
const
short
vp8_bilinear_filters_mmx
[
8
][
2
*
8
];
...
...
vp8/common/x86/x86_systemdependent.c
View file @
c351aa7f
...
...
@@ -11,13 +11,13 @@
#include
"vpx_ports/config.h"
#include
"vpx_ports/x86.h"
#include
"g_common.h"
#include
"subpixel.h"
#include
"loopfilter.h"
#include
"recon.h"
#include
"idct.h"
#include
"pragmas.h"
#include
"onyxc_int.h"
#include
"
vp8/common/
g_common.h"
#include
"
vp8/common/
subpixel.h"
#include
"
vp8/common/
loopfilter.h"
#include
"
vp8/common/
recon.h"
#include
"
vp8/common/
idct.h"
#include
"
vp8/common/
pragmas.h"
#include
"
vp8/common/
onyxc_int.h"
void
vp8_arch_x86_common_init
(
VP8_COMMON
*
ctx
)
{
...
...
vp8/decoder/arm/arm_dsystemdependent.c
View file @
c351aa7f
...
...
@@ -11,11 +11,11 @@
#include
"vpx_ports/config.h"
#include
"vpx_ports/arm.h"
#include
"blockd.h"
#include
"pragmas.h"
#include
"postproc.h"
#include
"dequantize.h"
#include
"onyxd_int.h"
#include
"
vp8/common/
blockd.h"
#include
"
vp8/common/
pragmas.h"
#include
"
vp8/common/
postproc.h"
#include
"
vp8/decoder/
dequantize.h"
#include
"
vp8/decoder/
onyxd_int.h"
void
vp8_arch_arm_decode_init
(
VP8D_COMP
*
pbi
)
{
...
...
vp8/decoder/arm/armv6/idct_blk_v6.c
View file @
c351aa7f
...
...
@@ -9,8 +9,8 @@
*/
#include
"vpx_ports/config.h"
#include
"idct.h"
#include
"dequantize.h"
#include
"
vp8/common/
idct.h"
#include
"
vp8/decoder/
dequantize.h"
void
vp8_dequant_dc_idct_add_y_block_v6
(
short
*
q
,
short
*
dq
,
unsigned
char
*
pre
,
...
...
vp8/decoder/arm/dequantize_arm.c
View file @
c351aa7f
...
...
@@ -10,9 +10,9 @@
#include
"vpx_ports/config.h"
#include
"dequantize.h"
#include
"predictdc.h"
#include
"idct.h"
#include
"
vp8/decoder/
dequantize.h"
#include
"
vp8/common/
predictdc.h"
#include
"
vp8/common/
idct.h"
#include
"vpx_mem/vpx_mem.h"
#if HAVE_ARMV7
...
...
vp8/decoder/arm/neon/idct_blk_neon.c
View file @
c351aa7f
...
...
@@ -9,8 +9,8 @@
*/
#include
"vpx_ports/config.h"
#include
"idct.h"
#include
"dequantize.h"
#include
"
vp8/common/
idct.h"
#include
"
vp8/decoder/
dequantize.h"
/* place these declarations here because we don't want to maintain them
* outside of this scope
...
...
vp8/decoder/decodemv.c
View file @
c351aa7f
...
...
@@ -10,10 +10,10 @@
#include
"treereader.h"
#include
"entropymv.h"
#include
"entropymode.h"
#include
"
vp8/common/
entropymv.h"
#include
"
vp8/common/
entropymode.h"
#include
"onyxd_int.h"
#include
"findnearmv.h"
#include
"
vp8/common/
findnearmv.h"
#if CONFIG_DEBUG
#include
<assert.h>
...
...
vp8/decoder/decodframe.c
View file @
c351aa7f
...
...
@@ -10,28 +10,28 @@
#include
"onyxd_int.h"
#include
"header.h"
#include
"reconintra.h"
#include
"reconintra4x4.h"
#include
"recon.h"
#include
"reconinter.h"
#include
"
vp8/common/
header.h"
#include
"
vp8/common/
reconintra.h"
#include
"
vp8/common/
reconintra4x4.h"
#include
"
vp8/common/
recon.h"
#include
"
vp8/common/
reconinter.h"
#include
"dequantize.h"
#include
"detokenize.h"
#include
"invtrans.h"
#include
"alloccommon.h"
#include
"entropymode.h"
#include
"quant_common.h"
#include
"
vp8/common/
invtrans.h"
#include
"
vp8/common/
alloccommon.h"
#include
"
vp8/common/
entropymode.h"
#include
"
vp8/common/
quant_common.h"
#include
"vpx_scale/vpxscale.h"
#include
"vpx_scale/yv12extend.h"
#include
"setupintrarecon.h"
#include
"
vp8/common/
setupintrarecon.h"
#include
"decodemv.h"
#include
"extend.h"
#include
"
vp8/common/
extend.h"
#include
"vpx_mem/vpx_mem.h"
#include
"idct.h"
#include
"
vp8/common/
idct.h"
#include
"dequantize.h"
#include
"predictdc.h"
#include
"threading.h"
#include
"
vp8/common/
predictdc.h"
#include
"
vp8/common/
threading.h"
#include
"decoderthreading.h"
#include
"dboolhuff.h"
...
...
vp8/decoder/dequantize.c
View file @
c351aa7f
...
...
@@ -11,8 +11,8 @@
#include
"vpx_ports/config.h"
#include
"dequantize.h"
#include
"predictdc.h"
#include
"idct.h"
#include
"
vp8/common/
predictdc.h"
#include
"
vp8/common/
idct.h"
#include
"vpx_mem/vpx_mem.h"
extern
void
vp8_short_idct4x4llm_c
(
short
*
input
,
short
*
output
,
int
pitch
)
;
...
...
vp8/decoder/dequantize.h
View file @
c351aa7f
...
...
@@ -11,7 +11,7 @@
#ifndef DEQUANTIZE_H
#define DEQUANTIZE_H
#include
"blockd.h"
#include
"
vp8/common/
blockd.h"
#define prototype_dequant_block(sym) \
void sym(BLOCKD *x)
...
...
vp8/decoder/detokenize.c
View file @
c351aa7f
...
...
@@ -9,8 +9,8 @@
*/
#include
"type_aliases.h"
#include
"blockd.h"
#include
"
vp8/common/
type_aliases.h"
#include
"
vp8/common/
blockd.h"
#include
"onyxd_int.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/mem.h"
...
...
vp8/decoder/generic/dsystemdependent.c
View file @
c351aa7f
...
...
@@ -10,8 +10,8 @@
#include
"vpx_ports/config.h"
#include
"dequantize.h"
#include
"onyxd_int.h"
#include
"
vp8/decoder/
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
);
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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