poljar (Damir Jelić)
d806b19714
Remove pa_bool_t and replace it with bool.
...
commands used for this (executed from the pulseaudio/src directory):
find . -regex '\(.*\.[hc]\|.*\.cc\|.*\.m4\)' -not -name 'macro.h' \
-a -not -name 'reserve.[ch]' -a -not -name 'reserve-monitor.[ch]' \
-a -not -name 'glib-mainloop.c' -a -not -name 'gkt-test.c' \
-a -not -name 'glib-mainloop.c' -a -not -name 'gkt-test.c' \
-a -not -name 'poll-win32.c' -a -not -name 'thread-win32.c' \
-a -not -name 'dllmain.c' -a -not -name 'gconf-helper.c' \
-exec sed -i -e 's/\bpa_bool_t\b/bool/g' \
-e 's/\bTRUE\b/true/g' -e 's/\bFALSE\b/false/g' {} \;
and:
sed -i -e '181,194!s/\bpa_bool_t\b/bool/' \
-e '181,194!s/\bTRUE\b/true/' -e \
'181,194!s/\bFALSE\b/false/' pulsecore/macro.h
2013-07-04 12:25:30 +03:00
Deng Zhengrong
c8cd89a7cb
tests: add cpu test
...
It tests only x86 architecture right now.
2012-08-04 08:23:34 +02:00
Arun Raghavan
ab4223e9cf
cpu: Add CPU information to pa_core
...
This retains CPU information (processor type and supported features) in
pa_core, so that this information can be used by modules at init time to
figure out what optimisations may be used.
2010-09-23 17:17:03 +05:30
Lennart Poettering
54025c96a7
cpu: check for CMOV flag before using this intsruction in assembly
...
http://pulseaudio.org/ticket/776
2010-02-09 22:32:39 +00:00
Tanu Kaskinen
0ad2d55cbe
Merge branch 'master' of git://0pointer.de/pulseaudio into dbus-work
...
Conflicts:
src/modules/module-stream-restore.c
2009-08-30 20:07:31 +03:00
Wim Taymans
beb180b7bc
convert: add sse/sse2 s16 to float32ne conversions
2009-08-27 10:44:53 +02:00
Wim Taymans
509d9f04e5
remap: add sse optimized mono to stereo
2009-08-27 10:44:52 +02:00
Tanu Kaskinen
2f3fc2f1d6
Merge branch 'master' of git://0pointer.de/pulseaudio into dbus-work
...
Conflicts:
src/Makefile.am
2009-08-24 14:43:11 +03:00
Wim Taymans
6e5dbed51e
remap: add MMX mono to stereo
2009-08-20 19:46:06 +02:00
Wim Taymans
e396fe67fb
cpu-x86: guard header with ifdef
2009-08-20 11:31:03 +02:00
Wim Taymans
a83f5524fb
cpu-x86: add cpu detection code and helpers
...
Add CPU detection code and various macros and typdefs to make it easier to write
64 and 32 bit code.
2009-08-20 11:31:02 +02:00