diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4f84416 --- /dev/null +++ b/.gitignore @@ -0,0 +1,68 @@ +aclocal.m4 +autom4te.cache +config.h +config.h.in +config.h-new +config.log +config.status +config.guess +config.sub +config.rpath +configure +gst-plugins-good.spec +libtool +stamp-h +stamp-h.in +stamp-h1 +gst-element-check-*.m4 +ltmain.sh +missing +mkinstalldirs +compile +install-sh +depcomp +autoregen.sh +ABOUT-NLS +/INSTALL +_stdint.h +gst-plugins-good-*.tar.* +.dirstamp + +/m4 + +.deps +.libs +*.lo +*.la +*.o +Makefile.in +Makefile +*~ +*.swp +*.gc?? + +/m4 + +/ext/dv/smpte_test +/gst/multifile/test-splitmux-part-reader +/gst/deinterlace/tvtime.h + +tmp-orc.c +*orc.h + +/tests/examples/jack/jack_client + +Build +*.user +*.suo +*.ipch +*.sdf +*.opensdf +*.DS_Store + +/test-driver +*.log +*.trs + +/build +/subprojects diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..a6b1eda --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "common"] + path = common + url = git://anongit.freedesktop.org/gstreamer/common diff --git a/autogen.sh b/autogen.sh index 5c8cc67..c2a6563 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,11 @@ #!/bin/sh +# +# gst-plugins-intel autogen.sh +# # Run this to generate all the initial makefiles, etc. +# +# This file has been generated from common/autogen.sh.in via common/update-autogen + test -n "$srcdir" || srcdir=`dirname "$0"` test -n "$srcdir" || srcdir=. @@ -7,8 +13,8 @@ test -n "$srcdir" || srcdir=. olddir=`pwd` cd "$srcdir" -DIE=0 package=gst-plugins-intel +srcfile=gst-plugins-intel.doap # Make sure we have common if test ! -f common/gst-autogen.sh; @@ -27,73 +33,74 @@ then fi . common/gst-autogen.sh -# if no arguments specified then this will be printed -if test -z "$*"; then - echo "+ checking for autogen.sh options" - echo " This autogen script will automatically run ./configure as:" - echo " ./configure $CONFIGURE_DEF_OPT" - echo " To pass any additional options, please specify them on the $0" - echo " command line." +# install pre-commit hook for doing clean commits +if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \); +then + rm -f .git/hooks/pre-commit + if ! ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit 2> /dev/null + then + echo "Failed to create commit hook symlink, copying instead ..." + cp common/hooks/pre-commit.hook .git/hooks/pre-commit + fi +fi + +# GNU gettext automake support doesn't get along with git. +# https://bugzilla.gnome.org/show_bug.cgi?id=661128 +if test -d po ; then + touch -t 200001010000 po/gst-plugins-good-1.0.pot fi CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc' +if test "x$package" = "xgstreamer"; then + CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --enable-docbook --enable-failing-tests --enable-poisoning" +elif test "x$package" = "xgst-plugins-bad"; then + CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --with-player-tests" +fi + autogen_options $@ printf "+ check for build tools" -if test ! -z "$NOCHECK"; then echo " skipped"; else echo; fi -version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262" \ - "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 62 || DIE=1 -version_check "automake" "$AUTOMAKE automake automake-1.11" \ - "ftp://ftp.gnu.org/pub/gnu/automake/" 1 11 || DIE=1 -version_check "autopoint" "autopoint" \ - "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1 -version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \ - "ftp://ftp.gnu.org/pub/gnu/libtool/" 2 2 6 || DIE=1 -version_check "pkg-config" "" \ - "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1 - -die_check $DIE +if test -z "$NOCHECK"; then + echo + + printf " checking for autoreconf ... " + echo + which "autoreconf" 2>/dev/null || { + echo "not found! Please install the autoconf package." + exit 1 + } + + printf " checking for pkg-config ... " + echo + which "pkg-config" 2>/dev/null || { + echo "not found! Please install pkg-config." + exit 1 + } +else + echo ": skipped version checks" +fi -aclocal_check || DIE=1 -autoheader_check || DIE=1 +# if no arguments specified then this will be printed +if test -z "$*" && test -z "$NOCONFIGURE"; then + echo "+ checking for autogen.sh options" + echo " This autogen script will automatically run ./configure as:" + echo " ./configure $CONFIGURE_DEF_OPT" + echo " To pass any additional options, please specify them on the $0" + echo " command line." +fi -die_check $DIE +toplevel_check $srcfile # autopoint -# older autopoint (< 0.12) has a tendency to complain about mkinstalldirs -if test -x mkinstalldirs; then rm mkinstalldirs; fi -# first remove patch if necessary, then run autopoint, then reapply -if test -f po/Makefile.in.in; -then - patch -p0 -R < common/gettext.patch +if test -d po && grep ^AM_GNU_GETTEXT_VERSION configure.ac >/dev/null ; then + tool_run "autopoint" "--force" fi -tool_run "$autopoint --force" -patch -p0 < common/gettext.patch - -tool_run "$libtoolize" "--copy --force" -tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS" -tool_run "$autoheader" - -# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -echo timestamp > stamp-h.in 2> /dev/null -tool_run "$autoconf" -tool_run "$automake" "-a -c" +# aclocal +if test -f acinclude.m4; then rm acinclude.m4; fi -# if enable exists, add an -enable option for each of the lines in that file -if test -f enable; then - for a in `cat enable`; do - CONFIGURE_FILE_OPT="--enable-$a" - done -fi - -# if disable exists, add an -disable option for each of the lines in that file -if test -f disable; then - for a in `cat disable`; do - CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a" - done -fi +autoreconf --force --install || exit 1 test -n "$NOCONFIGURE" && { echo "+ skipping configure stage for package $package, as requested." @@ -104,12 +111,12 @@ test -n "$NOCONFIGURE" && { cd "$olddir" echo "+ running configure ... " -test ! -z "$CONFIGURE_DEF_OPT" && echo " $srcdir/configure default flags: $CONFIGURE_DEF_OPT" -test ! -z "$CONFIGURE_EXT_OPT" && echo " $srcdir/configure external flags: $CONFIGURE_EXT_OPT" -test ! -z "$CONFIGURE_FILE_OPT" && echo " $srcdir/configure enable/disable flags: $CONFIGURE_FILE_OPT" +test ! -z "$CONFIGURE_DEF_OPT" && echo " default flags: $CONFIGURE_DEF_OPT" +test ! -z "$CONFIGURE_EXT_OPT" && echo " external flags: $CONFIGURE_EXT_OPT" echo -"$srcdir/configure" $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || { +echo "$srcdir/configure" $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT +"$srcdir/configure" $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || { echo " configure failed" exit 1 } diff --git a/common b/common new file mode 160000 index 0000000..d015674 --- /dev/null +++ b/common @@ -0,0 +1 @@ +Subproject commit d01567411258358ddc6f632bf0ed2363a36ca795 diff --git a/configure.ac b/configure.ac index f7e300d..3d11e38 100644 --- a/configure.ac +++ b/configure.ac @@ -5,16 +5,19 @@ dnl please read gstreamer/docs/random/autotools before changing this file dnl initialize autoconf dnl releases only do -Wall, git and prerelease does -Werror too dnl use a three digit version number for releases, and four for git/pre -AC_INIT([GStreamer Plug-ins], [1.0.0]) +AC_INIT([GStreamer Plug-ins], [1.8.3], [https://github.com/hizukiayaka/gst-intel-rk], [gst-plugins-intel]) AG_GST_INIT dnl initialize automake -AM_INIT_AUTOMAKE([-Wno-portability 1.11 no-dist-gzip dist-xz tar-ustar]) +AM_INIT_AUTOMAKE([-Wno-portability 1.14 no-dist-gzip dist-xz tar-ustar subdir-objects]) dnl define PACKAGE_VERSION_* variables AS_VERSION +dnl check if this is a release version +AS_NANO(GST_GIT="no", GST_GIT="yes") + dnl define the output header for config AM_CONFIG_HEADER([config.h]) @@ -37,11 +40,11 @@ AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION", [GStreamer API Version]) AG_GST_LIBTOOL_PREPARE -AS_LIBTOOL(GST, 5, 0, 5) +AS_LIBTOOL(GST, 801, 0, 801) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.0.0 -GSTPB_REQ=1.0.0 +GST_REQ=1.8.0 +GSTPB_REQ=1.8.3 dnl *** autotools stuff **** @@ -55,7 +58,7 @@ dnl set up gettext dnl the version check needs to stay here because autopoint greps for it AM_GNU_GETTEXT_VERSION([0.17]) AM_GNU_GETTEXT([external]) -AG_GST_GETTEXT([gst-plugins-$GST_API_VERSION]) +AG_GST_GETTEXT([gst-plugins-intel-$GST_API_VERSION]) dnl *** check for arguments to configure *** diff --git a/gst-plugins-intel.doap b/gst-plugins-intel.doap new file mode 100644 index 0000000..deafb9e --- /dev/null +++ b/gst-plugins-intel.doap @@ -0,0 +1,776 @@ + + + GStreamer Good Plug-ins + gst-plugins-intel + + 2005-09-06 + +a set of good-quality plug-ins under our preferred license, LGPL + + +GStreamer Good Plug-ins is a set of plug-ins that we consider to have good +quality code and correct functionality, under our preferred license (LGPL for +the plug-in code, LGPL or LGPL-compatible for the supporting library). + + + + + + C + + + + + + + + + + + + + 1.10.0 + master + + 2016-11-01 + + + + + + + 1.9.90 + master + + 2016-09-30 + + + + + + + 1.9.2 + master + + 2016-09-01 + + + + + + + 1.9.1 + master + + 2016-06-06 + + + + + + + 1.8.0 + master + + 2016-03-24 + + + + + + + 1.7.91 + master + + 2016-03-15 + + + + + + + 1.7.90 + master + + 2016-03-01 + + + + + + + 1.7.2 + master + + 2016-02-19 + + + + + + + 1.7.1 + master + + 2015-12-24 + + + + + + + 1.6.2 + 1.6 + + 2015-12-14 + + + + + + + 1.6.1 + 1.6 + + 2015-10-30 + + + + + + + 1.6.0 + 1.6 + + 2015-09-25 + + + + + + + 1.5.91 + 1.5 + + 2015-09-18 + + + + + + + 1.5.90 + 1.5 + + 2015-08-19 + + + + + + + 1.5.2 + 1.5 + + 2015-06-24 + + + + + + + 1.5.1 + 1.5 + + 2015-06-07 + + + + + + + 1.4.0 + 1.4 + + 2014-07-19 + + + + + + + 1.3.91 + 1.3 + + 2014-07-11 + + + + + + + 1.3.90 + 1.3 + + 2014-06-28 + + + + + + + 1.3.3 + 1.3 + + 2014-06-22 + + + + + + + 1.3.2 + 1.3 + + 2014-05-21 + + + + + + + 1.3.1 + 1.3 + + 2014-05-03 + + + + + + + 1.2.0 + 1.2 + + 2013-09-24 + + + + + + + 1.1.90 + 1.1 + + 2013-09-19 + + + + + + + 1.1.4 + 1.1 + + 2013-08-28 + + + + + + + 1.1.3 + 1.1 + + 2013-07-29 + + + + + + + 1.1.2 + 1.1 + + 2013-07-11 + + + + + + + 1.1.1 + 1.1 + + 2013-06-05 + + + + + + + 1.0.2 + 1.0 + + 2012-10-24 + + + + + + + 1.0.1 + 1.0 + + 2012-10-07 + + + + + + + 1.0.0 + 1.0 + + 2012-09-24 + + + + + + + 0.11.99 + 0.11 + Been Around for a Long Long Year + 2012-09-17 + + + + + + + 0.11.94 + 0.11 + Beatiful Tango + 2012-09-14 + + + + + + + 0.11.93 + 0.11 + Poetic Pitbull Revolutions + 2012-08-08 + + + + + + + 0.11.92 + 0.11 + Money + 2012-06-07 + + + + + + + 0.11.91 + 0.11 + I smell the blood of an Englishman + 2012-05-13 + + + + + + + 0.11.90 + 0.11 + From grief and moan to a gold throne + 2012-04-12 + + + + + + + + 0.11.2 + 0.11 + Rite of Devastation + 2012-03-22 + + + + + + + + 0.11.1 + 0.11 + The Leper Affinity + 2012-02-16 + + + + + + + + 0.10.30 + 0.10 + Adagio + 2011-06-15 + + + + + + + + 0.10.29 + 0.10 + Soft Cheese Enthusiast + 2011-05-10 + + + + + + + + 0.10.28 + 0.10 + Inconvenienced by the Solar System + 2011-03-08 + + + + + + + + 0.10.27 + 0.10 + Some Kind of Temporal Blend + 2011-01-21 + + + + + + + + 0.10.26 + 0.10 + Escapades + 2010-12-01 + + + + + + + + 0.10.25 + 0.10 + Woe to You Oh Earth and Sea + 2010-09-02 + + + + + + + + 0.10.24 + 0.10 + Taking Liberties + 2010-07-15 + + + + + + + + 0.10.23 + 0.10 + Stylish Kids in Riot + 2010-05-30 + + + + + + + + 0.10.22 + 0.10 + Square One + 2010-04-27 + + + + + + + + 0.10.21 + 0.10 + Lemons + 2010-03-08 + + + + + + + + 0.10.20 + 0.10 + Lemonade + 2010-03-08 + + + + + + + + 0.10.19 + 0.10 + Closer to the Edit + 2010-03-06 + + + + + + + + 0.10.18 + 0.10 + Short Circuit + 2010-02-10 + + + + + + + + 0.10.17 + 0.10 + They used to sparkle + 2009-11-17 + + + + + + + + 0.10.16 + 0.10 + Secret Handshakes + 2009-08-28 + + + + + + + + 0.10.15 + 0.10 + I've been up all night + 2009-05-20 + + + + + + + + 0.10.14 + 0.10 + Disaffected Affectation + 2009-02-19 + + + + + + + + 0.10.13 + 0.10 + Blatant Discouragement + 2009-01-22 + + + + + + + + 0.10.12 + 0.10 + Taken Under Advisement + 2009-01-22 + + + + + + + + 0.10.11 + 0.10 + Secondary Consideration + 2008-10-24 + + + + + + + + 0.10.10 + 0.10 + Barely Moving + 2008-08-26 + + + + + + + + 0.10.9 + 0.10 + Steam Train Rolling + 2008-07-31 + + + + + + + + 0.10.8 + 0.10 + One For The Money + 2008-04-24 + + + + + + + + 0.10.7 + 0.10 + Red Door Black + 2008-01-20 + + + + + + + + 0.10.6 + 0.10 + Wobble Board + 2007-06-19 + + + + + + + + 0.10.5 + 0.10 + The Path of Thorns + 2006-12-21 + + + + + + + + 0.10.4 + 0.10 + Dear Leader + 2006-08-14 + + + + + + + + 0.10.3 + 0.10 + Desplazado + 2006-05-04 + + + + + + + + 0.10.2 + 0.10 + Papa was a rolling stone + 2006-02-09 + + + + + + + + 0.10.1 + 0.10 + Li + 2006-01-13 + + + + + + + + 0.10.0 + 0.10 + Abondance + 2005-12-05 + + + + + + + + Wim Taymans + 0d93fde052812d51a05fd86de9bdbf674423daa2 + + + +