diff options
| author | Matthias Drochner <drochner@netbsd.org> | 2010-07-20 18:18:32 +0100 |
|---|---|---|
| committer | Matthias Drochner <drochner@netbsd.org> | 2010-07-20 18:18:32 +0100 |
| commit | 58c991b313911b85d323ec78a4d6de9a5e022a68 (patch) | |
| tree | 9ed8edbf5b1d45669b1679aa5a5441cee9a4f570 | |
| parent | dec217438b63373fefd6f50c85664f57148efe50 (diff) | |
| download | xine-lib-58c991b313911b85d323ec78a4d6de9a5e022a68.tar.gz xine-lib-58c991b313911b85d323ec78a4d6de9a5e022a68.tar.bz2 | |
Missing mutex init
| -rw-r--r-- | src/post/audio/upmix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/post/audio/upmix.c b/src/post/audio/upmix.c index 9cf68b365..76cf8f1b2 100644 --- a/src/post/audio/upmix.c +++ b/src/post/audio/upmix.c @@ -396,6 +396,8 @@ static post_plugin_t *upmix_open_plugin(post_class_t *class_gen, int inputs, _x_post_init(&this->post, 1, 0); + pthread_mutex_init(&this->lock, 0); + this->params.cut_off_freq = 100; port = _x_post_intercept_audio_port(&this->post, audio_target[0], &input, &output); |
