Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
7bb58b1a
Commit
7bb58b1a
authored
Mar 02, 2017
by
Tom Finegan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Group optional configurations in av1/av1.cmake.
Change-Id: I0dd17ec7ea59cecf8298831d0e46e971f744c2c7
parent
b4875826
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
35 deletions
+35
-35
av1/av1.cmake
av1/av1.cmake
+35
-35
No files found.
av1/av1.cmake
View file @
7bb58b1a
...
...
@@ -85,13 +85,6 @@ set(AOM_AV1_DECODER_SOURCES
"
${
AOM_ROOT
}
/av1/decoder/dthread.c"
"
${
AOM_ROOT
}
/av1/decoder/dthread.h"
)
if
(
CONFIG_INSPECTION
)
set
(
AOM_AV1_DECODER_SOURCES
${
AOM_AV1_DECODER_SOURCES
}
"
${
AOM_ROOT
}
/av1/decoder/inspection.c"
"
${
AOM_ROOT
}
/av1/decoder/inspection.h"
)
endif
()
set
(
AOM_AV1_ENCODER_SOURCES
"
${
AOM_ROOT
}
/av1/av1_cx_iface.c"
"
${
AOM_ROOT
}
/av1/encoder/aq_complexity.c"
...
...
@@ -157,13 +150,6 @@ set(AOM_AV1_ENCODER_SOURCES
"
${
AOM_ROOT
}
/av1/encoder/variance_tree.c"
"
${
AOM_ROOT
}
/av1/encoder/variance_tree.h"
)
if
(
CONFIG_PALETTE
)
set
(
AOM_AV1_ENCODER_SOURCES
${
AOM_AV1_ENCODER_SOURCES
}
"
${
AOM_ROOT
}
/av1/encoder/palette.c"
"
${
AOM_ROOT
}
/av1/encoder/palette.h"
)
endif
()
set
(
AOM_AV1_COMMON_SSE2_INTRIN
# Requires CONFIG_GLOBAL_MOTION or CONFIG_WARPED_MOTION
#"${AOM_ROOT}/av1/common/x86/warp_plane_sse2.c"
...
...
@@ -173,17 +159,9 @@ set(AOM_AV1_COMMON_SSSE3_INTRIN
"
${
AOM_ROOT
}
/av1/common/x86/av1_convolve_ssse3.c"
)
set
(
AOM_AV1_COMMON_SSE4_1_INTRIN
# Requires CONFIG_CDEF
#"${AOM_ROOT}/av1/common/x86/od_dering_sse4.c"
"
${
AOM_ROOT
}
/av1/common/x86/av1_fwd_txfm1d_sse4.c"
"
${
AOM_ROOT
}
/av1/common/x86/av1_fwd_txfm2d_sse4.c"
)
if
(
CONFIG_FILTER_INTRA
)
set
(
AOM_AV1_COMMON_SSE4_1_INTRIN
${
AOM_AV1_COMMON_SSE4_1_INTRIN
}
"
${
AOM_ROOT
}
/av1/common/x86/filterintra_sse4.c"
)
endif
()
set
(
AOM_AV1_COMMON_AVX2_INTRIN
"
${
AOM_ROOT
}
/av1/common/x86/hybrid_inv_txfm_avx2.c"
)
...
...
@@ -214,6 +192,22 @@ if (CONFIG_ACCOUNTING)
"
${
AOM_ROOT
}
/av1/common/accounting.h"
)
endif
()
if
(
CONFIG_AOM_HIGHBITDEPTH
)
set
(
AOM_AV1_COMMON_SSE4_1_INTRIN
${
AOM_AV1_COMMON_SSE4_1_INTRIN
}
"
${
AOM_ROOT
}
/av1/common/x86/av1_highbd_convolve_sse4.c"
"
${
AOM_ROOT
}
/av1/common/x86/highbd_inv_txfm_sse4.c"
)
set
(
AOM_AV1_COMMON_AVX2_INTRIN
${
AOM_AV1_COMMON_AVX2_INTRIN
}
"
${
AOM_ROOT
}
/av1/common/x86/highbd_inv_txfm_avx2.c"
)
set
(
AOM_AV1_ENCODER_SSE4_1_INTRIN
${
AOM_AV1_ENCODER_SSE4_1_INTRIN
}
"
${
AOM_ROOT
}
/av1/encoder/x86/av1_highbd_quantize_sse4.c"
"
${
AOM_ROOT
}
/av1/encoder/x86/highbd_fwd_txfm_sse4.c"
)
endif
()
if
(
CONFIG_CDEF
)
set
(
AOM_AV1_COMMON_SOURCES
${
AOM_AV1_COMMON_SOURCES
}
...
...
@@ -269,26 +263,32 @@ if (CONFIG_EXT_INTER)
"
${
AOM_ROOT
}
/av1/encoder/x86/wedge_utils_sse2.c"
)
endif
()
if
(
CONFIG_FILTER_INTRA
)
set
(
AOM_AV1_COMMON_SSE4_1_INTRIN
${
AOM_AV1_COMMON_SSE4_1_INTRIN
}
"
${
AOM_ROOT
}
/av1/common/x86/filterintra_sse4.c"
)
endif
()
if
(
CONFIG_INSPECTION
)
set
(
AOM_AV1_DECODER_SOURCES
${
AOM_AV1_DECODER_SOURCES
}
"
${
AOM_ROOT
}
/av1/decoder/inspection.c"
"
${
AOM_ROOT
}
/av1/decoder/inspection.h"
)
endif
()
if
(
CONFIG_INTERNAL_STATS
)
set
(
AOM_AV1_ENCODER_SOURCES
${
AOM_AV1_ENCODER_SOURCES
}
"
${
AOM_ROOT
}
/av1/encoder/blockiness.c"
)
endif
()
if
(
CONFIG_AOM_HIGHBITDEPTH
)
set
(
AOM_AV1_COMMON_SSE4_1_INTRIN
${
AOM_AV1_COMMON_SSE4_1_INTRIN
}
"
${
AOM_ROOT
}
/av1/common/x86/av1_highbd_convolve_sse4.c"
"
${
AOM_ROOT
}
/av1/common/x86/highbd_inv_txfm_sse4.c"
)
set
(
AOM_AV1_COMMON_AVX2_INTRIN
${
AOM_AV1_COMMON_AVX2_INTRIN
}
"
${
AOM_ROOT
}
/av1/common/x86/highbd_inv_txfm_avx2.c"
)
if
(
CONFIG_PALETTE
)
set
(
AOM_AV1_ENCODER_SOURCES
${
AOM_AV1_ENCODER_SOURCES
}
"
${
AOM_ROOT
}
/av1/encoder/palette.c"
"
${
AOM_ROOT
}
/av1/encoder/palette.h"
)
endif
()
set
(
AOM_AV1_ENCODER_SSE4_1_INTRIN
${
AOM_AV1_ENCODER_SSE4_1_INTRIN
}
"
${
AOM_ROOT
}
/av1/encoder/x86/av1_highbd_quantize_sse4.c"
"
${
AOM_ROOT
}
/av1/encoder/x86/highbd_fwd_txfm_sse4.c"
)
endif
()
# Setup AV1 common/decoder/encoder targets. The libaom target must exist before
...
...
Write
Preview
Markdown
is supported
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