~ubuntu-branches/ubuntu/vivid/gstreamer-vaapi/vivid

« back to all changes in this revision

Viewing changes to gst-libs/gst/codecparsers/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2014-08-06 23:56:00 UTC
  • mfrom: (0.1.4 sid) (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140806235600-fg1kcmiu67k315q5
Tags: 0.5.9-2
* Remove spurious build-deps: libva-drm1, libavcodec-dev. (Closes: #757283)
* Drop Build-Depends-Indep and build docs unconditionally on all archs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
        $(GST_LIBS)                             \
19
19
        $(NULL)
20
20
 
21
 
gen_source_c = parserutils.c
22
 
gen_source_h = parserutils.h
 
21
add_source_c =
 
22
add_source_h =
 
23
gen_source_c = parserutils.c nalutils.c
 
24
gen_source_h = parserutils.h nalutils.h
23
25
 
24
26
# Always build VC-1 and MPEG-4 parsers for now
25
27
gen_source_c += gstvc1parser.c gstmpeg4parser.c
40
42
gen_source_h += gsth264parser.h
41
43
endif
42
44
 
 
45
if USE_LOCAL_CODEC_PARSERS_VP8
 
46
gen_source_c += gstvp8parser.c
 
47
gen_source_h += gstvp8parser.h gstvp8rangedecoder.h vp8utils.h
 
48
 
 
49
if USE_BUILTIN_LIBVPX
 
50
add_source_c += gstvaapilibvpx.c
 
51
 
 
52
libgstvaapi_codecparsers_cflags += \
 
53
        -I$(top_srcdir)/ext/libvpx \
 
54
        -I$(top_srcdir)/ext/libvpx/upstream \
 
55
        -I$(top_builddir)/ext/libvpx/upstream
 
56
 
 
57
libgstvaapi_codecparsers_libs += \
 
58
        $(top_builddir)/ext/libvpx/libgstcodecparsers_vpx.la
 
59
else
 
60
gen_source_c += dboolhuff.c gstvp8rangedecoder.c vp8utils.c
 
61
gen_source_h += dboolhuff.h
 
62
endif
 
63
endif
 
64
 
43
65
GENFILES = \
44
66
        $(gen_source_c)                         \
45
67
        $(gen_source_h)                         \
49
71
 
50
72
nodist_libgstvaapi_codecparsers_la_SOURCES =    \
51
73
        $(gen_source_c)                         \
 
74
        $(add_source_c)                         \
52
75
        $(NULL)
53
76
 
54
77
libgstvaapi_codecparsers_la_CFLAGS =            \
72
95
        $(LN_S) -f $< $@
73
96
$(gen_source_h): %.h: $(local_codecparsers_srcdir)/%.h
74
97
        $(LN_S) -f $< $@
 
98
$(top_builddir)/ext/libvpx/libgstcodecparsers_vpx.la:
 
99
        $(MAKE) -C $(top_builddir)/ext/libvpx
 
100
 
 
101
EXTRA_DIST = gstvaapilibvpx.c
75
102
 
76
103
DISTCLEANFILES = $(GENFILES) .timestamp.symlinks
77
104