]> code.delx.au - pulseaudio/commitdiff
Merge commit 'jprvita2/master'
authorLennart Poettering <lennart@poettering.net>
Mon, 24 Aug 2009 21:31:35 +0000 (23:31 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 24 Aug 2009 21:31:35 +0000 (23:31 +0200)
src/Makefile.am
src/modules/module-detect.c
src/pulsecore/remap_mmx.c

index 2fd9a734a4bafb6f8d41295b6858d0f41f32da24..561891edcf61b6c8abc68f909f90f9df6be687c0 100644 (file)
@@ -836,8 +836,9 @@ libpulsecore_@PA_MAJORMINORMICRO@_la_SOURCES = \
                pulsecore/resampler.c pulsecore/resampler.h \
                pulsecore/rtpoll.c pulsecore/rtpoll.h \
                pulsecore/sample-util.c pulsecore/sample-util.h \
-               pulsecore/cpu-arm.c pulsecore/cpu-x86.c \
-               pulsecore/svolume_c.c pulsecore/svolume_arm.c\
+               pulsecore/cpu-arm.c pulsecore/cpu-arm.h \
+               pulsecore/cpu-x86.c pulsecore/cpu-x86.h \
+               pulsecore/svolume_c.c pulsecore/svolume_arm.c \
                pulsecore/svolume_mmx.c pulsecore/svolume_sse.c \
                pulsecore/sconv-s16be.c pulsecore/sconv-s16be.h \
                pulsecore/sconv-s16le.c pulsecore/sconv-s16le.h \
index 956fe4c52a00a736b14248c17321348631df8675..b1f24e1582ed85e00a2b6a3fe4395f4944adc43d 100644 (file)
@@ -50,7 +50,7 @@ PA_MODULE_DESCRIPTION("Detect available audio hardware and load matching drivers
 PA_MODULE_VERSION(PACKAGE_VERSION);
 PA_MODULE_LOAD_ONCE(TRUE);
 PA_MODULE_USAGE("just-one=<boolean>");
-PA_MODULE_DEPRECATED("Please use module-hal-detect instead of module-detect!");
+PA_MODULE_DEPRECATED("Please use module-udev-detect instead of module-detect!");
 
 static const char* const valid_modargs[] = {
     "just-one",
index bfcae6c53fc0c2b72493d2ce94821114c5215f1e..00252dac5bc63365ba7cea8f93d771620b05e195 100644 (file)
@@ -95,6 +95,7 @@
                 "4:                             \n\t"   \
                 " emms                          \n\t"
 
+#if defined (__i386__) || defined (__amd64__)
 static void remap_mono_to_stereo_mmx (pa_remap_t *m, void *dst, const void *src, unsigned n) {
     pa_reg_x86 temp;
 
@@ -138,6 +139,7 @@ static void init_remap_mmx (pa_remap_t *m) {
         pa_log_info("Using MMX mono to stereo remapping");
     }
 }
+#endif /* defined (__i386__) || defined (__amd64__) */
 
 void pa_remap_func_init_mmx (pa_cpu_x86_flag_t flags) {
 #if defined (__i386__) || defined (__amd64__)