pkgsrc/audio/vorbis-tools/patches/patch-aa
adam 6dbe8d3eaa Changes 1.4.0:
* Implement corrected channel mappings for all input and playback file types
* Correct an possible infinite loop in WAV input reading code when header is
  corrupt
* Implement disable_coupling option for oggenc
* Fix Ctrl-C lockup bug in ogg123
* ogg123 playback in sorted order
* Add WAVEFORMATEXTENSIBLE support
* More translations
* Add '-' as stdin/out filename in vcut
* Add -lnetwork check for socket in configure
* Remove 'extra' F parameter from ogg123 remote output
2010-11-09 13:13:03 +00:00

14 lines
459 B
Text

$NetBSD: patch-aa,v 1.11 2010/11/09 13:13:03 adam Exp $
--- ogg123/buffer.c.orig 2010-03-24 08:10:47.000000000 +0000
+++ ogg123/buffer.c
@@ -429,7 +429,9 @@ void buffer_reset (buf_t *buf)
/* Cleanup pthread variables */
pthread_mutex_destroy(&buf->mutex);
+ COND_SIGNAL(buf->write_cond);
pthread_cond_destroy(&buf->write_cond);
+ COND_SIGNAL(buf->playback_cond);
pthread_cond_destroy(&buf->playback_cond);
/* Reinit pthread variables */