diff -Nru gstreamer-editing-services1.0-1.14.1/bindings/python/gi/overrides/GES.py gstreamer-editing-services1.0-1.14.2/bindings/python/gi/overrides/GES.py --- gstreamer-editing-services1.0-1.14.1/bindings/python/gi/overrides/GES.py 2018-03-23 20:47:44.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/bindings/python/gi/overrides/GES.py 2018-07-18 16:40:26.000000000 +0000 @@ -28,6 +28,7 @@ from ..overrides import override from ..importer import modules + if sys.version_info >= (3, 0): _basestring = str _callable = lambda c: hasattr(c, '__call__') @@ -50,6 +51,29 @@ warnings.warn(warn_msg, RuntimeWarning) +class TrackElement(GES.TrackElement): + def set_child_property(self, prop_name, prop_value): + return TimelineElement.set_child_property(self, prop_name, prop_value) + + +TrackElement = override(TrackElement) +__all__.append('TrackElement') + + +class TimelineElement(GES.TimelineElement): + def set_child_property(self, prop_name, prop_value): + res, child, unused_pspec = self.lookup_child(prop_name) + if not res: + return res + + child.set_property(prop_name, prop_value) + return res + + +TimelineElement = override(TimelineElement) +__all__.append('TimelineElement') + + try: from gi.repository import Gst Gst diff -Nru gstreamer-editing-services1.0-1.14.1/bindings/python/meson.build gstreamer-editing-services1.0-1.14.2/bindings/python/meson.build --- gstreamer-editing-services1.0-1.14.1/bindings/python/meson.build 1970-01-01 00:00:00.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/bindings/python/meson.build 2018-07-18 16:40:26.000000000 +0000 @@ -0,0 +1 @@ +install_data(['gi/overrides/GES.py'], install_dir: pygi_override_dir) \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/ChangeLog gstreamer-editing-services1.0-1.14.2/ChangeLog --- gstreamer-editing-services1.0-1.14.1/ChangeLog 2018-05-17 12:34:36.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/ChangeLog 2018-07-20 00:06:54.000000000 +0000 @@ -1,3 +1,45 @@ +=== release 1.14.2 === + +2018-07-20 01:06:53 +0100 Tim-Philipp Müller + + * ChangeLog: + * NEWS: + * RELEASE: + * configure.ac: + * gst-editing-services.doap: + * meson.build: + Release 1.14.2 + +2018-07-08 10:36:36 -0400 Thibault Saunier + + * bindings/python/gi/overrides/GES.py: + * bindings/python/meson.build: + * meson.build: + * meson_options.txt: + * tests/check/python/overrides_hack.py: + * tests/check/python/test_clip.py: + * tests/check/python/test_group.py: + * tests/check/python/test_timeline.py: + python: Fix GES.Timelineset_child_property + Implementing it in the overrides as PyGObject won't be able to properly + convert python values to GValues in some cases. Using + g_object_set_property works as some logic is implemented inside + PyGObject for that particular case. This is a "regression" due + to https://bugzilla.gnome.org/review?bug=769789&attachment=348766 were + we end up with an OverflowError while setting G_TYPE_UINT children + properties. + +2018-07-01 16:22:24 -0400 Thibault Saunier + + * ges/Makefile.am: + * meson.build: + Set GLib log domain to GES + +2018-07-01 12:21:54 -0400 Thibault Saunier + + * ges/ges-group.c: + group: Fix handling clips that are added to a layer + === release 1.14.1 === 2018-05-17 13:34:35 +0100 Tim-Philipp Müller diff -Nru gstreamer-editing-services1.0-1.14.1/config.guess gstreamer-editing-services1.0-1.14.2/config.guess --- gstreamer-editing-services1.0-1.14.1/config.guess 2018-05-17 12:33:56.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/config.guess 2018-07-20 00:06:14.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2017 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2017-11-07' +timestamp='2018-02-24' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2017 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -107,9 +107,9 @@ dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; + ,,) echo "int x;" > "$dummy.c" ; for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; @@ -132,14 +132,14 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + eval "$set_cc_for_build" + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +149,20 @@ LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -169,30 +176,30 @@ # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - /sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) - arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` - machine=${arch}${endian}-unknown + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -208,10 +215,10 @@ ;; esac # Determine ABI tags. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; esac # The OS release @@ -219,52 +226,55 @@ # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}${abi}" + echo "$machine-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" exit ;; *:MidnightBSD:*:*) - echo ${UNAME_MACHINE}-unknown-midnightbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:Sortix:*:*) - echo ${UNAME_MACHINE}-unknown-sortix + echo "$UNAME_MACHINE"-unknown-sortix exit ;; *:Redox:*:*) - echo ${UNAME_MACHINE}-unknown-redox + echo "$UNAME_MACHINE"-unknown-redox exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -316,7 +326,7 @@ # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 @@ -325,10 +335,10 @@ echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -340,7 +350,7 @@ echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -367,19 +377,19 @@ sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. @@ -392,13 +402,13 @@ SUN_ARCH=x86_64 fi fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -407,25 +417,25 @@ ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -436,44 +446,44 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -494,11 +504,11 @@ exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -524,17 +534,17 @@ AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -551,7 +561,7 @@ echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -563,14 +573,14 @@ if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -581,7 +591,7 @@ exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -595,7 +605,7 @@ exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -604,9 +614,9 @@ IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix @@ -615,7 +625,7 @@ echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -630,28 +640,28 @@ echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in + case "$sc_cpu_version" in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in + case "$sc_kernel_bits" in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -684,13 +694,13 @@ exit (0); } EOF - (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = hppa2.0w ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + eval "$set_cc_for_build" # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -709,15 +719,15 @@ HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -742,7 +752,7 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; @@ -763,9 +773,9 @@ exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -790,109 +800,109 @@ echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + case "$UNAME_PROCESSOR" in amd64) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys + echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -906,63 +916,63 @@ esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -976,70 +986,74 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; mips64el:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-${LIBC} + echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + if objdump -f /bin/sh | grep -q elf32-x86-64; then + echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 + else + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + fi exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1053,34 +1067,34 @@ # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx + echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable + echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} + echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp + echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; i*86:*:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) @@ -1090,12 +1104,12 @@ *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1105,9 +1119,9 @@ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv32 + echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) @@ -1127,9 +1141,9 @@ exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) @@ -1149,9 +1163,9 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; @@ -1160,28 +1174,28 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} + echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} + echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} + echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} + echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} + echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 @@ -1192,7 +1206,7 @@ *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 + echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi @@ -1212,23 +1226,23 @@ exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos + echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} + echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv"$UNAME_RELEASE" else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. @@ -1247,39 +1261,39 @@ echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} + echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} + echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} + echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} + echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} + echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} + echo sx8r-nec-superux"$UNAME_RELEASE" exit ;; SX-ACE:SUPER-UX:*:*) - echo sxace-nec-superux${UNAME_RELEASE} + echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} + echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - eval $set_cc_for_build + eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ @@ -1307,7 +1321,7 @@ # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` @@ -1315,22 +1329,25 @@ UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-*:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} + echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} + echo nse-tandem-nsk"$UNAME_RELEASE" exit ;; NSR-*:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} + echo nsr-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; NSX-*:NONSTOP_KERNEL:*:*) - echo nsx-tandem-nsk${UNAME_RELEASE} + echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux @@ -1339,7 +1356,7 @@ echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 @@ -1350,7 +1367,7 @@ else UNAME_MACHINE="$cputype" fi - echo ${UNAME_MACHINE}-unknown-plan9 + echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 @@ -1371,14 +1388,14 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in + case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; @@ -1387,16 +1404,16 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'` + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos + echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros + echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) - echo ${UNAME_MACHINE}-unknown-esx + echo "$UNAME_MACHINE"-unknown-esx exit ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs @@ -1405,7 +1422,7 @@ echo "$0: unable to guess system type" >&2 -case "${UNAME_MACHINE}:${UNAME_SYSTEM}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM" in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 </dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" EOF exit 1 diff -Nru gstreamer-editing-services1.0-1.14.1/config.sub gstreamer-editing-services1.0-1.14.2/config.sub --- gstreamer-editing-services1.0-1.14.1/config.sub 2018-05-17 12:33:56.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/config.sub 2018-07-20 00:06:14.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2017 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2017-11-23' +timestamp='2018-02-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -67,7 +67,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2017 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -94,7 +94,7 @@ *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -112,7 +112,7 @@ # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ @@ -120,16 +120,16 @@ kopensolaris*-gnu* | cloudabi*-eabi* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` + basic_machine=`echo "$1" | sed 's/-[^-]*$//'` + if [ "$basic_machine" != "$1" ] + then os=`echo "$1" | sed 's/.*-/-/'` else os=; fi ;; esac @@ -178,44 +178,44 @@ ;; -sco6) os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 @@ -227,7 +227,7 @@ os=-lynxos ;; -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` ;; -psos*) os=-psos @@ -296,7 +296,7 @@ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ - | pdp10 | pdp11 | pj | pjl \ + | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pru \ | pyramid \ @@ -333,7 +333,7 @@ basic_machine=$basic_machine-unknown os=-none ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; ms1) basic_machine=mt-unknown @@ -362,7 +362,7 @@ ;; # Object if more than one company name word. *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. @@ -457,7 +457,7 @@ # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) - basic_machine=i386-unknown + basic_machine=i386-pc os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) @@ -491,7 +491,7 @@ basic_machine=x86_64-pc ;; amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl @@ -536,7 +536,7 @@ os=-linux ;; blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) @@ -544,13 +544,13 @@ os=-cnk ;; c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray @@ -648,7 +648,7 @@ os=$os"spe" ;; e500v[12]-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=$os"spe" ;; ebmon29k) @@ -740,9 +740,6 @@ hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; - hppa-next) - os=-nextstep3 - ;; hppaosf) basic_machine=hppa1.1-hp os=-osf @@ -755,26 +752,26 @@ basic_machine=i370-ibm ;; i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; - i386-vsta | vsta) + vsta) basic_machine=i386-unknown os=-vsta ;; @@ -793,19 +790,16 @@ os=-sysv ;; leon-*|leon[3-9]-*) - basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` + basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; - m88k-omron*) - basic_machine=m88k-omron - ;; magnum | m3230) basic_machine=mips-mips os=-sysv @@ -837,10 +831,10 @@ os=-mint ;; mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` ;; mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k @@ -859,7 +853,7 @@ os=-msdos ;; ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc @@ -946,6 +940,9 @@ nsr-tandem) basic_machine=nsr-tandem ;; + nsv-tandem) + basic_machine=nsv-tandem + ;; nsx-tandem) basic_machine=nsx-tandem ;; @@ -981,7 +978,7 @@ os=-linux ;; parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; pbd) @@ -997,7 +994,7 @@ basic_machine=i386-pc ;; pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc @@ -1012,16 +1009,16 @@ basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould @@ -1031,23 +1028,23 @@ ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm @@ -1101,17 +1098,10 @@ sequent) basic_machine=i386-sequent ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; sh5el) basic_machine=sh5le-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) + simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; @@ -1130,7 +1120,7 @@ os=-sysv4 ;; strongarm-* | thumb-*) - basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun @@ -1244,9 +1234,6 @@ basic_machine=a29k-wrs os=-vxworks ;; - wasm32) - basic_machine=wasm32-unknown - ;; w65*) basic_machine=w65-wdc os=-none @@ -1266,20 +1253,12 @@ basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) - basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - z80-*-coff) - basic_machine=z80-unknown - os=-sim - ;; none) basic_machine=none-none os=-none @@ -1308,10 +1287,6 @@ vax) basic_machine=vax-dec ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; pdp11) basic_machine=pdp11-dec ;; @@ -1321,9 +1296,6 @@ sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; cydra) basic_machine=cydra-cydrome ;; @@ -1343,7 +1315,7 @@ # Make sure to match an already-canonicalized machine name. ;; *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; esac @@ -1351,10 +1323,10 @@ # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` ;; *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` ;; *) ;; @@ -1377,15 +1349,16 @@ -solaris) os=-solaris2 ;; - -svr4*) - os=-sysv4 - ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; + # es1800 is here to avoid being matched by es* (a different OS) + -es1800*) + os=-ose + ;; # Now accept the basic system types. # The portable systems comes first. # Each alternative MUST end in a * to match a version number. @@ -1398,7 +1371,7 @@ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ @@ -1409,14 +1382,15 @@ | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ - | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*) + | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ + | -midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1433,12 +1407,12 @@ -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + -sim | -xray | -os68k* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) - os=`echo $os | sed -e 's|mac|macos|'` + os=`echo "$os" | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc @@ -1447,10 +1421,10 @@ os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` + os=`echo "$os" | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` + os=`echo "$os" | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition @@ -1461,12 +1435,6 @@ -wince*) os=-wince ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; -utek*) os=-bsd ;; @@ -1513,7 +1481,7 @@ -oss*) os=-sysv3 ;; - -svr4) + -svr4*) os=-sysv4 ;; -svr3) @@ -1528,18 +1496,9 @@ -ose*) os=-ose ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; - -aros*) - os=-aros - ;; -zvmoe) os=-zvmoe ;; @@ -1568,7 +1527,7 @@ *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 exit 1 ;; esac @@ -1664,9 +1623,6 @@ *-be) os=-beos ;; - *-haiku) - os=-haiku - ;; *-ibm) os=-aix ;; @@ -1721,9 +1677,6 @@ i370-*) os=-mvs ;; - *-next) - os=-nextstep3 - ;; *-gould) os=-sysv ;; @@ -1833,11 +1786,11 @@ vendor=stratus ;; esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` ;; esac -echo $basic_machine$os +echo "$basic_machine$os" exit # Local variables: diff -Nru gstreamer-editing-services1.0-1.14.1/configure gstreamer-editing-services1.0-1.14.2/configure --- gstreamer-editing-services1.0-1.14.1/configure 2018-05-17 12:33:54.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/configure 2018-07-20 00:06:12.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for GStreamer Editing Services 1.14.1. +# Generated by GNU Autoconf 2.69 for GStreamer Editing Services 1.14.2. # # Report bugs to . # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='GStreamer Editing Services' PACKAGE_TARNAME='gstreamer-editing-services' -PACKAGE_VERSION='1.14.1' -PACKAGE_STRING='GStreamer Editing Services 1.14.1' +PACKAGE_VERSION='1.14.2' +PACKAGE_STRING='GStreamer Editing Services 1.14.2' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer' PACKAGE_URL='' @@ -1616,7 +1616,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GStreamer Editing Services 1.14.1 to adapt to many kinds of systems. +\`configure' configures GStreamer Editing Services 1.14.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1689,7 +1689,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GStreamer Editing Services 1.14.1:";; + short | recursive ) echo "Configuration of GStreamer Editing Services 1.14.2:";; esac cat <<\_ACEOF @@ -1910,7 +1910,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -GStreamer Editing Services configure 1.14.1 +GStreamer Editing Services configure 1.14.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2325,7 +2325,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GStreamer Editing Services $as_me 1.14.1, which was +It was created by GStreamer Editing Services $as_me 1.14.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3303,7 +3303,7 @@ # Define the identity of the package. PACKAGE='gstreamer-editing-services' - VERSION='1.14.1' + VERSION='1.14.2' cat >>confdefs.h <<_ACEOF @@ -3514,9 +3514,9 @@ - PACKAGE_VERSION_MAJOR=$(echo 1.14.1 | cut -d'.' -f1) - PACKAGE_VERSION_MINOR=$(echo 1.14.1 | cut -d'.' -f2) - PACKAGE_VERSION_MICRO=$(echo 1.14.1 | cut -d'.' -f3) + PACKAGE_VERSION_MAJOR=$(echo 1.14.2 | cut -d'.' -f1) + PACKAGE_VERSION_MINOR=$(echo 1.14.2 | cut -d'.' -f2) + PACKAGE_VERSION_MICRO=$(echo 1.14.2 | cut -d'.' -f3) @@ -3527,7 +3527,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking nano version" >&5 $as_echo_n "checking nano version... " >&6; } - NANO=$(echo 1.14.1 | cut -d'.' -f4) + NANO=$(echo 1.14.2 | cut -d'.' -f4) if test x"$NANO" = x || test "x$NANO" = "x0" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: 0 (release)" >&5 @@ -8366,10 +8366,10 @@ done - GST_CURRENT=1401 + GST_CURRENT=1402 GST_REVISION=0 - GST_AGE=1401 - GST_LIBVERSION=1401:0:1401 + GST_AGE=1402 + GST_LIBVERSION=1402:0:1402 @@ -12997,8 +12997,8 @@ -GST_REQ=1.14.1 -GSTPB_REQ=1.14.1 +GST_REQ=1.14.2 +GSTPB_REQ=1.14.2 @@ -19946,7 +19946,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by GStreamer Editing Services $as_me 1.14.1, which was +This file was extended by GStreamer Editing Services $as_me 1.14.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20012,7 +20012,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -GStreamer Editing Services config.status 1.14.1 +GStreamer Editing Services config.status 1.14.2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru gstreamer-editing-services1.0-1.14.1/configure.ac gstreamer-editing-services1.0-1.14.2/configure.ac --- gstreamer-editing-services1.0-1.14.1/configure.ac 2018-05-17 12:33:42.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/configure.ac 2018-07-20 00:05:58.000000000 +0000 @@ -3,7 +3,7 @@ dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, cvs and prerelease does Werror too -AC_INIT(GStreamer Editing Services, 1.14.1, +AC_INIT(GStreamer Editing Services, 1.14.2, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gstreamer-editing-services) @@ -51,11 +51,11 @@ GST_API_VERSION=1.0 AC_SUBST(GST_API_VERSION) -AS_LIBTOOL(GST, 1401, 0, 1401) +AS_LIBTOOL(GST, 1402, 0, 1402) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.14.1 -GSTPB_REQ=1.14.1 +GST_REQ=1.14.2 +GSTPB_REQ=1.14.2 dnl *** autotools stuff **** diff -Nru gstreamer-editing-services1.0-1.14.1/debian/changelog gstreamer-editing-services1.0-1.14.2/debian/changelog --- gstreamer-editing-services1.0-1.14.1/debian/changelog 2018-05-18 08:16:06.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/debian/changelog 2018-07-23 09:33:52.000000000 +0000 @@ -1,3 +1,9 @@ +gstreamer-editing-services1.0 (1.14.2-1) unstable; urgency=medium + + * New upstream bugfix release + + -- Sebastian Dröge Mon, 23 Jul 2018 12:33:52 +0300 + gstreamer-editing-services1.0 (1.14.1-1) unstable; urgency=medium * New upstream bugfix release diff -Nru gstreamer-editing-services1.0-1.14.1/debian/control gstreamer-editing-services1.0-1.14.2/debian/control --- gstreamer-editing-services1.0-1.14.1/debian/control 2018-05-18 08:16:06.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/debian/control 2018-07-23 09:33:41.000000000 +0000 @@ -10,15 +10,15 @@ flex (>= 2.5.34), libglib2.0-dev (>= 2.40), libxml2-dev, - libgstreamer1.0-dev (>= 1.14.1), - libgstreamer-plugins-base1.0-dev (>= 1.14.1), + libgstreamer1.0-dev (>= 1.14.2), + libgstreamer-plugins-base1.0-dev (>= 1.14.2), gobject-introspection (>= 0.9.12-4~), libgirepository1.0-dev, - gir1.2-gstreamer-1.0 (>= 1.14.1), - gir1.2-gst-plugins-base-1.0 (>= 1.14.1), - gstreamer1.0-plugins-base (>= 1.14.1), - gstreamer1.0-x (>= 1.14.1), - gstreamer1.0-plugins-good (>= 1.14.1), + gir1.2-gstreamer-1.0 (>= 1.14.2), + gir1.2-gst-plugins-base-1.0 (>= 1.14.2), + gstreamer1.0-plugins-base (>= 1.14.2), + gstreamer1.0-x (>= 1.14.2), + gstreamer1.0-plugins-good (>= 1.14.2), gtk-doc-tools (>= 1.3), libglib2.0-doc, gstreamer1.0-doc, @@ -61,8 +61,8 @@ Section: libdevel Depends: ${misc:Depends}, libges-1.0-0 (= ${binary:Version}), - libgstreamer-plugins-base1.0-dev (>= 1.14.1), - libgstreamer1.0-dev (>= 1.14.1), + libgstreamer-plugins-base1.0-dev (>= 1.14.2), + libgstreamer1.0-dev (>= 1.14.2), libglib2.0-dev (>= 2.40) Description: GStreamer editing services (development files) The GStreamer multimedia framework and the accompanying NLE set of @@ -90,9 +90,9 @@ Section: libs Depends: ${shlibs:Depends}, ${misc:Depends}, - gstreamer1.0-plugins-base (>= 1.14.1), - gstreamer1.0-x (>= 1.14.1), - gstreamer1.0-plugins-good (>= 1.14.1) + gstreamer1.0-plugins-base (>= 1.14.2), + gstreamer1.0-x (>= 1.14.2), + gstreamer1.0-plugins-good (>= 1.14.2) Description: GStreamer editing services (shared library) The GStreamer multimedia framework and the accompanying NLE set of plugins for non-linear editing offer all the building blocks for: diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/annotation-glossary.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/annotation-glossary.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/annotation-glossary.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/annotation-glossary.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,12 +2,12 @@ -Annotation Glossary: GStreamer Editing Services 1.14.1 Reference Manual +Annotation Glossary: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -64,6 +64,6 @@

