[SCM] gsequencer/master: New upstream version 0.7.69

jkraehemann-guest at users.alioth.debian.org jkraehemann-guest at users.alioth.debian.org
Tue Sep 20 00:04:09 UTC 2016


The following commit has been merged in the master branch:
commit a546bdd5c7dc4ff52db8f37f274a01149e96ccb5
Author: Joël Krähemann <jkraehemann-guest at users.alioth.debian.org>
Date:   Tue Sep 20 01:37:30 2016 +0200

    New upstream version 0.7.69

diff --git a/ChangeLog b/ChangeLog
index 662c7ea..cafe6f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+ags (0.7.69)
+
+	[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
+	* fixed stop all soundcard threads because only one was stopped
+
 ags (0.7.68)
 
 	[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
diff --git a/ags/audio/thread/ags_audio_loop.c b/ags/audio/thread/ags_audio_loop.c
index 4756f7e..d587a29 100644
--- a/ags/audio/thread/ags_audio_loop.c
+++ b/ags/audio/thread/ags_audio_loop.c
@@ -729,17 +729,21 @@ ags_audio_loop_run(AgsThread *thread)
     AgsThread *soundcard_thread;
     AgsThread *export_thread;
 
-    soundcard_thread = ags_thread_find_type(thread,
-					    AGS_TYPE_SOUNDCARD_THREAD);
+    soundcard_thread = thread;
 
-    export_thread = ags_thread_find_type(thread,
-					 AGS_TYPE_EXPORT_THREAD);
+    while((soundcard_thread = ags_thread_find_type(soundcard_thread,
+						   AGS_TYPE_SOUNDCARD_THREAD)) != NULL){
+      if((AGS_THREAD_RUNNING & (g_atomic_int_get(&(soundcard_thread->flags)))) != 0){
+	ags_thread_stop(soundcard_thread);
+      }
 
-    if(soundcard_thread != NULL &&
-       (AGS_THREAD_RUNNING & (g_atomic_int_get(&(soundcard_thread->flags)))) != 0){
-      ags_thread_stop(soundcard_thread);
+      soundcard_thread = g_atomic_pointer_get(&(soundcard_thread->next));
     }
 
+    /* export thread */
+    export_thread = ags_thread_find_type(thread,
+					 AGS_TYPE_EXPORT_THREAD);
+
     if(export_thread != NULL &&
        (AGS_THREAD_RUNNING & (g_atomic_int_get(&(export_thread->flags)))) != 0){
       ags_thread_stop(export_thread);
diff --git a/configure b/configure
index f17d50c..e825685 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gsequencer 0.7.68.
+# Generated by GNU Autoconf 2.69 for gsequencer 0.7.69.
 #
 # Report bugs to <jkraehemann-guest at users.alioth.debian.org>.
 #
@@ -590,8 +590,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='gsequencer'
 PACKAGE_TARNAME='gsequencer'
-PACKAGE_VERSION='0.7.68'
-PACKAGE_STRING='gsequencer 0.7.68'
+PACKAGE_VERSION='0.7.69'
+PACKAGE_STRING='gsequencer 0.7.69'
 PACKAGE_BUGREPORT='jkraehemann-guest at users.alioth.debian.org'
 PACKAGE_URL=''
 
@@ -1436,7 +1436,7 @@ if test "$ac_init_help" = "long"; then
   # 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 gsequencer 0.7.68 to adapt to many kinds of systems.
+\`configure' configures gsequencer 0.7.69 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1511,7 +1511,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of gsequencer 0.7.68:";;
+     short | recursive ) echo "Configuration of gsequencer 0.7.69:";;
    esac
   cat <<\_ACEOF
 
@@ -1698,7 +1698,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gsequencer configure 0.7.68
+gsequencer configure 0.7.69
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2175,7 +2175,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gsequencer $as_me 0.7.68, which was
+It was created by gsequencer $as_me 0.7.69, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3041,7 +3041,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='gsequencer'
- VERSION='0.7.68'
+ VERSION='0.7.69'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -16408,7 +16408,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by gsequencer $as_me 0.7.68, which was
+This file was extended by gsequencer $as_me 0.7.69, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -16474,7 +16474,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-gsequencer config.status 0.7.68
+gsequencer config.status 0.7.69
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff --git a/configure.ac b/configure.ac
index f753804..0ca7aac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.69])
-AC_INIT([gsequencer],[0.7.68],[jkraehemann-guest at users.alioth.debian.org])
+AC_INIT([gsequencer],[0.7.69],[jkraehemann-guest at users.alioth.debian.org])
 AM_INIT_AUTOMAKE([subdir-objects])
 AC_CONFIG_SRCDIR([config.h.in])
 AC_CONFIG_HEADERS([ags/config.h])

-- 
gsequencer packaging



More information about the pkg-multimedia-commits mailing list