forked from pool/pulseaudio
27 lines
1009 B
Diff
27 lines
1009 B
Diff
|
From 180589511dab1b5d0388b58b41a0e9843ea1a35a Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Sun, 21 Feb 2010 16:23:25 +0100
|
||
|
Subject: [PATCH] sample-cache: use the sample name as unmodified fallback in the properties when playing a sample from the cache
|
||
|
|
||
|
---
|
||
|
src/pulsecore/core-scache.c | 3 ++-
|
||
|
1 files changed, 2 insertions(+), 1 deletions(-)
|
||
|
|
||
|
diff --git a/src/pulsecore/core-scache.c b/src/pulsecore/core-scache.c
|
||
|
index 1fb81d0..95aaa10 100644
|
||
|
--- a/src/pulsecore/core-scache.c
|
||
|
+++ b/src/pulsecore/core-scache.c
|
||
|
@@ -310,7 +310,8 @@ int pa_scache_play_item(pa_core *c, const char *name, pa_sink *sink, pa_volume_t
|
||
|
return -1;
|
||
|
|
||
|
merged = pa_proplist_new();
|
||
|
- pa_proplist_setf(merged, PA_PROP_MEDIA_NAME, "Sample %s", name);
|
||
|
+ pa_proplist_sets(merged, PA_PROP_MEDIA_NAME, name);
|
||
|
+ pa_proplist_sets(merged, PA_PROP_EVENT_ID, name);
|
||
|
|
||
|
if (e->lazy && !e->memchunk.memblock) {
|
||
|
pa_channel_map old_channel_map = e->channel_map;
|
||
|
--
|
||
|
1.6.0.2
|
||
|
|