Don't free data after the code is done.

+
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/api-index-full.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/api-index-full.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/api-index-full.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/api-index-full.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -API Index: GStreamer Editing Services 1.14.1 Reference Manual +API Index: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -1781,6 +1781,6 @@
+
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch01.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch01.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch01.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch01.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GStreamer Editing Services Overview: GStreamer Editing Services 1.14.1 Reference Manual +GStreamer Editing Services Overview: GStreamer Editing Services 1.14.2 Reference Manual - - - + + + - + @@ -49,6 +49,6 @@

+
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch02.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch02.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch02.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch02.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Base Classes: GStreamer Editing Services 1.14.1 Reference Manual +Base Classes: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -83,6 +83,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch03.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch03.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch03.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch03.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Timeline objects: GStreamer Editing Services 1.14.1 Reference Manual +Timeline objects: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -49,6 +49,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch04.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch04.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch04.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch04.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Track objects: GStreamer Editing Services 1.14.1 Reference Manual +Track objects: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -64,6 +64,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch05.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch05.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch05.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch05.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Convenience classes: GStreamer Editing Services 1.14.1 Reference Manual +Convenience classes: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -27,6 +27,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch06.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch06.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch06.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch06.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Serialization Classes: GStreamer Editing Services 1.14.1 Reference Manual +Serialization Classes: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -38,6 +38,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch07.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch07.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch07.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch07.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Interfaces: GStreamer Editing Services 1.14.1 Reference Manual +Interfaces: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -32,6 +32,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch08.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch08.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch08.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch08.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Assets: GStreamer Editing Services 1.14.1 Reference Manual +Assets: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -41,6 +41,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch09.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch09.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ch09.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ch09.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Tracks: GStreamer Editing Services 1.14.1 Reference Manual +Tracks: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -32,6 +32,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-1.0.devhelp2 gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-1.0.devhelp2 --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-1.0.devhelp2 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-1.0.devhelp2 2018-07-20 00:06:56.000000000 +0000 @@ -1,5 +1,5 @@ - + diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-architecture.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-architecture.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-architecture.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-architecture.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Overview and architecture: GStreamer Editing Services 1.14.1 Reference Manual +Overview and architecture: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -80,6 +80,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAsset.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAsset.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAsset.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAsset.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESAsset: GStreamer Editing Services 1.14.1 Reference Manual +GESAsset: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -808,6 +808,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESAudioSource: GStreamer Editing Services 1.14.1 Reference Manual +GESAudioSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -110,6 +110,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioTestSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioTestSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioTestSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioTestSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESAudioTestSource: GStreamer Editing Services 1.14.1 Reference Manual +GESAudioTestSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -246,6 +246,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioTransition.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioTransition.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioTransition.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioTransition.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESAudioTransition: GStreamer Editing Services 1.14.1 Reference Manual +GESAudioTransition: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -111,6 +111,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioUriSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioUriSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESAudioUriSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESAudioUriSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESAudioUriSource: GStreamer Editing Services 1.14.1 Reference Manual +GESAudioUriSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -111,6 +111,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESBaseEffectClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESBaseEffectClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESBaseEffectClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESBaseEffectClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESBaseEffectClip: GStreamer Editing Services 1.14.1 Reference Manual +GESBaseEffectClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -87,6 +87,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESBaseEffect.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESBaseEffect.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESBaseEffect.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESBaseEffect.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESBaseEffect: GStreamer Editing Services 1.14.1 Reference Manual +GESBaseEffect: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -85,6 +85,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESBaseTransitionClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESBaseTransitionClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESBaseTransitionClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESBaseTransitionClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESBaseTransitionClip: GStreamer Editing Services 1.14.1 Reference Manual +GESBaseTransitionClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -85,6 +85,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESClipAsset.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESClipAsset.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESClipAsset.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESClipAsset.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESClipAsset: GStreamer Editing Services 1.14.1 Reference Manual +GESClipAsset: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -183,6 +183,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESClip: GStreamer Editing Services 1.14.1 Reference Manual +GESClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -894,6 +894,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESContainer.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESContainer.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESContainer.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESContainer.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESContainer: GStreamer Editing Services 1.14.1 Reference Manual +GESContainer: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -560,6 +560,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESEffectClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESEffectClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESEffectClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESEffectClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESEffectClip: GStreamer Editing Services 1.14.1 Reference Manual +GESEffectClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -135,6 +135,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESEffect.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESEffect.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESEffect.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESEffect.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESEffect: GStreamer Editing Services 1.14.1 Reference Manual +GESEffect: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -114,6 +114,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESFormatter.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESFormatter.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESFormatter.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESFormatter.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESFormatter: GStreamer Editing Services 1.14.1 Reference Manual +GESFormatter: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -524,6 +524,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESAudioTrack.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESAudioTrack.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESAudioTrack.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESAudioTrack.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESAudioTrack: GStreamer Editing Services 1.14.1 Reference Manual +GESAudioTrack: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -110,6 +110,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESBaseXmlFormatter.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESBaseXmlFormatter.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESBaseXmlFormatter.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESBaseXmlFormatter.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESBaseXmlFormatter: GStreamer Editing Services 1.14.1 Reference Manual +GESBaseXmlFormatter: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -89,6 +89,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GES-Enums.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GES-Enums.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GES-Enums.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GES-Enums.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GES Enumerations: GStreamer Editing Services 1.14.1 Reference Manual +GES Enumerations: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -1142,6 +1142,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESExtractableInterface.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESExtractableInterface.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESExtractableInterface.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESExtractableInterface.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESExtractable Interface: GStreamer Editing Services 1.14.1 Reference Manual +GESExtractable Interface: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -294,6 +294,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GES-GErrors.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GES-GErrors.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GES-GErrors.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GES-GErrors.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESErrors: GStreamer Editing Services 1.14.1 Reference Manual +GESErrors: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -110,6 +110,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESPitiviFormatter.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESPitiviFormatter.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESPitiviFormatter.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESPitiviFormatter.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESPitiviFormatter: GStreamer Editing Services 1.14.1 Reference Manual +GESPitiviFormatter: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -92,6 +92,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESVideoTrack.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESVideoTrack.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESVideoTrack.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESVideoTrack.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESVideoTrack: GStreamer Editing Services 1.14.1 Reference Manual +GESVideoTrack: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -96,6 +96,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESXmlFormatter.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESXmlFormatter.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-GESXmlFormatter.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-GESXmlFormatter.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESXmlFormatter: GStreamer Editing Services 1.14.1 Reference Manual +GESXmlFormatter: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -69,6 +69,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESGroup.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESGroup.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESGroup.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESGroup.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESGroup: GStreamer Editing Services 1.14.1 Reference Manual +GESGroup: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -118,6 +118,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-hierarchy.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-hierarchy.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-hierarchy.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-hierarchy.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Object Hierarchy: GStreamer Editing Services 1.14.1 Reference Manual +Object Hierarchy: GStreamer Editing Services 1.14.2 Reference Manual - - + + - + @@ -79,6 +79,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESImageSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESImageSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESImageSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESImageSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESImageSource: GStreamer Editing Services 1.14.1 Reference Manual +GESImageSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -115,6 +115,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-Initialization.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-Initialization.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/ges-Initialization.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/ges-Initialization.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -Initialization: GStreamer Editing Services 1.14.1 Reference Manual +Initialization: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -226,7 +226,7 @@

