shithub: openh264

Download patch

ref: 31a93de513674bb1a166490ec8d824cadc0c4a97
parent: e39de8d40483f4a00930d9565ae6996142fb4fed
author: Licai Guo <[email protected]>
date: Tue Mar 18 15:47:26 EDT 2014

add missing build files

--- a/Makefile
+++ b/Makefile
@@ -57,9 +57,7 @@
 endif
 
 
-INCLUDES = -Icodec/api/svc -Icodec/common
-#ASM_INCLUDES = -Iprocessing/src/asm/
-ASM_INCLUDES = -Icodec/common/
+INCLUDES = -Icodec/api/svc -Icodec/common/inc
 
 DECODER_INCLUDES = \
     -Icodec/decoder/core/inc \
@@ -81,7 +79,7 @@
 CODEC_UNITTEST_INCLUDES += \
     -Igtest/include \
     -Icodec/processing/interface \
-    -Icodec/common \
+    -Icodec/common/inc \
     -Icodec/encoder/core/inc
 
 H264DEC_INCLUDES = $(DECODER_INCLUDES) -Icodec/console/dec/inc
--- a/build/platform-arch.mk
+++ b/build/platform-arch.mk
@@ -4,6 +4,7 @@
 ifneq ($(filter-out arm64, $(filter arm%, $(ARCH))),)
 ifeq ($(USE_ASM), Yes)
 ASM_ARCH = arm
+ASMFLAGS += -Icodec/common/arm/
 CFLAGS += -DHAVE_NEON
 endif
 endif
--- a/build/platform-x86-common.mk
+++ b/build/platform-x86-common.mk
@@ -1,5 +1,6 @@
 CFLAGS_M32=-m32
 CFLAGS_M64=-m64
+ASM_INCLUDES = -Icodec/common/x86/
 ifeq (, $(ENABLE64BIT))
 ifeq ($(ARCH), x86_64)
 ENABLE64BIT=Yes