summaryrefslogtreecommitdiff
path: root/gr-audio/lib/osx/osx_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* audio: osx: Replace boost::scoped_array with std::unique_ptr.Ryan Volz2021-12-101-2/+3
| | | | | | | This removes a use of boost and fixes the failing build (due to missing the boost::scoped_array header, how did this work before?). Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
* global: remove iostream from all files not use cout|cerr|cin|clogMarcus Müller2021-06-171-1/+0
| | | | Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* audio: replace stderr logging by calls to GR's logging faciltiesMarcus Müller2020-04-131-7/+13
| | | | | | | | | | | | This is a bit special, in that audio systems tend to have their own ways of going wrong, and there's platform-specific development debugging infrastructure in there, which I intentionally did not touch. I did touch a few commented lines of code in the intention of, if you enable that line of logging, it should be consistent with the rest. There's copious amounts of untouched stderr-logging in `#if 0`-disabled code in OSX's infrastructure.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-217/+195
|
* audio: fix build on OSXMichael Dickens2019-04-211-1/+1
|
* Comment typo fixing.luz.paz2018-02-031-1/+1
| | | | Luzpaz went ahead and found typos using `codespell -q 3`.
* Merge remote-tracking branch 'github/pr/1308' into maintJohnathan Corgan2017-05-091-4/+4
|\
| * audio: fix osx variety to work with debug (again).Michael Dickens2017-05-091-4/+4
| | | | | | | | Allow for internal or external specification of _OSX_*_DEBUG_ flags.
* | audio: fix use of 'memcpy' in OSX impl.Michael Dickens2017-04-171-1/+1
|/
* audio osx: change copying of a UInt32 type into a string by using memcpy ↵Michael Dickens2015-03-311-7/+3
| | | | instead of a direct pointer manipulation, to make some newer compilers happy.
* fix gr-audio osx:Michael Dickens2014-03-071-0/+313
+ use GNU Radio preferences file to set default input and output audio device, if provided; + use gr::logger for all non-debug messages; + case-insensitive string find with desired audio device name; + fixes buffer allocation bug with low sample rates; + allows using a specific (named) audio device, or the default; + handles the case when the selected audio device becomes unavailable (e.g., a USB stick is removed while in use); + if no audio device name is provided, uses the default audio device as found in System Preferences::Sound; + handles the case when the default audio device is in use, and the user changes that audio device in System Preferences::Sound, by internally resetting to use the newly selected audio device; + all non-Apple names are now lower_case, not CamelCase; + move osx_impl functions to gr::audio::osx, and use them correctly; + install osx_impl.h to expose gr::audio::osx functions, but iff OSX audio is enabled.