mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3af6b0b8a0
The built-in video parsers elements are built into a single DSO named libgstvaapi_parse.so. The various video parsers could be accessed as vaapiparse_CODEC. For now, this only includes a modified version of h264parse so that to support H.264 MVC encoded streams.
25 lines
711 B
Makefile
25 lines
711 B
Makefile
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
SUBDIRS = debian.upstream ext gst-libs gst pkgconfig tests docs patches
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
MAINTAINERCLEANFILES = \
|
|
aclocal.m4 compile config.guess config.sub \
|
|
configure depcomp install-sh ltmain.sh \
|
|
Makefile.in missing config.h.in gtk-doc.make
|
|
|
|
DEB_BUILDDIR = debian.build
|
|
|
|
deb:
|
|
dpkg-buildpackage -rfakeroot -uc -us
|
|
|
|
deb.upstream: dist-bzip2
|
|
-mkdir -p $(DEB_BUILDDIR)
|
|
cd $(DEB_BUILDDIR) && \
|
|
rm -rf $(PACKAGE)-$(VERSION) && \
|
|
tar jxvf ../$(PACKAGE)-$(VERSION).tar.bz2 && \
|
|
cd $(PACKAGE)-$(VERSION) && \
|
|
$(LN_S) debian.upstream debian && \
|
|
$(MAKE) deb -f Makefile.am
|