FIX: [stagefright] dyload the whole codec to prevent potential future api breakage
[vuplus_xbmc] / xbmc / cores / dvdplayer / DVDCodecs / Video / Makefile.in
1 INCLUDES+=-I@abs_top_srcdir@/xbmc/cores/dvdplayer
2
3 SRCS  = DVDVideoCodecFFmpeg.cpp
4 SRCS += DVDVideoCodecLibMpeg2.cpp
5 SRCS += DVDVideoPPFFmpeg.cpp
6
7 ifeq (@USE_VDPAU@,1)
8 SRCS += VDPAU.cpp
9 endif
10 ifeq (@USE_VAAPI@,1)
11 SRCS += VAAPI.cpp
12 endif
13 ifeq (@USE_CRYSTALHD@,1)
14 SRCS += CrystalHD.cpp
15 SRCS += DVDVideoCodecCrystalHD.cpp
16 endif
17 ifeq ($(findstring osx,@ARCH@),osx)
18 SRCS += DVDVideoCodecVDA.cpp
19 endif
20 ifeq (@USE_OPENMAX@,1)
21 SRCS += OpenMax.cpp
22 SRCS += OpenMaxVideo.cpp
23 SRCS += DVDVideoCodecOpenMax.cpp
24 endif
25 ifeq (@USE_LIBAMCODEC@,1)
26 SRCS += AMLCodec.cpp
27 SRCS += DVDVideoCodecAmlogic.cpp
28 INCLUDES += -I$(prefix)/include/amcodec
29 INCLUDES += -I$(prefix)/include/amplayer
30 endif
31
32 ifeq (@USE_ANDROID@,1)
33 SRCS += DVDVideoCodecAndroidMediaCodec.cpp
34 endif
35 ifeq (@USE_LIBSTAGEFRIGHT@,1)
36 SRCS += DVDVideoCodecStageFright.cpp
37 endif
38
39 LIB=Video.a
40
41 include @abs_top_srcdir@/Makefile.include
42 -include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))
43