Conversation
no need to give warnings about missing audio input libs debug stuff removed
- input/coreaudio.c, input/coreaudio.h: new HAL-output AudioUnit backend
- source=auto captures the default output device (loopback-capable)
- source=auto_input captures the default input device (microphone)
- source=list enumerates all devices with input/output channel counts
- source=<name> or <index> selects a specific device
- Reads actual device channel count so mono devices are visualised
correctly instead of appearing as a stereo view with a silent right channel
- configure.ac: detect CoreAudio/AudioUnit frameworks; add --disable-input-coreaudio
- Makefile.am: add COREAUDIO conditional source block
- config.h: add HAS_COREAUDIO / INPUT_COREAUDIO enum value
- config.c: register method name, default priority on macOS, source default
- cava.c: include and dispatch INPUT_COREAUDIO
- example_files/config, README.md: document coreaudio method and source options
- add Objective-C CoreAudio tap backend (input/coreaudio_tap.m) - route coreaudio source=tap/tap_mono through tap backend - detect tap API support in configure and add COREAUDIO_TAP conditional - include tap sources in automake build when supported - document tap usage in README and example config - fix configure tap checks to use POSIX-compatible test syntax
* add coreaudio permission detection and requests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
add coreaudio support #764