qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code
@ 2019-02-05  3:08 Thomas Huth
  2019-02-05  3:08 ` [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code Thomas Huth
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Thomas Huth @ 2019-02-05  3:08 UTC (permalink / raw)
  To: Gerd Hoffmann, qemu-devel
  Cc: qemu-trivial, Daniel P. Berrangé,
	Kővágó Zoltán

Now that support for SDL 1.2 has been removed, we can clean up
the sdlaudio code a little bit, too.

Thomas Huth (2):
  audio/sdlaudio: Remove the semaphore code
  audio/sdlaudio: Simplify the sdl_callback function

 audio/sdlaudio.c | 188 +++++++------------------------------------------------
 1 file changed, 23 insertions(+), 165 deletions(-)

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code
  2019-02-05  3:08 [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code Thomas Huth
@ 2019-02-05  3:08 ` Thomas Huth
  2019-02-11 22:48   ` Philippe Mathieu-Daudé
  2019-02-05  3:08 ` [Qemu-devel] [PATCH 2/2] audio/sdlaudio: Simplify the sdl_callback function Thomas Huth
  2019-02-05  3:40 ` [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code no-reply
  2 siblings, 1 reply; 5+ messages in thread
From: Thomas Huth @ 2019-02-05  3:08 UTC (permalink / raw)
  To: Gerd Hoffmann, qemu-devel
  Cc: qemu-trivial, Daniel P. Berrangé,
	Kővágó Zoltán

The semaphore code was only working with SDL1.2 - with SDL2, it causes
a deadlock. Since we've removed support for SDL1.2 recently, we can
now completely remove the semaphore code from sdlaudio.c.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 audio/sdlaudio.c | 145 ++-----------------------------------------------------
 1 file changed, 5 insertions(+), 140 deletions(-)

diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c
index 9db5ac9..53bfdbf 100644
--- a/audio/sdlaudio.c
+++ b/audio/sdlaudio.c
@@ -38,14 +38,9 @@
 #define AUDIO_CAP "sdl"
 #include "audio_int.h"
 
-#define USE_SEMAPHORE (SDL_MAJOR_VERSION < 2)
-
 typedef struct SDLVoiceOut {
     HWVoiceOut hw;
     int live;
-#if USE_SEMAPHORE
-    int rpos;
-#endif
     int decr;
 } SDLVoiceOut;
 
@@ -57,10 +52,6 @@ static struct {
 
 static struct SDLAudioState {
     int exit;
-#if USE_SEMAPHORE
-    SDL_mutex *mutex;
-    SDL_sem *sem;
-#endif
     int initialized;
     bool driver_created;
 } glob_sdl;
@@ -77,66 +68,6 @@ static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
     AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
 }
 
-static int sdl_lock (SDLAudioState *s, const char *forfn)
-{
-#if USE_SEMAPHORE
-    if (SDL_LockMutex (s->mutex)) {
-        sdl_logerr ("SDL_LockMutex for %s failed\n", forfn);
-        return -1;
-    }
-#else
-    SDL_LockAudio();
-#endif
-
-    return 0;
-}
-
-static int sdl_unlock (SDLAudioState *s, const char *forfn)
-{
-#if USE_SEMAPHORE
-    if (SDL_UnlockMutex (s->mutex)) {
-        sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn);
-        return -1;
-    }
-#else
-    SDL_UnlockAudio();
-#endif
-
-    return 0;
-}
-
-static int sdl_post (SDLAudioState *s, const char *forfn)
-{
-#if USE_SEMAPHORE
-    if (SDL_SemPost (s->sem)) {
-        sdl_logerr ("SDL_SemPost for %s failed\n", forfn);
-        return -1;
-    }
-#endif
-
-    return 0;
-}
-
-#if USE_SEMAPHORE
-static int sdl_wait (SDLAudioState *s, const char *forfn)
-{
-    if (SDL_SemWait (s->sem)) {
-        sdl_logerr ("SDL_SemWait for %s failed\n", forfn);
-        return -1;
-    }
-    return 0;
-}
-#endif
-
-static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn)
-{
-    if (sdl_unlock (s, forfn)) {
-        return -1;
-    }
-
-    return sdl_post (s, forfn);
-}
-
 static int aud_to_sdlfmt (audfmt_e fmt)
 {
     switch (fmt) {
@@ -243,9 +174,9 @@ static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
 static void sdl_close (SDLAudioState *s)
 {
     if (s->initialized) {
-        sdl_lock (s, "sdl_close");
+        SDL_LockAudio();
         s->exit = 1;
-        sdl_unlock_and_post (s, "sdl_close");
+        SDL_UnlockAudio();
         SDL_PauseAudio (1);
         SDL_CloseAudio ();
         s->initialized = 0;
@@ -267,30 +198,10 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
         int to_mix, decr;
 
         /* dolog ("in callback samples=%d\n", samples); */
-#if USE_SEMAPHORE
-        sdl_wait (s, "sdl_callback");
-        if (s->exit) {
-            return;
-        }
-
-        if (sdl_lock (s, "sdl_callback")) {
-            return;
-        }
-
-        if (audio_bug(__func__, sdl->live < 0 || sdl->live > hw->samples)) {
-            dolog ("sdl->live=%d hw->samples=%d\n",
-                   sdl->live, hw->samples);
-            return;
-        }
 
-        if (!sdl->live) {
-            goto again;
-        }
-#else
         if (s->exit || !sdl->live) {
             break;
         }
-#endif
 
         /* dolog ("in callback live=%d\n", live); */
         to_mix = audio_MIN (samples, sdl->live);
@@ -301,33 +212,20 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
 
             /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
             hw->clip (buf, src, chunk);
-#if USE_SEMAPHORE
-            sdl->rpos = (sdl->rpos + chunk) % hw->samples;
-#else
             hw->rpos = (hw->rpos + chunk) % hw->samples;
-#endif
             to_mix -= chunk;
             buf += chunk << hw->info.shift;
         }
         samples -= decr;
         sdl->live -= decr;
         sdl->decr += decr;
-
-#if USE_SEMAPHORE
-    again:
-        if (sdl_unlock (s, "sdl_callback")) {
-            return;
-        }
-#endif
     }
     /* dolog ("done len=%d\n", len); */
 
-#if (SDL_MAJOR_VERSION >= 2)
     /* SDL2 does not clear the remaining buffer for us, so do it on our own */
     if (samples) {
         memset(buf, 0, samples << hw->info.shift);
     }
-#endif
 }
 
 static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
@@ -339,11 +237,8 @@ static int sdl_run_out (HWVoiceOut *hw, int live)
 {
     int decr;
     SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
-    SDLAudioState *s = &glob_sdl;
 
-    if (sdl_lock (s, "sdl_run_out")) {
-        return 0;
-    }
+    SDL_LockAudio();
 
     if (sdl->decr > live) {
         ldebug ("sdl->decr %d live %d sdl->live %d\n",
@@ -355,19 +250,10 @@ static int sdl_run_out (HWVoiceOut *hw, int live)
     decr = audio_MIN (sdl->decr, live);
     sdl->decr -= decr;
 
-#if USE_SEMAPHORE
-    sdl->live = live - decr;
-    hw->rpos = sdl->rpos;
-#else
     sdl->live = live;
-#endif
 
-    if (sdl->live > 0) {
-        sdl_unlock_and_post (s, "sdl_run_out");
-    }
-    else {
-        sdl_unlock (s, "sdl_run_out");
-    }
+    SDL_UnlockAudio();
+
     return decr;
 }
 
@@ -449,23 +335,6 @@ static void *sdl_audio_init (void)
         return NULL;
     }
 
-#if USE_SEMAPHORE
-    s->mutex = SDL_CreateMutex ();
-    if (!s->mutex) {
-        sdl_logerr ("Failed to create SDL mutex\n");
-        SDL_QuitSubSystem (SDL_INIT_AUDIO);
-        return NULL;
-    }
-
-    s->sem = SDL_CreateSemaphore (0);
-    if (!s->sem) {
-        sdl_logerr ("Failed to create SDL semaphore\n");
-        SDL_DestroyMutex (s->mutex);
-        SDL_QuitSubSystem (SDL_INIT_AUDIO);
-        return NULL;
-    }
-#endif
-
     s->driver_created = true;
     return s;
 }
@@ -474,10 +343,6 @@ static void sdl_audio_fini (void *opaque)
 {
     SDLAudioState *s = opaque;
     sdl_close (s);
-#if USE_SEMAPHORE
-    SDL_DestroySemaphore (s->sem);
-    SDL_DestroyMutex (s->mutex);
-#endif
     SDL_QuitSubSystem (SDL_INIT_AUDIO);
     s->driver_created = false;
 }
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PATCH 2/2] audio/sdlaudio: Simplify the sdl_callback function
  2019-02-05  3:08 [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code Thomas Huth
  2019-02-05  3:08 ` [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code Thomas Huth
@ 2019-02-05  3:08 ` Thomas Huth
  2019-02-05  3:40 ` [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code no-reply
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Huth @ 2019-02-05  3:08 UTC (permalink / raw)
  To: Gerd Hoffmann, qemu-devel
  Cc: qemu-trivial, Daniel P. Berrangé,
	Kővágó Zoltán

At the end of the while-loop, either "samples" or "sdl->live" is zero, so
now that we've removed the semaphore code, the content of the while-loop
is always only executed once. Thus we can remove the while-loop now to
get rid of one indentation level here.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 audio/sdlaudio.c | 45 +++++++++++++++++++--------------------------
 1 file changed, 19 insertions(+), 26 deletions(-)

diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c
index 53bfdbf..f7ee70b 100644
--- a/audio/sdlaudio.c
+++ b/audio/sdlaudio.c
@@ -189,37 +189,30 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
     SDLAudioState *s = &glob_sdl;
     HWVoiceOut *hw = &sdl->hw;
     int samples = len >> hw->info.shift;
+    int to_mix, decr;
 
-    if (s->exit) {
+    if (s->exit || !sdl->live) {
         return;
     }
 
-    while (samples) {
-        int to_mix, decr;
-
-        /* dolog ("in callback samples=%d\n", samples); */
-
-        if (s->exit || !sdl->live) {
-            break;
-        }
-
-        /* dolog ("in callback live=%d\n", live); */
-        to_mix = audio_MIN (samples, sdl->live);
-        decr = to_mix;
-        while (to_mix) {
-            int chunk = audio_MIN (to_mix, hw->samples - hw->rpos);
-            struct st_sample *src = hw->mix_buf + hw->rpos;
-
-            /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
-            hw->clip (buf, src, chunk);
-            hw->rpos = (hw->rpos + chunk) % hw->samples;
-            to_mix -= chunk;
-            buf += chunk << hw->info.shift;
-        }
-        samples -= decr;
-        sdl->live -= decr;
-        sdl->decr += decr;
+    /* dolog ("in callback samples=%d live=%d\n", samples, sdl->live); */
+
+    to_mix = audio_MIN(samples, sdl->live);
+    decr = to_mix;
+    while (to_mix) {
+        int chunk = audio_MIN(to_mix, hw->samples - hw->rpos);
+        struct st_sample *src = hw->mix_buf + hw->rpos;
+
+        /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
+        hw->clip(buf, src, chunk);
+        hw->rpos = (hw->rpos + chunk) % hw->samples;
+        to_mix -= chunk;
+        buf += chunk << hw->info.shift;
     }
+    samples -= decr;
+    sdl->live -= decr;
+    sdl->decr += decr;
+
     /* dolog ("done len=%d\n", len); */
 
     /* SDL2 does not clear the remaining buffer for us, so do it on our own */
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code
  2019-02-05  3:08 [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code Thomas Huth
  2019-02-05  3:08 ` [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code Thomas Huth
  2019-02-05  3:08 ` [Qemu-devel] [PATCH 2/2] audio/sdlaudio: Simplify the sdl_callback function Thomas Huth
@ 2019-02-05  3:40 ` no-reply
  2 siblings, 0 replies; 5+ messages in thread
From: no-reply @ 2019-02-05  3:40 UTC (permalink / raw)
  To: thuth; +Cc: fam, kraxel, qemu-devel, qemu-trivial, dirty.ice.hu

Patchew URL: https://patchew.org/QEMU/1549336101-17623-1-git-send-email-thuth@redhat.com/



Hi,

This series failed the docker-mingw@fedora build test. Please find the testing commands and
their output below. If you have Docker installed, you can probably reproduce it
locally.

=== TEST SCRIPT BEGIN ===
#!/bin/bash
time make docker-test-mingw@fedora SHOW_ENV=1 J=14
=== TEST SCRIPT END ===




The full log is available at
http://patchew.org/logs/1549336101-17623-1-git-send-email-thuth@redhat.com/testing.docker-mingw@fedora/?type=message.
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@redhat.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code
  2019-02-05  3:08 ` [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code Thomas Huth
@ 2019-02-11 22:48   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-02-11 22:48 UTC (permalink / raw)
  To: Thomas Huth, Gerd Hoffmann, qemu-devel
  Cc: qemu-trivial, Kővágó Zoltán

On 2/5/19 4:08 AM, Thomas Huth wrote:
> The semaphore code was only working with SDL1.2 - with SDL2, it causes
> a deadlock. Since we've removed support for SDL1.2 recently, we can
> now completely remove the semaphore code from sdlaudio.c.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>  audio/sdlaudio.c | 145 ++-----------------------------------------------------
>  1 file changed, 5 insertions(+), 140 deletions(-)
> 
> diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c
> index 9db5ac9..53bfdbf 100644
> --- a/audio/sdlaudio.c
> +++ b/audio/sdlaudio.c
> @@ -38,14 +38,9 @@
>  #define AUDIO_CAP "sdl"
>  #include "audio_int.h"
>  
> -#define USE_SEMAPHORE (SDL_MAJOR_VERSION < 2)
> -
>  typedef struct SDLVoiceOut {
>      HWVoiceOut hw;
>      int live;
> -#if USE_SEMAPHORE
> -    int rpos;
> -#endif
>      int decr;
>  } SDLVoiceOut;
>  
> @@ -57,10 +52,6 @@ static struct {
>  
>  static struct SDLAudioState {
>      int exit;
> -#if USE_SEMAPHORE
> -    SDL_mutex *mutex;
> -    SDL_sem *sem;
> -#endif
>      int initialized;
>      bool driver_created;
>  } glob_sdl;
> @@ -77,66 +68,6 @@ static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
>      AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
>  }
>  
> -static int sdl_lock (SDLAudioState *s, const char *forfn)
> -{
> -#if USE_SEMAPHORE
> -    if (SDL_LockMutex (s->mutex)) {
> -        sdl_logerr ("SDL_LockMutex for %s failed\n", forfn);
> -        return -1;
> -    }
> -#else
> -    SDL_LockAudio();
> -#endif
> -
> -    return 0;
> -}
> -
> -static int sdl_unlock (SDLAudioState *s, const char *forfn)
> -{
> -#if USE_SEMAPHORE
> -    if (SDL_UnlockMutex (s->mutex)) {
> -        sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn);
> -        return -1;
> -    }
> -#else
> -    SDL_UnlockAudio();
> -#endif
> -
> -    return 0;
> -}
> -
> -static int sdl_post (SDLAudioState *s, const char *forfn)
> -{
> -#if USE_SEMAPHORE
> -    if (SDL_SemPost (s->sem)) {
> -        sdl_logerr ("SDL_SemPost for %s failed\n", forfn);
> -        return -1;
> -    }
> -#endif
> -
> -    return 0;
> -}
> -
> -#if USE_SEMAPHORE
> -static int sdl_wait (SDLAudioState *s, const char *forfn)
> -{
> -    if (SDL_SemWait (s->sem)) {
> -        sdl_logerr ("SDL_SemWait for %s failed\n", forfn);
> -        return -1;
> -    }
> -    return 0;
> -}
> -#endif
> -
> -static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn)
> -{
> -    if (sdl_unlock (s, forfn)) {
> -        return -1;
> -    }
> -
> -    return sdl_post (s, forfn);
> -}
> -
>  static int aud_to_sdlfmt (audfmt_e fmt)
>  {
>      switch (fmt) {
> @@ -243,9 +174,9 @@ static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
>  static void sdl_close (SDLAudioState *s)
>  {
>      if (s->initialized) {
> -        sdl_lock (s, "sdl_close");
> +        SDL_LockAudio();
>          s->exit = 1;
> -        sdl_unlock_and_post (s, "sdl_close");
> +        SDL_UnlockAudio();
>          SDL_PauseAudio (1);
>          SDL_CloseAudio ();
>          s->initialized = 0;
> @@ -267,30 +198,10 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
>          int to_mix, decr;
>  
>          /* dolog ("in callback samples=%d\n", samples); */
> -#if USE_SEMAPHORE
> -        sdl_wait (s, "sdl_callback");
> -        if (s->exit) {
> -            return;
> -        }
> -
> -        if (sdl_lock (s, "sdl_callback")) {
> -            return;
> -        }
> -
> -        if (audio_bug(__func__, sdl->live < 0 || sdl->live > hw->samples)) {
> -            dolog ("sdl->live=%d hw->samples=%d\n",
> -                   sdl->live, hw->samples);
> -            return;
> -        }
>  
> -        if (!sdl->live) {
> -            goto again;
> -        }
> -#else
>          if (s->exit || !sdl->live) {
>              break;
>          }
> -#endif
>  
>          /* dolog ("in callback live=%d\n", live); */
>          to_mix = audio_MIN (samples, sdl->live);
> @@ -301,33 +212,20 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
>  
>              /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
>              hw->clip (buf, src, chunk);
> -#if USE_SEMAPHORE
> -            sdl->rpos = (sdl->rpos + chunk) % hw->samples;
> -#else
>              hw->rpos = (hw->rpos + chunk) % hw->samples;
> -#endif
>              to_mix -= chunk;
>              buf += chunk << hw->info.shift;
>          }
>          samples -= decr;
>          sdl->live -= decr;
>          sdl->decr += decr;
> -
> -#if USE_SEMAPHORE
> -    again:
> -        if (sdl_unlock (s, "sdl_callback")) {
> -            return;
> -        }
> -#endif
>      }
>      /* dolog ("done len=%d\n", len); */
>  
> -#if (SDL_MAJOR_VERSION >= 2)
>      /* SDL2 does not clear the remaining buffer for us, so do it on our own */
>      if (samples) {
>          memset(buf, 0, samples << hw->info.shift);
>      }
> -#endif
>  }
>  
>  static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
> @@ -339,11 +237,8 @@ static int sdl_run_out (HWVoiceOut *hw, int live)
>  {
>      int decr;
>      SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
> -    SDLAudioState *s = &glob_sdl;
>  
> -    if (sdl_lock (s, "sdl_run_out")) {
> -        return 0;
> -    }
> +    SDL_LockAudio();
>  
>      if (sdl->decr > live) {
>          ldebug ("sdl->decr %d live %d sdl->live %d\n",
> @@ -355,19 +250,10 @@ static int sdl_run_out (HWVoiceOut *hw, int live)
>      decr = audio_MIN (sdl->decr, live);
>      sdl->decr -= decr;
>  
> -#if USE_SEMAPHORE
> -    sdl->live = live - decr;
> -    hw->rpos = sdl->rpos;
> -#else
>      sdl->live = live;
> -#endif
>  
> -    if (sdl->live > 0) {
> -        sdl_unlock_and_post (s, "sdl_run_out");
> -    }
> -    else {
> -        sdl_unlock (s, "sdl_run_out");
> -    }
> +    SDL_UnlockAudio();
> +
>      return decr;
>  }
>  
> @@ -449,23 +335,6 @@ static void *sdl_audio_init (void)
>          return NULL;
>      }
>  
> -#if USE_SEMAPHORE
> -    s->mutex = SDL_CreateMutex ();
> -    if (!s->mutex) {
> -        sdl_logerr ("Failed to create SDL mutex\n");
> -        SDL_QuitSubSystem (SDL_INIT_AUDIO);
> -        return NULL;
> -    }
> -
> -    s->sem = SDL_CreateSemaphore (0);
> -    if (!s->sem) {
> -        sdl_logerr ("Failed to create SDL semaphore\n");
> -        SDL_DestroyMutex (s->mutex);
> -        SDL_QuitSubSystem (SDL_INIT_AUDIO);
> -        return NULL;
> -    }
> -#endif
> -
>      s->driver_created = true;
>      return s;
>  }
> @@ -474,10 +343,6 @@ static void sdl_audio_fini (void *opaque)
>  {
>      SDLAudioState *s = opaque;
>      sdl_close (s);
> -#if USE_SEMAPHORE
> -    SDL_DestroySemaphore (s->sem);
> -    SDL_DestroyMutex (s->mutex);
> -#endif
>      SDL_QuitSubSystem (SDL_INIT_AUDIO);
>      s->driver_created = false;
>  }
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-02-11 22:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-05  3:08 [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code Thomas Huth
2019-02-05  3:08 ` [Qemu-devel] [PATCH 1/2] audio/sdlaudio: Remove the semaphore code Thomas Huth
2019-02-11 22:48   ` Philippe Mathieu-Daudé
2019-02-05  3:08 ` [Qemu-devel] [PATCH 2/2] audio/sdlaudio: Simplify the sdl_callback function Thomas Huth
2019-02-05  3:40 ` [Qemu-devel] [PATCH 0/2] Clean up the SDL audio code no-reply

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).