aboutsummaryrefslogtreecommitdiff
path: root/src/output_thread.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-09-25 23:28:53 +0200
committerMax Kellermann <max@duempel.org>2012-09-25 23:31:07 +0200
commit9cdbde4f5e421b7a1ca28d5268d5c31de9d6ad5d (patch)
tree2daa30a0e8301dae5bb15d6fac068b2099058b2f /src/output_thread.c
parentf9147a0706872841acd1b0c97224ab9e06dcecc7 (diff)
output: new option "tags" may be used to disable sending tags
Implements Mantis ticket 0003340.
Diffstat (limited to 'src/output_thread.c')
-rw-r--r--src/output_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_thread.c b/src/output_thread.c
index ee9c8a6e..cd1a8a87 100644
--- a/src/output_thread.c
+++ b/src/output_thread.c
@@ -435,7 +435,7 @@ ao_play_chunk(struct audio_output *ao, const struct music_chunk *chunk)
assert(ao != NULL);
assert(ao->filter != NULL);
- if (gcc_unlikely(chunk->tag != NULL)) {
+ if (ao->tags && gcc_unlikely(chunk->tag != NULL)) {
g_mutex_unlock(ao->mutex);
ao_plugin_send_tag(ao, chunk->tag);
g_mutex_lock(ao->mutex);