
Use the simplified bool decoder from the bitstream guide, slightly modified to prevent reading past the end of the buffer. Modified the token decoder to use the normal bool decoder rather than inlining its own. Change-Id: Ic525e773e9f8331ba548a6505cc6d9e5372a5af0
95 lines
3.0 KiB
Makefile
95 lines
3.0 KiB
Makefile
##
|
|
## Copyright (c) 2010 The VP8 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 $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
|
|
|
|
VP8_DX_EXPORTS += exports_dec
|
|
|
|
VP8_DX_SRCS-yes += $(VP8_COMMON_SRCS-yes)
|
|
VP8_DX_SRCS-no += $(VP8_COMMON_SRCS-no)
|
|
VP8_DX_SRCS_REMOVE-yes += $(VP8_COMMON_SRCS_REMOVE-yes)
|
|
VP8_DX_SRCS_REMOVE-no += $(VP8_COMMON_SRCS_REMOVE-no)
|
|
|
|
ifeq ($(ARCH_ARM),yes)
|
|
include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8dx_arm.mk
|
|
endif
|
|
|
|
VP8_DX_SRCS-yes += vp8_dx_iface.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += vp8_dixie_iface.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/bit_ops.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/dixie.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/dixie.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/bool_decoder.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/modemv.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/modemv.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/modemv_data.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/tokens.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/tokens.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/predict.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/predict.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/idct_add.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/idct_add.h
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/dixie_loopfilter.c
|
|
VP8_DX_SRCS-$(CONFIG_DIXIE) += dixie/dixie_loopfilter.h
|
|
|
|
CFLAGS+=-I$(SRC_PATH_BARE)/$(VP8_PREFIX)decoder
|
|
|
|
|
|
# common
|
|
#define ARM
|
|
#define DISABLE_THREAD
|
|
#define INLINE=__forceinline
|
|
|
|
#INCLUDES += algo/vpx_common/vpx_mem/include
|
|
#INCLUDES += common
|
|
#INCLUDES += common
|
|
#INCLUDES += common
|
|
#INCLUDES += common
|
|
#INCLUDES += decoder
|
|
|
|
|
|
|
|
# decoder
|
|
#define ARM
|
|
#define DISABLE_THREAD
|
|
#define INLINE=__forceinline
|
|
|
|
#INCLUDES += algo/vpx_common/vpx_mem/include
|
|
#INCLUDES += common
|
|
#INCLUDES += common
|
|
#INCLUDES += common
|
|
#INCLUDES += common
|
|
#INCLUDES += decoder
|
|
|
|
VP8_DX_SRCS-yes += decoder/dboolhuff.c
|
|
VP8_DX_SRCS-yes += decoder/decodemv.c
|
|
VP8_DX_SRCS-yes += decoder/decodframe.c
|
|
VP8_DX_SRCS-yes += decoder/demode.c
|
|
VP8_DX_SRCS-yes += decoder/dequantize.c
|
|
VP8_DX_SRCS-yes += decoder/detokenize.c
|
|
VP8_DX_SRCS-yes += decoder/generic/dsystemdependent.c
|
|
VP8_DX_SRCS-yes += decoder/dboolhuff.h
|
|
VP8_DX_SRCS-yes += decoder/decodemv.h
|
|
VP8_DX_SRCS-yes += decoder/decoderthreading.h
|
|
VP8_DX_SRCS-yes += decoder/demode.h
|
|
VP8_DX_SRCS-yes += decoder/dequantize.h
|
|
VP8_DX_SRCS-yes += decoder/detokenize.h
|
|
VP8_DX_SRCS-yes += decoder/onyxd_int.h
|
|
VP8_DX_SRCS-yes += decoder/treereader.h
|
|
VP8_DX_SRCS-yes += decoder/onyxd_if.c
|
|
VP8_DX_SRCS-yes += decoder/threading.c
|
|
|
|
VP8_DX_SRCS-yes := $(filter-out $(VP8_DX_SRCS_REMOVE-yes),$(VP8_DX_SRCS-yes))
|
|
|
|
VP8_DX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += decoder/x86/dequantize_x86.h
|
|
VP8_DX_SRCS-$(ARCH_X86)$(ARCH_X86_64) += decoder/x86/x86_dsystemdependent.c
|
|
VP8_DX_SRCS-$(HAVE_MMX) += decoder/x86/dequantize_mmx.asm
|