GES_VERSION_MICRO

-
#define GES_VERSION_MICRO (1)
+
#define GES_VERSION_MICRO (2)
 

@@ -244,6 +244,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESLayer.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESLayer.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESLayer.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESLayer.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESLayer: GStreamer Editing Services 1.14.1 Reference Manual +GESLayer: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -769,6 +769,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESMetaContainer.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESMetaContainer.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESMetaContainer.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESMetaContainer.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESMetaContainer: GStreamer Editing Services 1.14.1 Reference Manual +GESMetaContainer: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -239,6 +239,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESMultiFileSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESMultiFileSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESMultiFileSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESMultiFileSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESMultiFileSource: GStreamer Editing Services 1.14.1 Reference Manual +GESMultiFileSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -162,6 +162,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESOperationClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESOperationClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESOperationClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESOperationClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESOperationClip: GStreamer Editing Services 1.14.1 Reference Manual +GESOperationClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -88,6 +88,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESOperation.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESOperation.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESOperation.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESOperation.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESOperation: GStreamer Editing Services 1.14.1 Reference Manual +GESOperation: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -99,6 +99,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESOverlayClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESOverlayClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESOverlayClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESOverlayClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESOverlayClip: GStreamer Editing Services 1.14.1 Reference Manual +GESOverlayClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -114,6 +114,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESPipeline.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESPipeline.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESPipeline.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESPipeline.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESPipeline: GStreamer Editing Services 1.14.1 Reference Manual +GESPipeline: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -397,6 +397,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESProject.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESProject.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESProject.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESProject.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESProject: GStreamer Editing Services 1.14.1 Reference Manual +GESProject: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -1142,6 +1142,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESSourceClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESSourceClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESSourceClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESSourceClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESSourceClip: GStreamer Editing Services 1.14.1 Reference Manual +GESSourceClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -100,6 +100,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESSource: GStreamer Editing Services 1.14.1 Reference Manual +GESSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -109,6 +109,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTestClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTestClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTestClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTestClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTestClip: GStreamer Editing Services 1.14.1 Reference Manual +GESTestClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -344,6 +344,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTextOverlayClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTextOverlayClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTextOverlayClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTextOverlayClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTextOverlayClip: GStreamer Editing Services 1.14.1 Reference Manual +GESTextOverlayClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -296,6 +296,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTextOverlay.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTextOverlay.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTextOverlay.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTextOverlay.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTextOverlay: GStreamer Editing Services 1.14.1 Reference Manual +GESTextOverlay: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -635,6 +635,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTimelineElement.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTimelineElement.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTimelineElement.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTimelineElement.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTimelineElement: GStreamer Editing Services 1.14.1 Reference Manual +GESTimelineElement: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -1850,6 +1850,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTimeline.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTimeline.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTimeline.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTimeline.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTimeline: GStreamer Editing Services 1.14.1 Reference Manual +GESTimeline: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -1594,6 +1594,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTitleClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTitleClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTitleClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTitleClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTitleClip: GStreamer Editing Services 1.14.1 Reference Manual +GESTitleClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -320,6 +320,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTitleSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTitleSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTitleSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTitleSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTitleSource: GStreamer Editing Services 1.14.1 Reference Manual +GESTitleSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -763,6 +763,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTrackElementAsset.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTrackElementAsset.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTrackElementAsset.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTrackElementAsset.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTrackElementAsset: GStreamer Editing Services 1.14.1 Reference Manual +GESTrackElementAsset: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -181,6 +181,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTrackElement.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTrackElement.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTrackElement.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTrackElement.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTrackElement: GStreamer Editing Services 1.14.1 Reference Manual +GESTrackElement: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -717,6 +717,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTrack.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTrack.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTrack.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTrack.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTrack: GStreamer Editing Services 1.14.1 Reference Manual +GESTrack: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -782,6 +782,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTransitionClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTransitionClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTransitionClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTransitionClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTransitionClip: GStreamer Editing Services 1.14.1 Reference Manual +GESTransitionClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -222,6 +222,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTransition.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTransition.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESTransition.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESTransition.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESTransition: GStreamer Editing Services 1.14.1 Reference Manual +GESTransition: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -99,6 +99,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESUriClipAsset.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESUriClipAsset.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESUriClipAsset.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESUriClipAsset.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESUriClipAsset: GStreamer Editing Services 1.14.1 Reference Manual +GESUriClipAsset: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -446,6 +446,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESUriClip.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESUriClip.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESUriClip.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESUriClip.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESUriClip: GStreamer Editing Services 1.14.1 Reference Manual +GESUriClip: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -306,6 +306,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESUriSourceAsset.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESUriSourceAsset.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESUriSourceAsset.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESUriSourceAsset.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESUriClipAsset: GStreamer Editing Services 1.14.1 Reference Manual +GESUriClipAsset: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -190,6 +190,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESVideoSource: GStreamer Editing Services 1.14.1 Reference Manual +GESVideoSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -143,6 +143,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoTestSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoTestSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoTestSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoTestSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESVideoTestSource: GStreamer Editing Services 1.14.1 Reference Manual +GESVideoTestSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -84,6 +84,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoTransition.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoTransition.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoTransition.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoTransition.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESVideoTransition: GStreamer Editing Services 1.14.1 Reference Manual +GESVideoTransition: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -372,6 +372,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoUriSource.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoUriSource.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/GESVideoUriSource.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/GESVideoUriSource.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,13 +2,13 @@ -GESVideoUriSource: GStreamer Editing Services 1.14.1 Reference Manual +GESVideoUriSource: GStreamer Editing Services 1.14.2 Reference Manual - + - + @@ -111,6 +111,6 @@ +
Generated by GTK-Doc V1.28 \ No newline at end of file Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/home.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/home.png differ diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/index.html gstreamer-editing-services1.0-1.14.2/docs/libs/html/index.html --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/index.html 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/index.html 2018-07-20 00:06:56.000000000 +0000 @@ -2,20 +2,20 @@ -GStreamer Editing Services 1.14.1 Reference Manual: GStreamer Editing Services 1.14.1 Reference Manual +GStreamer Editing Services 1.14.2 Reference Manual: GStreamer Editing Services 1.14.2 Reference Manual - + - +
-
+

- for GStreamer Editing Services 1.0 (1.14.1) + for GStreamer Editing Services 1.0 (1.14.2)


