blob: 21fdd98dd39f20a171cb627218e6068ea558350b [file] [log] [blame]
Yaowu Xuf883b422016-08-30 14:01:10 -07001##
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002## Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuf883b422016-08-30 14:01:10 -07003##
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004## This source code is subject to the terms of the BSD 2 Clause License and
5## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6## was not distributed with this source code in the LICENSE file, you can
7## obtain it at www.aomedia.org/license/software. If the Alliance for Open
8## Media Patent License 1.0 was not distributed with this source code in the
9## PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuf883b422016-08-30 14:01:10 -070010##
11
12AV1_DX_EXPORTS += exports_dec
13
14AV1_DX_SRCS-yes += $(AV1_COMMON_SRCS-yes)
15AV1_DX_SRCS-no += $(AV1_COMMON_SRCS-no)
16AV1_DX_SRCS_REMOVE-yes += $(AV1_COMMON_SRCS_REMOVE-yes)
17AV1_DX_SRCS_REMOVE-no += $(AV1_COMMON_SRCS_REMOVE-no)
18
19AV1_DX_SRCS-yes += av1_dx_iface.c
20
21AV1_DX_SRCS-yes += decoder/decodemv.c
22AV1_DX_SRCS-yes += decoder/decodeframe.c
23AV1_DX_SRCS-yes += decoder/decodeframe.h
24AV1_DX_SRCS-yes += decoder/detokenize.c
25AV1_DX_SRCS-yes += decoder/decodemv.h
Angie Chiangcea11f22017-02-24 12:30:40 -080026AV1_DX_SRCS-$(CONFIG_LV_MAP) += decoder/decodetxb.c
27AV1_DX_SRCS-$(CONFIG_LV_MAP) += decoder/decodetxb.h
Yaowu Xuf883b422016-08-30 14:01:10 -070028AV1_DX_SRCS-yes += decoder/detokenize.h
29AV1_DX_SRCS-yes += decoder/dthread.c
30AV1_DX_SRCS-yes += decoder/dthread.h
31AV1_DX_SRCS-yes += decoder/decoder.c
32AV1_DX_SRCS-yes += decoder/decoder.h
33AV1_DX_SRCS-yes += decoder/dsubexp.c
34AV1_DX_SRCS-yes += decoder/dsubexp.h
Angie Chiang85e3b962017-10-01 16:04:43 -070035AV1_DX_SRCS-yes += decoder/symbolrate.h
Yaowu Xuf883b422016-08-30 14:01:10 -070036
Luc Trudeau83fbd572017-04-21 11:24:34 -040037ifeq ($(CONFIG_ACCOUNTING),yes)
38AV1_DX_SRCS-yes += decoder/accounting.h
39AV1_DX_SRCS-yes += decoder/accounting.c
40endif
41
Nathan E. Egge2cf03b12017-02-22 16:19:59 -050042ifeq ($(CONFIG_INSPECTION),yes)
43AV1_DX_SRCS-yes += decoder/inspection.c
44AV1_DX_SRCS-yes += decoder/inspection.h
45endif
46
Yaowu Xuf883b422016-08-30 14:01:10 -070047AV1_DX_SRCS-yes := $(filter-out $(AV1_DX_SRCS_REMOVE-yes),$(AV1_DX_SRCS-yes))