mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Add codecparsers submodule.
This commit is contained in:
parent
8ddef13c07
commit
c3b343f324
6 changed files with 46 additions and 1 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "ext/codecparsers"]
|
||||||
|
path = ext/codecparsers
|
||||||
|
url = git://gitorious.org/vaapi/gstreamer-codecparsers.git
|
|
@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
|
||||||
SUBDIRS = debian.upstream gst-libs gst pkgconfig tests docs
|
SUBDIRS = debian.upstream gst-libs gst pkgconfig tests docs ext
|
||||||
|
|
||||||
# Extra clean files so that maintainer-clean removes *everything*
|
# Extra clean files so that maintainer-clean removes *everything*
|
||||||
MAINTAINERCLEANFILES = \
|
MAINTAINERCLEANFILES = \
|
||||||
|
|
11
autogen.sh
11
autogen.sh
|
@ -15,6 +15,17 @@ cd "$srcdir"
|
||||||
|
|
||||||
mkdir -p m4
|
mkdir -p m4
|
||||||
|
|
||||||
|
GIT=`which git`
|
||||||
|
if test -z "$GIT"; then
|
||||||
|
echo "*** No git found ***"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
if test ! -f ext/codecparsers/autogen.sh; then
|
||||||
|
$GIT submodule init
|
||||||
|
fi
|
||||||
|
$GIT submodule update
|
||||||
|
fi
|
||||||
|
|
||||||
GTKDOCIZE=`which gtkdocize`
|
GTKDOCIZE=`which gtkdocize`
|
||||||
if test -z "$GTKDOCIZE"; then
|
if test -z "$GTKDOCIZE"; then
|
||||||
echo "*** No gtk-doc support ***"
|
echo "*** No gtk-doc support ***"
|
||||||
|
|
|
@ -530,6 +530,7 @@ debian.upstream/libgstvaapi-x11.install.in
|
||||||
docs/reference/libs/libs-docs.xml
|
docs/reference/libs/libs-docs.xml
|
||||||
docs/reference/plugins/Makefile
|
docs/reference/plugins/Makefile
|
||||||
docs/reference/plugins/plugins-docs.xml
|
docs/reference/plugins/plugins-docs.xml
|
||||||
|
ext/Makefile
|
||||||
gst-libs/Makefile
|
gst-libs/Makefile
|
||||||
gst-libs/gst/Makefile
|
gst-libs/gst/Makefile
|
||||||
gst-libs/gst/codecparsers/Makefile
|
gst-libs/gst/codecparsers/Makefile
|
||||||
|
|
29
ext/Makefile.am
Normal file
29
ext/Makefile.am
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
EXTRA_DIST =
|
||||||
|
|
||||||
|
codecparsers_srcdir = \
|
||||||
|
$(top_srcdir)/ext/codecparsers/gst-libs/gst/codecparsers
|
||||||
|
|
||||||
|
codecparsers_source_c = \
|
||||||
|
gsth264parser.c \
|
||||||
|
gstjpegparser.c \
|
||||||
|
gstmpeg4parser.c \
|
||||||
|
gstmpegvideoparser.c \
|
||||||
|
gstvc1parser.c \
|
||||||
|
parserutils.c \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
EXTRA_DIST += $(codecparsers_source_c:%.c=$(codecparsers_srcdir)/%.c)
|
||||||
|
|
||||||
|
codecparsers_source_h = \
|
||||||
|
gsth264parser.h \
|
||||||
|
gstjpegparser.h \
|
||||||
|
gstmpeg4parser.h \
|
||||||
|
gstmpegvideoparser.h \
|
||||||
|
gstvc1parser.h \
|
||||||
|
parserutils.h \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
EXTRA_DIST += $(codecparsers_source_h:%.h=$(codecparsers_srcdir)/%.h)
|
||||||
|
|
||||||
|
# Extra clean files so that maintainer-clean removes *everything*
|
||||||
|
MAINTAINERCLEANFILES = Makefile.in
|
1
ext/codecparsers
Submodule
1
ext/codecparsers
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 70dfc67bc6953363a4273bbd0381f09433cea36f
|
Loading…
Reference in a new issue