[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.12-3-g2ab4bb7

Lennart Poettering gitmailer-noreply at 0pointer.de
Wed Sep 10 14:37:49 PDT 2008


This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.

The master branch has been updated
      from  f6670a1f2e0407e22226713bdf6fc6db68383b68 (commit)

- Log -----------------------------------------------------------------
2ab4bb7... fix pa_stream_set_name
-----------------------------------------------------------------------

Summary of changes:
 src/pulse/stream.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-----------------------------------------------------------------------

commit 2ab4bb76b217e481cf28cff0138726d9a7672895
Author: Omair Majid <omajid at redhat.com>
Date:   Wed Sep 10 17:07:50 2008 -0400

    fix pa_stream_set_name
    
    This patch fixes a bug in pa_stream_set_name. It uses the media.name
    property instead of the application.name property when setting a
    stream's name
    
    >From aa1bda11d2084365cb0cec57f37d59f07ab80052 Mon Sep 17 00:00:00 2001
    From: Omair Majid <omajid at redhat.com>
    Date: Wed, 10 Sep 2008 17:02:28 -0400
    Subject: [PATCH] Fix bug in pa_stream_set_name
    
    Signed-off-by: Lennart Poettering <lennart at poettering.net>

diff --git a/src/pulse/stream.c b/src/pulse/stream.c
index 6890b7a..ababe17 100644
--- a/src/pulse/stream.c
+++ b/src/pulse/stream.c
@@ -1851,7 +1851,7 @@ pa_operation* pa_stream_set_name(pa_stream *s, const char *name, pa_stream_succe
     if (s->context->version >= 13) {
         pa_proplist *p = pa_proplist_new();
 
-        pa_proplist_sets(p, PA_PROP_APPLICATION_NAME, name);
+        pa_proplist_sets(p, PA_PROP_MEDIA_NAME, name);
         o = pa_stream_proplist_update(s, PA_UPDATE_REPLACE, p, cb, userdata);
         pa_proplist_free(p);
     } else {

-- 
hooks/post-receive
PulseAudio Sound Server



More information about the pulseaudio-commits mailing list