diff options
author | Arne Morten Kvarving <cptspiff@gmail.com> | 2014-11-07 11:10:48 +0100 |
---|---|---|
committer | fritsch <Peter.Fruehberger@gmail.com> | 2014-11-13 18:26:25 +0100 |
commit | 0450fc1dab5794d3ae7056c3b3b0c7c2558cafc4 (patch) | |
tree | 0f512932035dc843e2ce5b3aef3e762fd7dccba6 | |
parent | dba9e9d750b660a3aa0b19ef6f5b1dd19ee2bcf6 (diff) |
AESinkPULSE: Rebrand pulseaudio sink name to reflect kodi
-rw-r--r-- | xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp b/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp index 3dd1bcf22d..9ccfb83c5b 100644 --- a/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp +++ b/xbmc/cores/AudioEngine/Sinks/AESinkPULSE.cpp @@ -573,7 +573,7 @@ bool CAESinkPULSE::Initialize(AEAudioFormat &format, std::string &device) m_BytesPerSecond = pa_bytes_per_second(&spec); unsigned int frameSize = pa_frame_size(&spec); - m_Stream = pa_stream_new_extended(m_Context, "xbmc audio stream", info, 1, NULL); + m_Stream = pa_stream_new_extended(m_Context, "kodi audio stream", info, 1, NULL); pa_format_info_free(info[0]); if (m_Stream == NULL) @@ -935,7 +935,7 @@ bool CAESinkPULSE::SetupContext(const char *host, pa_context **context, pa_threa return false; } - if (((*context) = pa_context_new(pa_threaded_mainloop_get_api(*mainloop), "XBMC")) == NULL) + if (((*context) = pa_context_new(pa_threaded_mainloop_get_api(*mainloop), "Kodi")) == NULL) { CLog::Log(LOGERROR, "PulseAudio: Failed to allocate context"); return false; |