@@ -224,6 +224,6 @@
+
Generated by GTK-Doc V1.28 \ No newline at end of file Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/left-insensitive.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/left-insensitive.png differ Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/left.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/left.png differ Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/right-insensitive.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/right-insensitive.png differ Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/right.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/right.png differ diff -Nru gstreamer-editing-services1.0-1.14.1/docs/libs/html/style.css gstreamer-editing-services1.0-1.14.2/docs/libs/html/style.css --- gstreamer-editing-services1.0-1.14.1/docs/libs/html/style.css 2018-05-17 12:34:38.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/docs/libs/html/style.css 2018-07-20 00:06:56.000000000 +0000 @@ -30,6 +30,10 @@ vertical-align: top; } +span.nowrap { + white-space: nowrap; +} + div.gallery-float { float: left; Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/up-insensitive.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/up-insensitive.png differ Binary files /tmp/tmpREh2Da/i0Krw9TW8z/gstreamer-editing-services1.0-1.14.1/docs/libs/html/up.png and /tmp/tmpREh2Da/RAxkizfHLi/gstreamer-editing-services1.0-1.14.2/docs/libs/html/up.png differ diff -Nru gstreamer-editing-services1.0-1.14.1/ges/ges-group.c gstreamer-editing-services1.0-1.14.2/ges/ges-group.c --- gstreamer-editing-services1.0-1.14.1/ges/ges-group.c 2018-03-23 20:47:44.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/ges/ges-group.c 2018-07-18 16:40:26.000000000 +0000 @@ -188,13 +188,14 @@ return; } - if (new_layer && (layer_prio + offset < 0 || + if (new_layer && old_layer && (layer_prio + offset < 0 || (GES_TIMELINE_ELEMENT_TIMELINE (group) && layer_prio + offset + GES_CONTAINER_HEIGHT (group) - 1 > g_list_length (GES_TIMELINE_ELEMENT_TIMELINE (group)->layers)))) { - GST_INFO_OBJECT (container, "Trying to move to a layer outside of" - "the timeline layers, moving back to old layer (prio %i)", + GST_INFO_OBJECT (container, + "Trying to move to a layer %" GST_PTR_FORMAT " outside of" + "the timeline layers, moving back to old layer (prio %i)", new_layer, _PRIORITY (group) - offset); container->children_control_mode = GES_CHILDREN_INIBIT_SIGNAL_EMISSION; @@ -204,7 +205,7 @@ return; } - if (!new_layer) { + if (!new_layer || !old_layer) { _update_our_values (group); return; diff -Nru gstreamer-editing-services1.0-1.14.1/ges/ges-version.h gstreamer-editing-services1.0-1.14.2/ges/ges-version.h --- gstreamer-editing-services1.0-1.14.1/ges/ges-version.h 2018-05-17 12:34:03.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/ges/ges-version.h 2018-07-20 00:06:22.000000000 +0000 @@ -24,7 +24,7 @@ #define GES_VERSION_MAJOR (1) #define GES_VERSION_MINOR (14) -#define GES_VERSION_MICRO (1) +#define GES_VERSION_MICRO (2) #define GES_VERSION_NANO (0) G_END_DECLS diff -Nru gstreamer-editing-services1.0-1.14.1/ges/Makefile.am gstreamer-editing-services1.0-1.14.2/ges/Makefile.am --- gstreamer-editing-services1.0-1.14.1/ges/Makefile.am 2018-03-23 20:47:44.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/ges/Makefile.am 2018-07-18 16:40:26.000000000 +0000 @@ -154,7 +154,8 @@ libges_@GST_API_VERSION@_la_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) \ $(GST_VIDEO_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \ - $(GST_CFLAGS) $(XML_CFLAGS) $(GIO_CFLAGS) $(GST_VALIDATE_CFLAGS) + $(GST_CFLAGS) $(XML_CFLAGS) $(GIO_CFLAGS) $(GST_VALIDATE_CFLAGS) \ + -DG_LOG_DOMAIN=\"GES\" libges_@GST_API_VERSION@_la_LIBADD = $(GST_PBUTILS_LIBS) \ $(GST_VIDEO_LIBS) $(GST_CONTROLLER_LIBS) $(GST_PLUGINS_BASE_LIBS) \ $(GST_BASE_LIBS) $(GST_LIBS) $(XML_LIBS) $(GIO_LIBS) $(GST_VALIDATE_LIBS) diff -Nru gstreamer-editing-services1.0-1.14.1/ges/Makefile.in gstreamer-editing-services1.0-1.14.2/ges/Makefile.in --- gstreamer-editing-services1.0-1.14.1/ges/Makefile.in 2018-05-17 12:33:56.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/ges/Makefile.in 2018-07-20 00:06:14.000000000 +0000 @@ -729,7 +729,8 @@ libges_@GST_API_VERSION@_la_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) \ $(GST_VIDEO_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \ - $(GST_CFLAGS) $(XML_CFLAGS) $(GIO_CFLAGS) $(GST_VALIDATE_CFLAGS) + $(GST_CFLAGS) $(XML_CFLAGS) $(GIO_CFLAGS) $(GST_VALIDATE_CFLAGS) \ + -DG_LOG_DOMAIN=\"GES\" libges_@GST_API_VERSION@_la_LIBADD = $(GST_PBUTILS_LIBS) \ $(GST_VIDEO_LIBS) $(GST_CONTROLLER_LIBS) $(GST_PLUGINS_BASE_LIBS) \ diff -Nru gstreamer-editing-services1.0-1.14.1/gst-editing-services.doap gstreamer-editing-services1.0-1.14.2/gst-editing-services.doap --- gstreamer-editing-services1.0-1.14.1/gst-editing-services.doap 2018-05-17 12:33:42.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/gst-editing-services.doap 2018-07-20 00:05:58.000000000 +0000 @@ -32,6 +32,16 @@ + 1.14.2 + 1.14 + + 2018-07-20 + + + + + + 1.14.1 1.14 diff -Nru gstreamer-editing-services1.0-1.14.1/ltmain.sh gstreamer-editing-services1.0-1.14.2/ltmain.sh --- gstreamer-editing-services1.0-1.14.1/ltmain.sh 2018-05-17 12:33:49.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/ltmain.sh 2018-07-20 00:06:06.000000000 +0000 @@ -31,7 +31,7 @@ PROGRAM=libtool PACKAGE=libtool -VERSION="2.4.6 Debian-2.4.6-2" +VERSION="2.4.6 Debian-2.4.6-2.1" package_revision=2.4.6 @@ -64,7 +64,7 @@ # libraries, which are installed to $pkgauxdir. # Set a version string for this script. -scriptversion=2015-01-20.17; # UTC +scriptversion=2015-10-12.13; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 @@ -580,16 +580,16 @@ { $debug_cmd - func_quote_for_eval "$2" - eval "$1+=\\ \$func_quote_for_eval_result" + func_quote_arg pretty "$2" + eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd - func_quote_for_eval "$2" - eval "$1=\$$1\\ \$func_quote_for_eval_result" + func_quote_arg pretty "$2" + eval "$1=\$$1\\ \$func_quote_arg_result" } fi @@ -1091,85 +1091,181 @@ } -# func_quote_for_eval ARG... -# -------------------------- -# Aesthetically quote ARGs to be evaled later. -# This function returns two values: -# i) func_quote_for_eval_result -# double-quoted, suitable for a subsequent eval -# ii) func_quote_for_eval_unquoted_result -# has all characters that are still active within double -# quotes backslashified. -func_quote_for_eval () +# func_quote_portable EVAL ARG +# ---------------------------- +# Internal function to portably implement func_quote_arg. Note that we still +# keep attention to performance here so we as much as possible try to avoid +# calling sed binary (so far O(N) complexity as long as func_append is O(1)). +func_quote_portable () { $debug_cmd - func_quote_for_eval_unquoted_result= - func_quote_for_eval_result= - while test 0 -lt $#; do - case $1 in - *[\\\`\"\$]*) - _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; - *) - _G_unquoted_arg=$1 ;; - esac - if test -n "$func_quote_for_eval_unquoted_result"; then - func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" - else - func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + func_quote_portable_result=$2 + + # one-time-loop (easy break) + while true + do + if $1; then + func_quote_portable_result=`$ECHO "$2" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` + break fi - case $_G_unquoted_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and variable expansion - # for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_quoted_arg=\"$_G_unquoted_arg\" + # Quote for eval. + case $func_quote_portable_result in + *[\\\`\"\$]*) + case $func_quote_portable_result in + *[\[\*\?]*) + func_quote_portable_result=`$ECHO "$func_quote_portable_result" | $SED "$sed_quote_subst"` + break + ;; + esac + + func_quote_portable_old_IFS=$IFS + for _G_char in '\' '`' '"' '$' + do + # STATE($1) PREV($2) SEPARATOR($3) + set start "" "" + func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy + IFS=$_G_char + for _G_part in $func_quote_portable_result + do + case $1 in + quote) + func_append func_quote_portable_result "$3$2" + set quote "$_G_part" "\\$_G_char" + ;; + start) + set first "" "" + func_quote_portable_result= + ;; + first) + set quote "$_G_part" "" + ;; + esac + done + done + IFS=$func_quote_portable_old_IFS ;; - *) - _G_quoted_arg=$_G_unquoted_arg - ;; + *) ;; esac - - if test -n "$func_quote_for_eval_result"; then - func_append func_quote_for_eval_result " $_G_quoted_arg" - else - func_append func_quote_for_eval_result "$_G_quoted_arg" - fi - shift + break done + + func_quote_portable_unquoted_result=$func_quote_portable_result + case $func_quote_portable_result in + # double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # many bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_portable_result=\"$func_quote_portable_result\" + ;; + esac } -# func_quote_for_expand ARG -# ------------------------- -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () -{ - $debug_cmd +# func_quotefast_eval ARG +# ----------------------- +# Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', +# but optimized for speed. Result is stored in $func_quotefast_eval. +if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then + func_quotefast_eval () + { + printf -v func_quotefast_eval_result %q "$1" + } +else + func_quotefast_eval () + { + func_quote_portable false "$1" + func_quotefast_eval_result=$func_quote_portable_result + } +fi - case $1 in - *[\\\`\"]*) - _G_arg=`$ECHO "$1" | $SED \ - -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; - *) - _G_arg=$1 ;; + +# func_quote_arg MODEs ARG +# ------------------------ +# Quote one ARG to be evaled later. MODEs argument may contain zero ore more +# specifiers listed below separated by ',' character. This function returns two +# values: +# i) func_quote_arg_result +# double-quoted (when needed), suitable for a subsequent eval +# ii) func_quote_arg_unquoted_result +# has all characters that are still active within double +# quotes backslashified. Available only if 'unquoted' is specified. +# +# Available modes: +# ---------------- +# 'eval' (default) +# - escape shell special characters +# 'expand' +# - the same as 'eval'; but do not quote variable references +# 'pretty' +# - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might +# later used in func_quote to get output like: 'echo "a b"' instead of +# 'echo a\ b'. This is slower than default on some shells. +# 'unquoted' +# - produce also $func_quote_arg_unquoted_result which does not contain +# wrapping double-quotes. +# +# Examples for 'func_quote_arg pretty,unquoted string': +# +# string | *_result | *_unquoted_result +# ------------+-----------------------+------------------- +# " | \" | \" +# a b | "a b" | a b +# "a b" | "\"a b\"" | \"a b\" +# * | "*" | * +# z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" +# +# Examples for 'func_quote_arg pretty,unquoted,expand string': +# +# string | *_result | *_unquoted_result +# --------------+---------------------+-------------------- +# z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" +func_quote_arg () +{ + _G_quote_expand=false + case ,$1, in + *,expand,*) + _G_quote_expand=: + ;; esac - case $_G_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - _G_arg=\"$_G_arg\" + case ,$1, in + *,pretty,*|*,expand,*|*,unquoted,*) + func_quote_portable $_G_quote_expand "$2" + func_quote_arg_result=$func_quote_portable_result + func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result + ;; + *) + # Faster quote-for-eval for some shells. + func_quotefast_eval "$2" + func_quote_arg_result=$func_quotefast_eval_result ;; esac +} + - func_quote_for_expand_result=$_G_arg +# func_quote MODEs ARGs... +# ------------------------ +# Quote all ARGs to be evaled later and join them into single command. See +# func_quote_arg's description for more info. +func_quote () +{ + $debug_cmd + _G_func_quote_mode=$1 ; shift + func_quote_result= + while test 0 -lt $#; do + func_quote_arg "$_G_func_quote_mode" "$1" + if test -n "$func_quote_result"; then + func_append func_quote_result " $func_quote_arg_result" + else + func_append func_quote_result "$func_quote_arg_result" + fi + shift + done } @@ -1215,8 +1311,8 @@ _G_cmd=$1 _G_fail_exp=${2-':'} - func_quote_for_expand "$_G_cmd" - eval "func_notquiet $func_quote_for_expand_result" + func_quote_arg pretty,expand "$_G_cmd" + eval "func_notquiet $func_quote_arg_result" $opt_dry_run || { eval "$_G_cmd" @@ -1241,8 +1337,8 @@ _G_fail_exp=${2-':'} $opt_quiet || { - func_quote_for_expand "$_G_cmd" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$_G_cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || { @@ -1370,7 +1466,7 @@ #! /bin/sh # Set a version string for this script. -scriptversion=2014-01-07.03; # UTC +scriptversion=2015-10-12.13; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 @@ -1530,6 +1626,8 @@ { $debug_cmd + _G_rc_run_hooks=false + case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; @@ -1538,16 +1636,16 @@ eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do - eval $_G_hook '"$@"' - - # store returned options list back into positional - # parameters for next 'cmd' execution. - eval _G_hook_result=\$${_G_hook}_result - eval set dummy "$_G_hook_result"; shift + if eval $_G_hook '"$@"'; then + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + _G_rc_run_hooks=: + fi done - func_quote_for_eval ${1+"$@"} - func_run_hooks_result=$func_quote_for_eval_result + $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result } @@ -1557,10 +1655,16 @@ ## --------------- ## # In order to add your own option parsing hooks, you must accept the -# full positional parameter list in your hook function, remove any -# options that you action, and then pass back the remaining unprocessed +# full positional parameter list in your hook function, you may remove/edit +# any options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for -# 'eval'. Like this: +# 'eval'. In this case you also must return $EXIT_SUCCESS to let the +# hook's caller know that it should pay attention to +# '_result'. Returning $EXIT_FAILURE signalizes that +# arguments are left untouched by the hook and therefore caller will ignore the +# result variable. +# +# Like this: # # my_options_prep () # { @@ -1570,9 +1674,11 @@ # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' -# -# func_quote_for_eval ${1+"$@"} -# my_options_prep_result=$func_quote_for_eval_result +# # No change in '$@' (ignored completely by this hook). There is +# # no need to do the equivalent (but slower) action: +# # func_quote eval ${1+"$@"} +# # my_options_prep_result=$func_quote_result +# false # } # func_add_hook func_options_prep my_options_prep # @@ -1581,25 +1687,37 @@ # { # $debug_cmd # +# args_changed=false +# # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in -# --silent|-s) opt_silent=: ;; +# --silent|-s) opt_silent=: +# args_changed=: +# ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift +# args_changed=: # ;; -# *) set dummy "$_G_opt" "$*"; shift; break ;; +# *) # Make sure the first unrecognised option "$_G_opt" +# # is added back to "$@", we could need that later +# # if $args_changed is true. +# set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # -# func_quote_for_eval ${1+"$@"} -# my_silent_option_result=$func_quote_for_eval_result +# if $args_changed; then +# func_quote eval ${1+"$@"} +# my_silent_option_result=$func_quote_result +# fi +# +# $args_changed # } # func_add_hook func_parse_options my_silent_option # @@ -1611,16 +1729,32 @@ # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # -# func_quote_for_eval ${1+"$@"} -# my_option_validation_result=$func_quote_for_eval_result +# false # } # func_add_hook func_validate_options my_option_validation # -# You'll alse need to manually amend $usage_message to reflect the extra +# You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. +# func_options_finish [ARG]... +# ---------------------------- +# Finishing the option parse loop (call 'func_options' hooks ATM). +func_options_finish () +{ + $debug_cmd + + _G_func_options_finish_exit=false + if func_run_hooks func_options ${1+"$@"}; then + func_options_finish_result=$func_run_hooks_result + _G_func_options_finish_exit=: + fi + + $_G_func_options_finish_exit +} + + # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the @@ -1630,17 +1764,28 @@ { $debug_cmd - func_options_prep ${1+"$@"} - eval func_parse_options \ - ${func_options_prep_result+"$func_options_prep_result"} - eval func_validate_options \ - ${func_parse_options_result+"$func_parse_options_result"} + _G_rc_options=false - eval func_run_hooks func_options \ - ${func_validate_options_result+"$func_validate_options_result"} + for my_func in options_prep parse_options validate_options options_finish + do + if eval func_$my_func '${1+"$@"}'; then + eval _G_res_var='$'"func_${my_func}_result" + eval set dummy "$_G_res_var" ; shift + _G_rc_options=: + fi + done + + # Save modified positional parameters for caller. As a top-level + # options-parser function we always need to set the 'func_options_result' + # variable (regardless the $_G_rc_options value). + if $_G_rc_options; then + func_options_result=$_G_res_var + else + func_quote eval ${1+"$@"} + func_options_result=$func_quote_result + fi - # save modified positional parameters for caller - func_options_result=$func_run_hooks_result + $_G_rc_options } @@ -1649,9 +1794,9 @@ # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and -# needs to propogate that back to rest of this script, then the complete +# needs to propagate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before -# returning. +# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned). func_hookable func_options_prep func_options_prep () { @@ -1661,10 +1806,14 @@ opt_verbose=false opt_warning_types= - func_run_hooks func_options_prep ${1+"$@"} + _G_rc_options_prep=false + if func_run_hooks func_options_prep ${1+"$@"}; then + _G_rc_options_prep=: + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result + fi - # save modified positional parameters for caller - func_options_prep_result=$func_run_hooks_result + $_G_rc_options_prep } @@ -1678,18 +1827,20 @@ func_parse_options_result= + _G_rc_parse_options=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. - func_run_hooks func_parse_options ${1+"$@"} - - # Adjust func_parse_options positional parameters to match - eval set dummy "$func_run_hooks_result"; shift + if func_run_hooks func_parse_options ${1+"$@"}; then + eval set dummy "$func_run_hooks_result"; shift + _G_rc_parse_options=: + fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break + _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in @@ -1704,7 +1855,10 @@ ;; --warnings|--warning|-W) - test $# = 0 && func_missing_arg $_G_opt && break + if test $# = 0 && func_missing_arg $_G_opt; then + _G_rc_parse_options=: + break + fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above @@ -1757,15 +1911,25 @@ shift ;; - --) break ;; + --) _G_rc_parse_options=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift + _G_match_parse_options=false + break + ;; esac + + $_G_match_parse_options && _G_rc_parse_options=: done - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - func_parse_options_result=$func_quote_for_eval_result + + if $_G_rc_parse_options; then + # save modified positional parameters for caller + func_quote eval ${1+"$@"} + func_parse_options_result=$func_quote_result + fi + + $_G_rc_parse_options } @@ -1778,16 +1942,21 @@ { $debug_cmd + _G_rc_validate_options=false + # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" - func_run_hooks func_validate_options ${1+"$@"} + if func_run_hooks func_validate_options ${1+"$@"}; then + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result + _G_rc_validate_options=: + fi # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE - # save modified positional parameters for caller - func_validate_options_result=$func_run_hooks_result + $_G_rc_validate_options } @@ -2068,7 +2237,7 @@ compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) - version: $progname $scriptversion Debian-2.4.6-2 + version: $progname $scriptversion Debian-2.4.6-2.1 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` @@ -2270,6 +2439,8 @@ nonopt= preserve_args= + _G_rc_lt_options_prep=: + # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) @@ -2293,11 +2464,18 @@ uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; + *) + _G_rc_lt_options_prep=false + ;; esac - # Pass back the list of options. - func_quote_for_eval ${1+"$@"} - libtool_options_prep_result=$func_quote_for_eval_result + if $_G_rc_lt_options_prep; then + # Pass back the list of options. + func_quote eval ${1+"$@"} + libtool_options_prep_result=$func_quote_result + fi + + $_G_rc_lt_options_prep } func_add_hook func_options_prep libtool_options_prep @@ -2309,9 +2487,12 @@ { $debug_cmd + _G_rc_lt_parse_options=false + # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do + _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in @@ -2386,15 +2567,22 @@ func_append preserve_args " $_G_opt" ;; - # An option not handled by this hook function: - *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"} ; shift + _G_match_lt_parse_options=false + break + ;; esac + $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done + if $_G_rc_lt_parse_options; then + # save modified positional parameters for caller + func_quote eval ${1+"$@"} + libtool_parse_options_result=$func_quote_result + fi - # save modified positional parameters for caller - func_quote_for_eval ${1+"$@"} - libtool_parse_options_result=$func_quote_for_eval_result + $_G_rc_lt_parse_options } func_add_hook func_parse_options libtool_parse_options @@ -2451,8 +2639,8 @@ } # Pass back the unparsed argument list - func_quote_for_eval ${1+"$@"} - libtool_validate_options_result=$func_quote_for_eval_result + func_quote eval ${1+"$@"} + libtool_validate_options_result=$func_quote_result } func_add_hook func_validate_options libtool_validate_options @@ -3418,8 +3606,8 @@ esac done - func_quote_for_eval "$libobj" - test "X$libobj" != "X$func_quote_for_eval_result" \ + func_quote_arg pretty "$libobj" + test "X$libobj" != "X$func_quote_arg_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" @@ -3492,8 +3680,8 @@ func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result - func_quote_for_eval "$srcfile" - qsrcfile=$func_quote_for_eval_result + func_quote_arg pretty "$srcfile" + qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then @@ -4096,8 +4284,8 @@ case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. - func_quote_for_eval "$nonopt" - install_prog="$func_quote_for_eval_result " + func_quote_arg pretty "$nonopt" + install_prog="$func_quote_arg_result " arg=$1 shift else @@ -4107,8 +4295,8 @@ # The real first argument should be the name of the installation program. # Aesthetically quote it. - func_quote_for_eval "$arg" - func_append install_prog "$func_quote_for_eval_result" + func_quote_arg pretty "$arg" + func_append install_prog "$func_quote_arg_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; @@ -4165,12 +4353,12 @@ esac # Aesthetically quote the argument. - func_quote_for_eval "$arg" - func_append install_prog " $func_quote_for_eval_result" + func_quote_arg pretty "$arg" + func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then - func_quote_for_eval "$arg2" + func_quote_arg pretty "$arg2" fi - func_append install_shared_prog " $func_quote_for_eval_result" + func_append install_shared_prog " $func_quote_arg_result" done test -z "$install_prog" && \ @@ -4181,8 +4369,8 @@ if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else - func_quote_for_eval "$install_override_mode" - func_append install_shared_prog " -m $func_quote_for_eval_result" + func_quote_arg pretty "$install_override_mode" + func_append install_shared_prog " -m $func_quote_arg_result" fi fi @@ -4478,8 +4666,8 @@ relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { - func_quote_for_expand "$relink_command" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$relink_command" + eval "func_echo $func_quote_arg_result" } if eval "$relink_command"; then : else @@ -5258,7 +5446,8 @@ if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" - qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + func_quote_arg pretty "$ECHO" + qECHO=$func_quote_arg_result $ECHO "\ # A function that is used when there is no print builtin or printf. @@ -5268,7 +5457,7 @@ \$1 _LTECHO_EOF' } - ECHO=\"$qECHO\" + ECHO=$qECHO fi # Very basic option parsing. These options are (a) specific to @@ -6611,9 +6800,9 @@ while test "$#" -gt 0; do arg=$1 shift - func_quote_for_eval "$arg" - qarg=$func_quote_for_eval_unquoted_result - func_append libtool_args " $func_quote_for_eval_result" + func_quote_arg pretty,unquoted "$arg" + qarg=$func_quote_arg_unquoted_result + func_append libtool_args " $func_quote_arg_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then @@ -7211,9 +7400,9 @@ save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $func_quote_for_eval_result" - func_append compiler_flags " $func_quote_for_eval_result" + func_quote_arg pretty "$flag" + func_append arg " $func_quote_arg_result" + func_append compiler_flags " $func_quote_arg_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" @@ -7227,10 +7416,10 @@ save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs - func_quote_for_eval "$flag" - func_append arg " $wl$func_quote_for_eval_result" - func_append compiler_flags " $wl$func_quote_for_eval_result" - func_append linker_flags " $func_quote_for_eval_result" + func_quote_arg pretty "$flag" + func_append arg " $wl$func_quote_arg_result" + func_append compiler_flags " $wl$func_quote_arg_result" + func_append linker_flags " $func_quote_arg_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" @@ -7254,8 +7443,8 @@ # -msg_* for osf cc -msg_*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; # Flags to be passed through unchanged, with rationale: @@ -7279,8 +7468,8 @@ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ -specs=*|-fsanitize=*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" @@ -7301,15 +7490,15 @@ continue else # Otherwise treat like 'Some other compiler flag' below - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result fi ;; # Some other compiler flag. -* | +*) - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; *.$objext) @@ -7429,8 +7618,8 @@ *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. - func_quote_for_eval "$arg" - arg=$func_quote_for_eval_result + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; esac # arg @@ -9942,8 +10131,8 @@ for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? @@ -10036,8 +10225,8 @@ eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" + func_quote_arg expand,pretty "$cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? @@ -10511,12 +10700,12 @@ elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + func_quote_arg pretty "$var_value" + relink_command="$var=$func_quote_arg_result; export $var; $relink_command" fi done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + func_quote_arg pretty,unquoted "(cd `pwd`; $relink_command)" + relink_command=$func_quote_arg_unquoted_result fi # Only actually do things if not in dry run mode. @@ -10756,13 +10945,14 @@ elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + func_quote_arg pretty,unquoted "$var_value" + relink_command="$var=$func_quote_arg_unquoted_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + func_quote_arg pretty,unquoted "$relink_command" + relink_command=$func_quote_arg_unquoted_result if test yes = "$hardcode_automatic"; then relink_command= fi diff -Nru gstreamer-editing-services1.0-1.14.1/meson.build gstreamer-editing-services1.0-1.14.2/meson.build --- gstreamer-editing-services1.0-1.14.1/meson.build 2018-05-17 12:33:42.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/meson.build 2018-07-20 00:05:58.000000000 +0000 @@ -1,5 +1,5 @@ project('gst-editing-services', 'c', - version : '1.14.1', + version : '1.14.2', meson_version : '>= 0.36.0', default_options : [ 'warning_level=1', 'buildtype=debugoptimized' ]) @@ -110,7 +110,7 @@ 'gst_init(NULL,NULL);' + \ 'ges_init();' ] -ges_c_args = ['-DHAVE_CONFIG_H'] +ges_c_args = ['-DHAVE_CONFIG_H', '-DG_LOG_DOMAIN="GES"'] plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir')) if gst_dep.type_name() == 'internal' @@ -156,6 +156,50 @@ subdir('tests') subdir('examples') +override_detector = ''' +import sys +import os + +prefix = sys.argv[1] +version = sys.version_info + +# If we are installing in the same prefix as PyGobject +# make sure to install in the right place. +import gi.overrides + +overrides_path = os.path.dirname(gi.overrides.__file__) +if os.path.commonprefix([overrides_path, prefix]) == prefix: + print(overrides_path) + exit(0) + +# Otherwise follow python's way of install site packages inside +# the provided prefix +if os.name == 'posix': + print(os.path.join( + prefix, 'lib', 'python%d.%d' % (version.major, version.minor), + 'site-packages', 'gi', 'overrides')) +else: + print(os.path.join( + prefix, 'Lib', 'Python%d%d' % (version.major, version.minor), + 'site-packages', 'gi', 'overrides')) +''' +python3 = import('python3').find_python() +pygi_override_dir = get_option('pygi-overrides-dir') +if pygi_override_dir == '' + cres = run_command(python3, '-c', override_detector, get_option('prefix')) + if cres.returncode() == 0 + pygi_override_dir = cres.stdout().strip() + endif + if cres.stderr() != '' + message(cres.stderr()) + endif +endif + +if pygi_override_dir != '' + message('pygobject overrides directory ' + pygi_override_dir) + subdir('bindings/python') +endif + if build_machine.system() == 'windows' message('Disabling gtk-doc while building on Windows') elif get_option('disable_gtkdoc') @@ -168,5 +212,4 @@ endif endif -python3 = import('python3').find_python() run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")') diff -Nru gstreamer-editing-services1.0-1.14.1/meson_options.txt gstreamer-editing-services1.0-1.14.2/meson_options.txt --- gstreamer-editing-services1.0-1.14.1/meson_options.txt 2018-03-23 20:47:44.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/meson_options.txt 2018-07-18 16:40:26.000000000 +0000 @@ -4,3 +4,5 @@ option('disable_gtkdoc', type : 'boolean', value : false, description : 'Whether to disable the documentation generation') +option('pygi-overrides-dir', type : 'string', value : '', + description: 'Path to pygobject overrides directory') diff -Nru gstreamer-editing-services1.0-1.14.1/NEWS gstreamer-editing-services1.0-1.14.2/NEWS --- gstreamer-editing-services1.0-1.14.1/NEWS 2018-05-17 12:34:35.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/NEWS 2018-07-20 00:06:53.000000000 +0000 @@ -87,14 +87,14 @@ applications that set up connections with and stream to and from other WebRTC peers, whilst leveraging all of the usual GStreamer features such as hardware-accelerated encoding and decoding, OpenGL integration, -zero-copy and embedded platform support. And it's easy to build and +zero-copy and embedded platform support. And it’s easy to build and integrate into your application too! WebRTC enables real-time communication of audio, video and data with web browsers and native apps, and it is supported or about to be support by recent versions of all major browsers and operating systems. -GStreamer's new WebRTC implementation uses libnice for Interactive +GStreamer’s new WebRTC implementation uses libnice for Interactive Connectivity Establishment (ICE) to figure out the best way to communicate with other peers, punch holes into firewalls, and traverse NATs. @@ -104,9 +104,9 @@ functionality is missing it should be fairly obvious where it needs to go. -For more details, background and example code, check out Nirbheek's blog -post _GStreamer has grown a WebRTC implementation_, as well as Matthew's -_GStreamer WebRTC_ talk from last year's GStreamer Conference in Prague. +For more details, background and example code, check out Nirbheek’s blog +post _GStreamer has grown a WebRTC implementation_, as well as Matthew’s +_GStreamer WebRTC_ talk from last year’s GStreamer Conference in Prague. New Elements @@ -117,7 +117,7 @@ (SRT) video streaming protocol, which aims to be easy to use whilst striking a new balance between reliability and latency for low latency video streaming use cases. More details about SRT and the - implementation in GStreamer in Olivier's blog post _SRT in + implementation in GStreamer in Olivier’s blog post _SRT in GStreamer_. - av1enc and av1dec elements providing experimental support for the @@ -138,7 +138,7 @@ GStreamer-internal latency as well as latency added by external components or circuits. -- 'fakevideosink is basically a null sink for video data and very +- ’fakevideosink is basically a null sink for video data and very similar to fakesink, only that it will answer allocation queries and will advertise support for various video-specific things such GstVideoMeta, GstVideoCropMeta and GstVideoOverlayCompositionMeta @@ -149,22 +149,22 @@ multiple processes. Usually a GStreamer pipeline runs in a single process and parallelism is achieved by distributing workloads using multiple threads. This means that all elements in the pipeline have - access to all the other elements' memory space however, including + access to all the other elements’ memory space however, including that of any libraries used. For security reasons one might therefore want to put sensitive parts of a pipeline such as DRM and decryption handling into a separate process to isolate it from the rest of the pipeline. This can now be achieved with the new ipcpipeline plugin. - Check out George's blog post _ipcpipeline: Splitting a GStreamer + Check out George’s blog post _ipcpipeline: Splitting a GStreamer pipeline into multiple processes_ or his lightning talk from last - year's GStreamer Conference in Prague for all the gory details. + year’s GStreamer Conference in Prague for all the gory details. - proxysink and proxysrc are new elements to pass data from one pipeline to another within the same process, very similar to the existing inter elements, but not limited to raw audio and video data. These new proxy elements are very special in how they work under the hood, which makes them extremely powerful, but also - dangerous if not used with care. The reason for this is that it's - not just data that's passed from sink to src, but these elements + dangerous if not used with care. The reason for this is that it’s + not just data that’s passed from sink to src, but these elements basically establish a two-way wormhole that passes through queries and events in both directions, which means caps negotiation and allocation query driven zero-copy can work through this wormhole. @@ -173,13 +173,13 @@ streaming thread. There is a queue element inside proxysrc to decouple the source thread from the sink thread, but that queue is not unlimited, so it is entirely possible that the proxysink - pipeline thread gets stuck in the proxysrc pipeline, e.g. when that + pipeline thread gets stuck in the proxysrc pipeline, e.g. when that pipeline is paused or stops consuming data for some other reason. This means that one should always shut down down the proxysrc pipeline before shutting down the proxysink pipeline, for example. Or at least take care when shutting down pipelines. Usually this is not a problem though, especially not in live pipelines. For more - information see Nirbheek's blog post _Decoupling GStreamer + information see Nirbheek’s blog post _Decoupling GStreamer Pipelines_, and also check out out the new ipcpipeline plugin for sending data from one process to another process (see above). @@ -204,13 +204,13 @@ in the GStreamer WebRTC implementation. - GstReferenceTimestampMeta is a new meta that allows you to attach - additional reference timestamps to a buffer. These timestamps don't + additional reference timestamps to a buffer. These timestamps don’t have to relate to the pipeline clock in any way. Examples of this could be an NTP timestamp when the media was captured, a frame counter on the capture side or the (local) UNIX timestamp when the media was captured. The decklink elements make use of this. -- GstVideoRegionOfInterestMeta: it's now possible to attach generic +- GstVideoRegionOfInterestMeta: it’s now possible to attach generic free-form element-specific parameters to a region of interest meta, for example to tell a downstream encoder to use certain codec parameters for a certain region. @@ -247,7 +247,7 @@ - GstAudioStreamAlign is a new helper object for audio elements that handles discontinuity detection and sample alignment. It will align - samples after the previous buffer's samples, but keep track of the + samples after the previous buffer’s samples, but keep track of the divergence between buffer timestamps and sample position (jitter). If it exceeds a configurable threshold the alignment will be reset. This simply factors out code that was duplicated in a number of @@ -267,7 +267,7 @@ installing and handling a "render-rectangle" property on elements that implement this interface, so that this functionality can also be used from the command line for testing and debugging purposes. - The property wasn't added to the interface itself as that would + The property wasn’t added to the interface itself as that would require all implementors to provide it which would not be backwards-compatible. @@ -280,11 +280,11 @@ element is based on this. - Full list of API new in 1.14: -- GStreamer core API new in 1.14 -- GStreamer base library API new in 1.14 -- gst-plugins-base libraries API new in 1.14 -- gst-plugins-bad: no list, mostly GstWebRTC library and new - non-stream audio decoder base class. + - GStreamer core API new in 1.14 + - GStreamer base library API new in 1.14 + - gst-plugins-base libraries API new in 1.14 + - gst-plugins-bad: no list, mostly GstWebRTC library and new + non-stream audio decoder base class. New RTP features and improvements @@ -301,7 +301,7 @@ packet loss using _retransmission (rtx)_. GStreamer has had retransmission support for a long time, but Forward Error Correction allows for different trade-offs: The advantage of Forward Error - Correction is that it doesn't add latency, whereas retransmission + Correction is that it doesn’t add latency, whereas retransmission requires at least one more roundtrip to request and hopefully receive lost packets; Forward Error Correction increases the required bandwidth however, even in situations where there is no @@ -317,7 +317,7 @@ - a few new buffer flags for FEC support: GST_BUFFER_FLAG_NON_DROPPABLE can be used to mark important buffers, - e.g. to flag RTP packets carrying keyframes or codec setup data for + e.g. to flag RTP packets carrying keyframes or codec setup data for RTP Forward Error Correction purposes, or to prevent still video frames from being dropped by elements due to QoS. There already is a GST_BUFFER_FLAG_DROPPABLE. GST_RTP_BUFFER_FLAG_REDUNDANT is used to @@ -337,8 +337,8 @@ - rtpjitterbuffer has a new fast start mode: in many scenarios the jitter buffer will have to wait for the full configured latency before it can start outputting packets. The reason for that is that - it often can't know what the sequence number of the first expected - RTP packet is, so it can't know whether a packet earlier than the + it often can’t know what the sequence number of the first expected + RTP packet is, so it can’t know whether a packet earlier than the earliest packet received will still arrive in future. This behaviour can now be bypassed by setting the "faststart-min-packets" property to the number of consecutive packets needed to start, and the jitter @@ -367,10 +367,10 @@ - tee now does allocation query aggregation, which is important for zero-copy and efficient data handling, especially for video. Those who want to drop allocation queries on purpose can use the identity - element's new "drop-allocation" property for that instead. + element’s new "drop-allocation" property for that instead. - audioconvert now has a "mix-matrix" property, which obsoletes the - audiomixmatrix element. There's also mix matrix support in the audio + audiomixmatrix element. There’s also mix matrix support in the audio conversion and channel mixing API. - x264enc: new "insert-vui" property to disable VUI (Video Usability @@ -409,7 +409,7 @@ - rtspsrc now has support for RTSP protocol version 2.0 as well as ONVIF audio backchannels (see below for more details). It also - sports a new "accept-certificate" signal for "manually" checking a + sports a new "accept-certificate" signal for “manually” checking a TLS certificate for validity. It now also prints RTSP/SDP messages to the gstreamer debug log instead of stdout. @@ -418,8 +418,8 @@ - splitmuxsink has gained a "split-now" action signal and new "alignment-threshold" and "use-robust-muxing" properties. If robust - muxing is enabled, it will check and set the muxer's reserved space - properties if present. This is primarily for use with mp4mux's + muxing is enabled, it will check and set the muxer’s reserved space + properties if present. This is primarily for use with mp4mux’s robust muxing mode. - qtmux has a new _prefill recording mode_ which sets up a moov header @@ -443,24 +443,24 @@ This allows for connection reuse, cookie sharing, etc. Applications can also force a context to use. In other news, HTTP headers received from the server are posted as element messages on the bus - now for easier diagnostics, and it's also possible now to use other + now for easier diagnostics, and it’s also possible now to use other types of proxy servers such as SOCKS4 or SOCKS5 proxies, support for which is implemented directly in gio. Before only HTTP proxies were allowed. - qtmux, mp4mux and matroskamux will now refuse caps changes of input - streams at runtime. This isn't really supported with these + streams at runtime. This isn’t really supported with these containers (or would have to be implemented differently with a - considerable effort) and doesn't produce valid and spec-compliant - files that will play everywhere. So if you can't guarantee that the - input caps won't change, use a container format that does support on + considerable effort) and doesn’t produce valid and spec-compliant + files that will play everywhere. So if you can’t guarantee that the + input caps won’t change, use a container format that does support on the fly caps changes for a stream such as MPEG-TS or use splitmuxsink which can start a new file when the caps change. What would happen before is that e.g. rtph264depay or rtph265depay would simply send new SPS/PPS inband even for AVC format, which would then get muxed into the container as if nothing changed. Some decoders - will handle this just fine, but that's often more luck than by - design. In any case, it's not right, so we disallow it now. + will handle this just fine, but that’s often more luck than by + design. In any case, it’s not right, so we disallow it now. - matroskamux has Table of Content (TOC) support now (chapters etc.) and matroskademux TOC support has been improved. matroskademux has @@ -475,10 +475,10 @@ - The avwait element has a new "end-timecode" property and posts "avwait-status" element messages now whenever avwait starts or stops - passing through data (e.g. because target-timecode and end-timecode + passing through data (e.g. because target-timecode and end-timecode respectively have been reached). -- 'alsamidisrc' element has been broken for many many years and has +- ‘alsamidisrc’ element has been broken for many many years and has now been repaired allowing live capture from your MIDI HW. - h265parse and h265parse will try harder to make upstream output the @@ -500,7 +500,7 @@ - The NVIDIA NVENC hardware-accelerated video encoders now support dynamic bitrate and preset reconfiguration and support the I420 - 4:2:0 video format. It's also possible to configure the gop size via + 4:2:0 video format. It’s also possible to configure the gop size via the new "gop-size" property. - The MPEG-TS muxer and demuxer (tsmux, tsdemux) now have support for @@ -515,25 +515,25 @@ - The decklink plugin for Blackmagic capture and playback cards have seen numerous improvements: -- decklinkaudiosrc and decklinkvideosrc now put hardware reference - timestamp on buffers in form of GstReferenceTimestampMetas. - This can be useful to know on multi-channel cards which frames from - different channels were captured at the same time. - -- decklinkvideosink has gained support for Decklink hardware keying - with two new properties ("keyer-mode" and "keyer-level") to control - the built-in hardware keyer of Decklink cards. - -- decklinkaudiosink has been re-implemented around GstBaseSink instead - of the GstAudioBaseSink base class, since the Decklink APIs don't - fit very well with the GstAudioBaseSink APIs, which used to cause - various problems due to inaccuracies in the clock calculations. - Problems were audio drop-outs and A/V sync going wrong after - pausing/seeking. + - decklinkaudiosrc and decklinkvideosrc now put hardware reference + timestamp on buffers in form of GstReferenceTimestampMetas. + This can be useful to know on multi-channel cards which frames + from different channels were captured at the same time. + + - decklinkvideosink has gained support for Decklink hardware + keying with two new properties ("keyer-mode" and "keyer-level") + to control the built-in hardware keyer of Decklink cards. + + - decklinkaudiosink has been re-implemented around GstBaseSink + instead of the GstAudioBaseSink base class, since the Decklink + APIs don’t fit very well with the GstAudioBaseSink APIs, which + used to cause various problems due to inaccuracies in the clock + calculations. Problems were audio drop-outs and A/V sync going + wrong after pausing/seeking. -- support for more than 16 devices, without any artificial limit + - support for more than 16 devices, without any artificial limit -- work continued on the msdk plugin for Intel's Media SDK which +- work continued on the msdk plugin for Intel’s Media SDK which enables hardware-accelerated video encoding and decoding on Intel graphics hardware on Windows or Linux. Added the video memory, buffer pool, and context/session sharing support which helps to @@ -552,7 +552,7 @@ streams, meaning it can do fast-forward/fast-rewind of normal (non-I frame only) streams even at high speeds without saturating network bandwidth or exceeding decoder capabilities. It will keep statistics - and skip keyframes or fragments as needed. See Sebastian's blog post + and skip keyframes or fragments as needed. See Sebastian’s blog post _DASH trick-mode playback in GStreamer_ for more details. It also supports webvtt subtitle streams now and has seen improvements when seeking in live streams. @@ -560,13 +560,13 @@ - kmssink has seen lots of fixes and improvements in this cycle, including: -- Raspberry Pi (vc4) and Xilinx DRM driver support + - Raspberry Pi (vc4) and Xilinx DRM driver support -- new "render-rectangle" property that can be used from the command - line as well as "display-width" and "display-height", and - "can-scale" properties + - new "render-rectangle" property that can be used from the + command line as well as "display-width" and "display-height", + and "can-scale" properties -- GstVideoCropMeta support + - GstVideoCropMeta support Plugin and library moves @@ -596,7 +596,7 @@ It improves upon the existing GstCollectPads API in that it is a proper base class which was also designed with live streaming in mind. GstAggregator subclasses will operate in a mode with defined latency if -any of the inputs are live streams. This ensures that the pipeline won't +any of the inputs are live streams. This ensures that the pipeline won’t stall if any of the inputs stop producing data, and that the configured maximum latency is never exceeded. @@ -604,19 +604,19 @@ GstAudioAggregator is a new base class for raw audio mixers and muxers and is based on GstAggregator (see above). It provides defined-latency -mixing of raw audio inputs and ensures that the pipeline won't stall +mixing of raw audio inputs and ensures that the pipeline won’t stall even if one of the input streams stops producing data. As part of the move to stabilise the API there were some last-minute API changes and clean-ups, but those should mostly affect internal elements. It is used by the audiomixer element, which is a replacement for -'adder', which did not handle live inputs very well and did not align +‘adder’, which did not handle live inputs very well and did not align input streams according to running time. audiomixer should behave much better in that respect and generally behave as one would expected in most scenarios. -Similarly, audiointerleave replaces the 'interleave' element which did +Similarly, audiointerleave replaces the ‘interleave’ element which did not handle live inputs or non-aligned inputs very robustly. GstAudioAggregator and its subclases have gained support for input @@ -625,7 +625,7 @@ handled correctly. We hope to move the video equivalents (GstVideoAggregator and -compositor) to -base in the next cycle, i.e. for 1.16. +compositor) to -base in the next cycle, i.e. for 1.16. GStreamer OpenGL integration library and plugin moved from -bad to -base @@ -646,7 +646,7 @@ qmlglsink video sink element as well as a qmlglsrc element. qmlglsink renders video into a QQuickItem, and qmlglsrc captures a window from a QML view and feeds it as video into a pipeline for further processing. -Both elements leverage GStreamer's OpenGL integration. In addition to +Both elements leverage GStreamer’s OpenGL integration. In addition to the move to -good the following features were added: - A proxy object is now used for thread-safe access to the QML widget @@ -654,20 +654,20 @@ video widget at any time, so without this we might be left with a dangling pointer. -- EGL is now supported with the X11 backend, which works e.g. on +- EGL is now supported with the X11 backend, which works e.g. on Freescale imx6 The GTK+ plugin has also moved from -bad to -good. It includes gtksink and gtkglsink which both render video into a GtkWidget. gtksink uses Cairo for rendering the video, which will work everywhere in all scenarios but involves an extra memory copy, whereas gtkglsink fully -leverages GStreamer's OpenGL integration, but might not work properly in -all scenarios, e.g. where the OpenGL driver does not properly support +leverages GStreamer’s OpenGL integration, but might not work properly in +all scenarios, e.g. where the OpenGL driver does not properly support multiple sharing contexts in different threads; on Linux Nouveau is -known to be broken in this respect, whilst NVIDIA's proprietary drivers +known to be broken in this respect, whilst NVIDIA’s proprietary drivers and most other drivers generally work fine, and the experience with -Intel's driver seems to be mixed; some proprietary embedded Linux -drivers don't work; macOS works. +Intel’s driver seems to be mixed; some proprietary embedded Linux +drivers don’t work; macOS works. GstPhysMemoryAllocator interface moved from -bad to -base @@ -676,13 +676,13 @@ Plugin removals -- the sunaudio plugin was removed, since it couldn't ever have been +- the sunaudio plugin was removed, since it couldn’t ever have been built or used with GStreamer 1.0, but no one even noticed in all these years. - the schroedinger-based Dirac encoder/decoder plugin has been removed, as there is no longer any upstream or anyone else - maintaining it. Seeing that it's quite a fringe codec it seemed best + maintaining it. Seeing that it’s quite a fringe codec it seemed best to simply remove it. API removals @@ -696,29 +696,28 @@ - The video support library has gained support for a few new pixel formats: -- NV16_10LE32: 10-bit variant of NV16, packed into 32bit words (plus 2 - bits padding) -- NV12_10LE32: 10-bit variant of NV12, packed into 32bit words (plus 2 - bits padding) -- GRAY10_LE32: 10-bit grayscale, packed in 32bit words (plus 2 bits - padding) - + - NV16_10LE32: 10-bit variant of NV16, packed into 32bit words + (plus 2 bits padding) + - NV12_10LE32: 10-bit variant of NV12, packed into 32bit words + (plus 2 bits padding) + - GRAY10_LE32: 10-bit grayscale, packed in 32bit words (plus 2 + bits padding) - decodebin, playbin and GstDiscoverer have seen stability improvements in corner cases such as shutdown while still starting up or shutdown in error cases (hat tip to the oss-fuzz project). - floating reference handling was inconsistent and has been cleaned up across the board, including annotations. This solves various - long-standing memory leaks in language bindings, which e.g. often + long-standing memory leaks in language bindings, which e.g. often caused elements and pads to be leaked. - major gobject-introspection annotation improvements for large parts of the library API, including nullability of return types and - function parameters, correct types (e.g. strings vs. filenames), + function parameters, correct types (e.g. strings vs. filenames), ownership transfer, array length parameters, etc. This allows to use bigger parts of the GStreamer API to be safely used from dynamic - language bindings (e.g. Python, Javascript) and allows static - bindings (e.g. C#, Rust, Vala) to autogenerate more API bindings + language bindings (e.g. Python, Javascript) and allows static + bindings (e.g. C#, Rust, Vala) to autogenerate more API bindings without manual intervention. OpenGL integration @@ -727,7 +726,7 @@ gst-plugins-base and is now part of our stable API. - new MESA3D GBM BACKEND. On devices with working libdrm support, it - is possible to use Mesa3D's GBM library to set up an EGL context + is possible to use Mesa3D’s GBM library to set up an EGL context directly on top of KMS. This makes it possible to use the GStreamer OpenGL elements without a windowing system if a libdrm- and Mesa3D-supported GPU is present. @@ -761,7 +760,7 @@ log handler of course, this just provides this functionality as part of GStreamer. -- 'fakevideosink is a null sink for video data that advertises +- ’fakevideosink is a null sink for video data that advertises video-specific metas and behaves like a video sink. See above for more details. @@ -817,8 +816,8 @@ the best of our knowledge the first RTSP 2.0 implementation ever! - ONVIF audio backchannel support. This is an extension specified by - ONVIF that allows RTSP clients (e.g. a control room operator) to - send audio back to the RTSP server (e.g. an IP camera). + ONVIF that allows RTSP clients (e.g. a control room operator) to + send audio back to the RTSP server (e.g. an IP camera). Theoretically this could have been done also by using the RECORD method of the RTSP protocol, but ONVIF chose not to do that, so the backchannel is set up alongside the other streams. Format @@ -836,7 +835,7 @@ manually checking a TLS certificate for validity. - Fix keep-alive/timeout issue for certain clients using TCP - interleave as transport who don't do keep-alive via some other + interleave as transport who don’t do keep-alive via some other method such as periodic RTSP OPTION requests. We now put netaddress metas on the packets from the TCP interleaved stream, so can map RTCP packets to the right stream in the server and can handle them @@ -853,7 +852,7 @@ GStreamer VAAPI -- Improve DMABuf's usage, both upstream and dowstream, and +- Improve DMABuf’s usage, both upstream and dowstream, and memory:DMABuf caps feature is also negotiated when the dmabuf-based buffer cannot be mapped onto user-space. @@ -865,19 +864,19 @@ - VA display cache was removed. -- libva's log messages are now redirected into the GStreamer log +- libva’s log messages are now redirected into the GStreamer log handler. - Decoders improved their upstream re-negotiation by avoiding to re-instantiate the internal decoder if stream caps are compatible with the previous one. -- When downstream doesn't support GstVideoMeta and the decoded frames - don't have standard strides, they are copied onto system +- When downstream doesn’t support GstVideoMeta and the decoded frames + don’t have standard strides, they are copied onto system memory-based buffers. - H.264 decoder has a low-latency property, for live streams which - doesn't conform the H.264 specification but still it is required to + doesn’t conform the H.264 specification but still it is required to push the frames to downstream as soon as possible. - As part of the Google Summer of Code 2017 the H.264 decoder drops @@ -924,7 +923,7 @@ - vaapisink was demoted to marginal rank on Wayland because COGL cannot display YUV surfaces. -More details in Víctor's blog post _GStreamer VA-API 1.14: what’s new?_. +More details in Víctor’s blog post _GStreamer VA-API 1.14: what’s new?_. GStreamer Editing Services and NLE @@ -942,7 +941,7 @@ GStreamer validate -- Handle running scenarios on live pipelines (in the "content sense", +- Handle running scenarios on live pipelines (in the “content sense”, not the GStreamer one) - Implement RTSP support with a basic server based on gst-rtsp-server, @@ -969,7 +968,7 @@ - Update wrapped API to GStreamer 1.14 -- Removed the need for "glue" code +- Removed the need for “glue” code - Provide a nuget @@ -989,7 +988,7 @@ - some plugins and libraries have moved between modules, see the _Plugin and_ _library moves_ section above, and their respective - dependencies have moved with them of course, e.g. the GStreamer + dependencies have moved with them of course, e.g. the GStreamer OpenGL integration support library and plugin is now in gst-plugins-base, and mpg123, LAME and twoLAME based audio decoder and encoder plugins are now in gst-plugins-good. @@ -1033,7 +1032,7 @@ There is also a small structure size related ABI breakage introduced in the gst-plugins-bad codecparsers library between version 1.13.90 and -1.13.91. This should "only" affect gstreamer-vaapi, so anyone who ships +1.13.91. This should “only” affect gstreamer-vaapi, so anyone who ships the release candidates is advised to upgrade those two modules at the same time. @@ -1052,36 +1051,38 @@ - The GStreamer wasapi plugin was rewritten and should not only be usable now, but in top shape and suitable for low-latency use cases. - The Windows Audio Session API (WASAPI) is Microsoft's most modern + The Windows Audio Session API (WASAPI) is Microsoft’s most modern method for talking with audio devices, and now that the wasapi plugin is up to scratch it is preferred over the directsound plugin. The ranks of the wasapisink and wasapisrc elements have been updated to reflect this. Further improvements include: -- support for more than 2 channels + - support for more than 2 channels -- a new "low-latency" property to enable low-latency operation (which - should always be safe to enable) + - a new "low-latency" property to enable low-latency operation + (which should always be safe to enable) -- support for the AudioClient3 API which is only available on Windows - 10: in wasapisink this will be used automatically if available; in - wasapisrc it will have to be enabled explicitly via the - "use-audioclient3" property, as capturing audio with low latency and - without glitches seems to require setting the realtime priority of - the entire pipeline to "critical", which cannot be done from inside - the element, but has to be done in the application. - -- set realtime thread priority to avoid glitches - -- allow opening devices in exclusive mode, which provides much lower - latency compared to shared mode where WASAPI's engine period is - 10ms. This can be activated via the "exclusive" property. + - support for the AudioClient3 API which is only available on + Windows 10: in wasapisink this will be used automatically if + available; in wasapisrc it will have to be enabled explicitly + via the "use-audioclient3" property, as capturing audio with low + latency and without glitches seems to require setting the + realtime priority of the entire pipeline to “critical”, which + cannot be done from inside the element, but has to be done in + the application. + + - set realtime thread priority to avoid glitches + + - allow opening devices in exclusive mode, which provides much + lower latency compared to shared mode where WASAPI’s engine + period is 10ms. This can be activated via the "exclusive" + property. -- Also see Nirbheek's blog post _Low Latency Audio on Windows with - GStreamer_. + - Also see Nirbheek’s blog post _Low Latency Audio on Windows with + GStreamer_. - There are now GstDeviceProvider implementations for the wasapi and - directsound plugins, so it's now possible to discover both audio + directsound plugins, so it’s now possible to discover both audio sources and audio sinks on Windows via the GstDeviceMonitor API - debug log timestamps are now higher granularity owing to @@ -1136,12 +1137,12 @@ Selnes, Thiago Santos, Thibault Saunier, Thijs Vermeir, Tim Allen, Tim-Philipp Müller, Ting-Wei Lan, Tomas Rataj, Tom Bailey, Tonu Jaansoo, U. Artie Eoff, Umang Jain, Ursula Maplehurst, VaL Doroshchuk, Vasilis -Liaskovitis, Víctor Manuel Jáquez Leal, vijay, Vincent Penquerc'h, +Liaskovitis, Víctor Manuel Jáquez Leal, vijay, Vincent Penquerc’h, Vineeth T M, Vivia Nikolaidou, Wang Xin-yu (王昕宇), Wei Feng, Wim Taymans, Wonchul Lee, Xabier Rodriguez Calvar, Xavier Claessens, XuGuangxin, Yasushi SHOJI, Yi A Wang, Youness Alaoui, -... and many others who have contributed bug reports, translations, sent +… and many others who have contributed bug reports, translations, sent suggestions or helped testing. @@ -1187,8 +1188,8 @@ - gst-play-1.0: fix leaving stdin in non-blocking mode after exit - flvmux: wait for caps on all input pads before writing header even if source is live -- flvmux: don't wake up the muxer unless there is data, fixes busy - looping if there's no input data +- flvmux: don’t wake up the muxer unless there is data, fixes busy + looping if there’s no input data - flvmux: fix major leak of input buffers - rtspsrc, rtsp-server: revert to RTSP RFC handling of sendonly/recvonly attributes @@ -1212,17 +1213,17 @@ - h265parse: Make caps writable before modifying them, fixes criticals - fakevideosink: request an extra buffer if enable-last-sample is enabled -- wasapisrc: Don't provide a clock based on WASAPI's clock +- wasapisrc: Don’t provide a clock based on WASAPI’s clock - wasapi: Only use audioclient3 when low-latency, as it might otherwise glitch with slow CPUs or VMs -- wasapi: Don't derive device period from latency time, should make it +- wasapi: Don’t derive device period from latency time, should make it more robust against glitches - audiolatency: Fix wave detection in buffers and avoid bogus pts values while starting - msdk: fix plugin load on implementations with only HW support - msdk: dec: set framerate to the driver only if provided, not in 0/1 case -- msdk: Don't set extended coding options for JPEG encode +- msdk: Don’t set extended coding options for JPEG encode - rtponviftimestamp: fix state change function init/reset causing races/crashes on shutdown - decklink: fix initialization failure in windows binary @@ -1230,7 +1231,7 @@ dependencies in meson build - gl: fix cross-compilation error with viv-fb - qmlglsink: make work with eglfs_kms -- rtspclientsink: Don't deadlock in preroll on early close +- rtspclientsink: Don’t deadlock in preroll on early close - rtspclientsink: Fix client ports for the RTCP backchannel - rtsp-server: Fix session timeout when streaming data to client over TCP @@ -1246,7 +1247,7 @@ build - g-i: update constant values for bindings - avoid duplicate symbols in plugins across modules in static builds -- ... and many, many more! +- … and many, many more! Cerbero build tool and packaging changes in 1.14.1 @@ -1260,7 +1261,7 @@ errors - gnutls: fix assembly symbol names for windows x86 - openssl: fix linking on android/armv7 -- openssl: fix linker issue with Android NDK's r16 binutils +- openssl: fix linker issue with Android NDK’s r16 binutils - ffmpeg: disable asm for android x86 to fix issues when linking with apps - x264: disable asm for android x86 to fix issues when linking with @@ -1271,7 +1272,7 @@ relocations - Check built version while loading recipe and rebuild if needed - Fix packaging of libgcc_s_sjlj which was missing in Windows packages -- Make not-found in library search fatal so we don't accidentally ship +- Make not-found in library search fatal so we don’t accidentally ship broken packages - ship the proxy plugin which was new in 1.14 - Fix git commands accidentally pulling in locally built libraries and @@ -1300,12 +1301,95 @@ 1.14.2 -The second 1.14 bug-fix release (1.14.2) is scheduled to be released -around mid-June 2018. +The second 1.14 bug-fix release (1.14.2) was released on 20 July 2018. This release only contains bugfixes and it should be safe to update from 1.14.x. +Noteworthy bugfixes in 1.14.2 + +- asfdemux: Only send flush-stop event for flushing seeks +- glcolorbalance: Support OES textures for input/passthrough, avoids + possibly-unnecessary extra texture copy on Android in the default GL + path inside glimagesink. +- parsebin: Don’t try to continue autoplugging a parser if we got raw + caps +- audiobasesrc: Round down segsize to an integer number of samples +- scaletempo: Mark as Audio in classification +- souphttpsrc: thread-safety fixes +- v4l2bufferpool: Validate that capture buffers were queued, to detect + when buffer importation was refused by the driver. +- v4l2bufferpool: Only return eos for M2M devices not v4l2src when + buggy driver sends empty buffer +- v4l2allocator: Fix userptr importation +- v4l2src: Try to avoid TRY_FMT when camera is streaming, some drivers + don’t like it +- v4l2videoenc: Only renegotiate with upstream, fixes use in + GstRtspServer pipeline +- v4l2: many other fixes +- pitch: fix latency reporting, and various other things +- dvb: fix wrong (GPL) license headers in camconditionalaccess code +- webrtc: Fix transportsendbin to fix spurious shut-down failures in + webrtcbin if DTLS negotiation hasn’t completed yet. +- webrtc: Don’t deadlock on blocked pads on shutdown +- webrtcbin: copy sticky events on our ghostpads so users can use + gst_pad_get_current_caps() to determine what to do with newly-added + pads. +- webrtcbin: fix rtpstorage configuration on 32-bit systems +- webrtcbin: implement support for FEC and RTX +- gstplayer: Fix duration-changed CRITICAL warning if duration did not + actually change +- gstplayer: Avoid trying to join the player thread from itself +- codecparsers: mpeg2 parsing fixes for zero-sized packets +- wasapisink: fix a rounding error when calculating the buffer frame + count +- wasapisink: fix missing unlock in case IAudioClient_Start fails +- wasapi: fix potential crash with MinGW +- rtsp-server: fix race during udpsrc setup, avoiding pushing data on + unlinked udpsrc pad +- rtsp-server: fix waiting for multiple streams in rtspclientsink +- gst-editing-services: group: Fix handling clips that are added to a + layer +- gst-editing-services: python binding fixes +- gst-validate launcher: Allow retrieving coredumps from within + flatpak +- gst-validate launcher: Fix the –forever switch which was not + stopping on error +- vaapi: h264 encoder negotiation fixes +- vaapi: fix issues with native EGL display +- more GIR annotations fixes, especially for arrays +- gstreamer-sharp bindings were updated for g-i annotation fixes in + other modules +- fuzzing fixes +- memory leak fixes +- build fixes: + - build fixes for MSVC compiler + - meson: Fix detection of glib-mkenums under MSYS2 plus other + meson buil fixes + - Fix static build symbol redefinition errors (xvimage, gst-libav) + - qmlgl: build fixes for conflicting declaration of type GLsync + for non-android + - gl: build fixes for missing EGLuint64KHR typedef +- … and many more! + +Contributors to 1.14.2 + +Alessandro Decina, Antoine Jacoutot, Brendan Shanks, Carlos Rafael +Giani, Christoph Reiter, Edward Hervey, Göran Jönsson, Guillaume +Desmottes, Hyunjun Ko, Iñigo Huguet, Jan Schmidt, Johan Bjäreholt, +Louis-Francis Ratté-Boulianne, Lyon Wang, Marian Mihailescu, Mark +Nauwelaerts, Mathieu Duponchelle, Matthew Waters, Michael Tretter, +Nicolas Dufresne, Nirbheek Chauhan, Philipp Zabel, Roland Jon, Sebastian +Dröge, Seungha Yang, Sreerenj Balachandran, Suhas Nayak, Thibault +Saunier, Tim-Philipp Müller, Víctor Manuel Jáquez Leal, Vivia +Nikolaidou, wangzq, and many others. Thank you all. + +List of bugs fixed in 1.14.2 + +For a full list of bugfixes see Bugzilla. Note that this is not the full +list of changes. For the full list of changes please refer to the GIT +logs or ChangeLogs of the particular modules. + Known Issues @@ -1313,9 +1397,13 @@ GStreamer webrtc support) is currently not shipped as part of the Windows binary packages due to a build system issue. -- The gst-libav module currently won't build against the - newly-released ffmpeg 4.0 (as in F28). Use the internal ffmpeg copy - instead, if you build using autotools. +- The gst-libav module in 1.14 will only build against older ffmpeg + 3.x versions and won’t build against the newly-released ffmpeg 4.0 + (as in RPM Fusion for Fedora 28) due to API changes. Use the + internal ffmpeg copy instead if you build using autotools. This is + fixed in git master / upcoming 1.16, but won’t be backported to the + 1.14 branch as it is rather intrusive and difficult to support both + old and new APIs at the same time. Schedule for 1.16 diff -Nru gstreamer-editing-services1.0-1.14.1/RELEASE gstreamer-editing-services1.0-1.14.2/RELEASE --- gstreamer-editing-services1.0-1.14.1/RELEASE 2018-05-17 12:34:35.000000000 +0000 +++ gstreamer-editing-services1.0-1.14.2/RELEASE 2018-07-20 00:06:53.000000000 +0000 @@ -1,6 +1,6 @@ -This is GStreamer gst-editing-services 1.14.1. +This is GStreamer gst-editing-services 1.14.2. -The GStreamer team is pleased to announce a new bug-fix release in the +The GStreamer team is pleased to announce another bug-fix release in the stable 1.x API series of your favourite cross-platform multimedia framework! The 1.14 release series adds new features on top of the 1.12 series and is