[SCM] gsequencer/master: remove previously applied patch

jkraehemann-guest at users.alioth.debian.org jkraehemann-guest at users.alioth.debian.org
Thu Feb 2 12:18:33 UTC 2017


The following commit has been merged in the master branch:
commit c0b8e5f6e1dbb507ec0d5bbda5e46f83fb8f351e
Author: Joël Krähemann <jkraehemann-guest at users.alioth.debian.org>
Date:   Thu Feb 2 13:15:34 2017 +0100

    remove previously applied patch

diff --git a/debian/patches/wish-line-callbacks-c.patch b/debian/patches/wish-line-callbacks-c.patch
index d3c7f15..63d3ae7 100644
--- a/debian/patches/wish-line-callbacks-c.patch
+++ b/debian/patches/wish-line-callbacks-c.patch
@@ -238,70 +238,3 @@ Last-Update: 2017-02-02
      }
      
      list = list->next;
-@@ -423,27 +491,63 @@
-   AgsChannel *channel;
-   AgsPlayback *playback;
-   AgsChannel *next_pad;
-+  AgsRecallID *match_recall_id;
-+
-+  AgsMutexManager *mutex_manager;
- 
-   gboolean all_done;
- 
-+  pthread_mutex_t *application_mutex;
-+  pthread_mutex_t *channel_mutex;
-+
-+  mutex_manager = ags_mutex_manager_get_instance();
-+  application_mutex = ags_mutex_manager_get_application_mutex(mutex_manager);
-+
-   gdk_threads_enter();
-   
-+  /* retrieve channel */
-   channel = AGS_PAD(AGS_LINE(line)->pad)->channel;
-+
-+  /* retrieve channel mutex */
-+  pthread_mutex_lock(application_mutex);
-+
-+  channel_mutex = ags_mutex_manager_lookup(mutex_manager,
-+					   (GObject *) channel);
-+
-+  pthread_mutex_unlock(application_mutex);
-+
-+  /* get next pad */
-+  pthread_mutex_lock(channel_mutex);
-+
-   next_pad = channel->next_pad;
- 
-+  pthread_mutex_unlock(channel_mutex);
-+
-   all_done = TRUE;
- 
-   while(channel != next_pad){
-+    pthread_mutex_lock(channel_mutex);
-+
-     playback = AGS_PLAYBACK(channel->playback);
--    
--    if(playback->recall_id[0] != NULL){
-+    match_recall_id = playback->recall_id[0];
-+		
-+    pthread_mutex_unlock(channel_mutex);
-+
-+    /* check if pending */
-+    if(match_recall_id != NULL){
-       all_done = FALSE;
-       break;
-     }
--    
-+
-+    /* iterate */
-+    pthread_mutex_lock(channel_mutex);
-+
-     channel = channel->next;
-+
-+    pthread_mutex_unlock(channel_mutex);
-   }
- 
-+  /* toggle play button if all playback done */
-   if(all_done){
-     AgsPad *pad;
- 

-- 
gsequencer packaging



More information about the pkg-multimedia-commits mailing list