summaryrefslogtreecommitdiff
path: root/src/pulsecore/cpu-x86.h
AgeCommit message (Collapse)AuthorFilesLines
2015-01-14update FSF addresses to FSF web pageOndrej Holecek1-3/+1
FSF addresses used in PA sources are no longer valid and rpmlint generates numerous warnings during packaging because of this. This patch changes all FSF addresses to FSF web page according to the GPL how-to: https://www.gnu.org/licenses/gpl-howto.en.html Done automatically by sed-ing through sources.
2013-07-04Remove pa_bool_t and replace it with bool.poljar (Damir Jelić)1-1/+1
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
2012-08-04tests: add cpu testDeng Zhengrong1-0/+1
It tests only x86 architecture right now.
2010-09-23cpu: Add CPU information to pa_coreArun Raghavan1-1/+2
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-02-09cpu: check for CMOV flag before using this intsruction in assemblyLennart Poettering1-2/+2
http://pulseaudio.org/ticket/776
2009-08-30Merge branch 'master' of git://0pointer.de/pulseaudio into dbus-workTanu Kaskinen1-0/+3
Conflicts: src/modules/module-stream-restore.c
2009-08-27convert: add sse/sse2 s16 to float32ne conversionsWim Taymans1-0/+2
2009-08-27remap: add sse optimized mono to stereoWim Taymans1-0/+1
2009-08-24Merge branch 'master' of git://0pointer.de/pulseaudio into dbus-workTanu Kaskinen1-0/+68
Conflicts: src/Makefile.am
2009-08-20remap: add MMX mono to stereoWim Taymans1-0/+2
2009-08-20cpu-x86: guard header with ifdefWim Taymans1-0/+5
2009-08-20cpu-x86: add cpu detection code and helpersWim Taymans1-0/+61
Add CPU detection code and various macros and typdefs to make it easier to write 64 and 32 bit code.