meson_options.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. option('fft', type: 'combo', choices: ['auto', 'kiss', 'smallft', 'gpl-fftw3', 'proprietary-intel-mkl'], value: 'auto',
  2. description: 'Use an alternate FFT implementation (auto = kiss for fixed point and smallft for floating point')
  3. option('test-binaries', type: 'feature', value: 'auto',
  4. description: 'Build speex test binaries')
  5. option('fixed-point', type: 'feature', value: 'disabled',
  6. description: 'Use fixed-point arithmetic instead of floating-point')
  7. option('fixed-point-debug', type: 'feature', value: 'disabled',
  8. description: 'Debug fixed-point arithmetic implementation])')
  9. option('float-api', type: 'feature', value: 'enabled',
  10. description: 'Disable all parts of the API that are using floats')
  11. option('tools', type: 'feature', value: 'auto',
  12. description: 'Build speex command line tools')
  13. option('valgrind', type: 'feature', value: 'disabled',
  14. description: 'Enable valgrind extra checks')
  15. option('vbr', type: 'feature', value: 'enabled',
  16. description: 'Disable support for VBR and VAD from the codec')
  17. option('vorbis-psy', type: 'feature', value: 'disabled',
  18. description: 'Enable support for the Vorbis psy model')
  19. # Assembly + DSP options
  20. option('arm4-asm', type: 'feature', value: 'disabled',
  21. description: 'Make use of ARM4 assembly optimizations')
  22. option('arm5e-asm', type: 'feature', value: 'disabled',
  23. description: 'Make use of ARM5E assembly optimizations')
  24. option('blackfin-asm', type: 'feature', value: 'disabled',
  25. description: 'Make use of Blackfin assembly optimizations')
  26. option('sse', type: 'feature', value: 'auto',
  27. description: 'Enable or disable SSE support')
  28. #option('ti-c55x', type: 'feature', value: 'disabled',
  29. # description: 'Enable support for TI C55X DSP')