2012-11-01 19:09:58 +01:00
|
|
|
##
|
|
|
|
## 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
VP9_DX_EXPORTS += exports_dec
|
|
|
|
|
|
|
|
VP9_DX_SRCS-yes += $(VP9_COMMON_SRCS-yes)
|
|
|
|
VP9_DX_SRCS-no += $(VP9_COMMON_SRCS-no)
|
|
|
|
VP9_DX_SRCS_REMOVE-yes += $(VP9_COMMON_SRCS_REMOVE-yes)
|
|
|
|
VP9_DX_SRCS_REMOVE-no += $(VP9_COMMON_SRCS_REMOVE-no)
|
|
|
|
|
|
|
|
VP9_DX_SRCS-yes += vp9_dx_iface.c
|
|
|
|
|
2012-11-27 22:59:17 +01:00
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_asm_dec_offsets.c
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_dboolhuff.c
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_decodemv.c
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_decodframe.c
|
2012-12-23 16:20:10 +01:00
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_decodframe.h
|
2012-11-27 22:59:17 +01:00
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_detokenize.c
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_dboolhuff.h
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_decodemv.h
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_detokenize.h
|
2012-12-21 00:39:43 +01:00
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_onyxd.h
|
2012-11-27 22:59:17 +01:00
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_onyxd_int.h
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_treereader.h
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_onyxd_if.c
|
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_idct_blk.c
|
2013-04-22 23:53:07 +02:00
|
|
|
VP9_DX_SRCS-yes += decoder/vp9_idct_blk.h
|
2012-11-01 19:09:58 +01:00
|
|
|
|
|
|
|
VP9_DX_SRCS-yes := $(filter-out $(VP9_DX_SRCS_REMOVE-yes),$(VP9_DX_SRCS-yes))
|
|
|
|
|
2012-11-27 22:59:17 +01:00
|
|
|
VP9_DX_SRCS-$(HAVE_SSE2) += decoder/x86/vp9_idct_blk_sse2.c
|
2012-11-07 01:59:01 +01:00
|
|
|
|
2013-04-26 08:26:20 +02:00
|
|
|
VP9_DX_SRCS-$(HAVE_SSE2) += decoder/x86/vp9_dequantize_sse2.c
|
2013-03-05 23:38:00 +01:00
|
|
|
ifeq ($(HAVE_SSE2),yes)
|
2013-04-26 08:26:20 +02:00
|
|
|
vp9/decoder/x86/vp9_dequantize_sse2.c.o: CFLAGS += -msse2
|
|
|
|
vp9/decoder/x86/vp9_dequantize_sse2.c.d: CFLAGS += -msse2
|
2013-03-05 23:38:00 +01:00
|
|
|
endif
|
|
|
|
|
2012-11-07 01:59:01 +01:00
|
|
|
$(eval $(call asm_offsets_template,\
|
2012-11-27 22:59:17 +01:00
|
|
|
vp9_asm_dec_offsets.asm, $(VP9_PREFIX)decoder/vp9_asm_dec_offsets.c))
|