1 commit 4bbb21aa5cee6b2f40759aa8b1bd65246a237f79
2 Author: Alex Deryskyba <alex@codesnake.com>
3 Date: Wed May 4 01:38:27 2016 +0200
5 [aml] Fix includes in amcodec/codec.h to make them relative
7 [Taken from upstream commit
8 https://github.com/xbmc/xbmc/commit/4bbb21aa5cee6b2f40759aa8b1bd65246a237f79.]
9 Signed-off-by: Dagg Stompler <daggs@gmx.com>
11 diff --git a/tools/depends/target/libamplayer/libamplayer/include/amcodec/codec.h b/tools/depends/target/libamplayer/libamplayer/include/amcodec/codec.h
12 index 187d4d5..632c24e 100644
13 --- a/tools/depends/target/libamplayer/libamplayer/include/amcodec/codec.h
14 +++ b/tools/depends/target/libamplayer/libamplayer/include/amcodec/codec.h
19 -#include <codec_type.h>
20 -#include <codec_error.h>
21 +#include "codec_type.h"
22 +#include "codec_error.h"
25 int codec_init(codec_para_t *);
26 diff --git a/xbmc/cores/dvdplayer/DVDCodecs/Video/Makefile.in b/xbmc/cores/dvdplayer/DVDCodecs/Video/Makefile.in
27 index a1a3447..1bf5a89 100644
28 --- a/xbmc/cores/dvdplayer/DVDCodecs/Video/Makefile.in
29 +++ b/xbmc/cores/dvdplayer/DVDCodecs/Video/Makefile.in
30 @@ -24,8 +24,6 @@ endif
31 ifeq (@USE_LIBAMCODEC@,1)
33 SRCS += DVDVideoCodecAmlogic.cpp
34 -INCLUDES += -I$(prefix)/include/amcodec
35 -INCLUDES += -I$(prefix)/include/amplayer
38 ifeq (@USE_ANDROID@,1)