Config.in 802 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_OPUS
  2. bool "opus"
  3. help
  4. The Opus codec is designed for interactive speech and audio
  5. transmission over the Internet. It is designed by the IETF
  6. Codec Working Group and incorporates technology from Skype's
  7. SILK codec and Xiph.Org's CELT codec.
  8. It is intended to suit a wide range of interactive audio
  9. applications, including Voice over IP, videoconferencing,
  10. in-game chat, and even remote live music performances. It
  11. can scale from low bit-rate narrowband speech to very high
  12. quality stereo music.
  13. http://opus-codec.org
  14. if BR2_PACKAGE_OPUS
  15. config BR2_PACKAGE_OPUS_FIXED_POINT
  16. bool "use fixed-point" if !BR2_SOFT_FLOAT
  17. default y if BR2_SOFT_FLOAT
  18. help
  19. Compile without floating point operations (for machines
  20. without a fast enough FPU).
  21. endif