From 79d76e39ad12c0189796ec29e43241d0d5acf868 Mon Sep 17 00:00:00 2001 From: Kaj-Michael Lang Date: Fri, 7 Mar 2008 13:11:46 +0200 Subject: [PATCH] Use dsp sink only if defined (WITH_DEVICE_770) && defined(__arm__) --- src/audio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio.h b/src/audio.h index a8f7f44..1ae25b5 100644 --- a/src/audio.h +++ b/src/audio.h @@ -1,7 +1,7 @@ #ifndef _AUDIO_H #define _AUDIO_H -#ifdef WITH_DEVICE_770 +#if defined (WITH_DEVICE_770) && defined(__arm__) #define AUDIO_SRC "dsppcmsrc" #define AUDIO_SINK "dsppcmsink" #else -- 2.39.5