Bug 895531 - Add support for webrtc pulseaudio backend on gonk, r=rjesup

This commit is contained in:
Michael Wu 2013-08-28 15:43:47 -04:00
parent da444cf5eb
commit 222ae37fd1
2 changed files with 4 additions and 4 deletions

View File

@ -42,9 +42,6 @@
#if defined(LINUX_ALSA)
#include "audio_device_alsa_linux.h"
#endif
#if defined(LINUX_PULSE)
#include "audio_device_pulse_linux.h"
#endif
#elif defined(WEBRTC_IOS)
#include "audio_device_utility_ios.h"
#include "audio_device_ios.h"
@ -52,6 +49,9 @@
#include "audio_device_utility_mac.h"
#include "audio_device_mac.h"
#endif
#if defined(LINUX_PULSE)
#include "audio_device_pulse_linux.h"
#endif
#include "audio_device_dummy.h"
#include "audio_device_utility_dummy.h"
#include "critical_section_wrapper.h"

View File

@ -29,7 +29,7 @@
namespace webrtc_adm_linux_pulse {
#ifdef __OpenBSD__
#if defined(__OpenBSD__) || defined(WEBRTC_GONK)
LATE_BINDING_SYMBOL_TABLE_DEFINE_BEGIN(PulseAudioSymbolTable, "libpulse.so")
#else
LATE_BINDING_SYMBOL_TABLE_DEFINE_BEGIN(PulseAudioSymbolTable, "libpulse.so.0")