[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] branch master updated (8f75515 -> 24dc96a)
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] branch master updated (8f75515 -> 24dc96a) |
Date: |
Sat, 8 Mar 2014 16:32:43 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a change to branch master
in repository gnuradio.
from 8f75515 Merge branch 'maint'
new e0b8cd4 qtgui: adds ability to set qss style sheet as a
preference.
new 6e0895c fix gr-audio osx: + 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 [...]
new 39208e2 fix typo in getting default source (output) audio device
name from gr::prefs
new ab9e1d0 Merge remote-tracking branch 'michaelld/fix_gr_audio_osx'
into master_osx
new 0b3d00e runtime: updates prefs to preserve format of preference
file options that are in quotes.
new 24dc96a Merge branch 'master_osx'
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
docs/doxygen/other/main_page.dox | 33 +-
gnuradio-runtime/lib/prefs.cc | 46 +-
gr-audio/CMakeLists.txt | 2 +-
gr-audio/include/gnuradio/audio/CMakeLists.txt | 14 +-
gr-audio/include/gnuradio/audio/osx_impl.h | 84 ++
gr-audio/lib/CMakeLists.txt | 9 +
gr-audio/lib/osx/gr-audio-osx.conf | 11 +
gr-audio/lib/osx/osx_common.h | 73 +
gr-audio/lib/osx/osx_impl.cc | 313 ++++
gr-audio/lib/osx/osx_impl.h | 78 -
gr-audio/lib/osx/osx_sink.cc | 1015 ++++++++++---
gr-audio/lib/osx/osx_sink.h | 117 +-
gr-audio/lib/osx/osx_source.cc | 1881 +++++++++++++++---------
gr-audio/lib/osx/osx_source.h | 192 ++-
gr-qtgui/doc/qtgui.dox | 6 +
gr-qtgui/examples/dark.qss | 4 +-
gr-qtgui/gr-qtgui.conf | 4 +
gr-qtgui/include/gnuradio/qtgui/utils.h | 9 +
gr-qtgui/lib/const_sink_c_impl.cc | 7 +
gr-qtgui/lib/freq_sink_c_impl.cc | 7 +
gr-qtgui/lib/freq_sink_f_impl.cc | 7 +
gr-qtgui/lib/histogram_sink_f_impl.cc | 7 +
gr-qtgui/lib/qtgui_util.cc | 19 +-
gr-qtgui/lib/sink_c_impl.cc | 7 +
gr-qtgui/lib/sink_f_impl.cc | 7 +
gr-qtgui/lib/time_raster_sink_b_impl.cc | 7 +
gr-qtgui/lib/time_raster_sink_f_impl.cc | 7 +
gr-qtgui/lib/time_sink_c_impl.cc | 7 +
gr-qtgui/lib/time_sink_f_impl.cc | 7 +
gr-qtgui/lib/waterfall_sink_c_impl.cc | 7 +
gr-qtgui/lib/waterfall_sink_f_impl.cc | 7 +
31 files changed, 2831 insertions(+), 1163 deletions(-)
create mode 100644 gr-audio/include/gnuradio/audio/osx_impl.h
create mode 100644 gr-audio/lib/osx/gr-audio-osx.conf
create mode 100644 gr-audio/lib/osx/osx_common.h
create mode 100644 gr-audio/lib/osx/osx_impl.cc
delete mode 100644 gr-audio/lib/osx/osx_impl.h
- [Commit-gnuradio] [gnuradio] branch master updated (8f75515 -> 24dc96a),
git <=
- [Commit-gnuradio] [gnuradio] 05/06: qtgui: adds ability to set qss style sheet as a preference., git, 2014/03/08
- [Commit-gnuradio] [gnuradio] 03/06: Merge remote-tracking branch 'michaelld/fix_gr_audio_osx' into master_osx, git, 2014/03/08
- [Commit-gnuradio] [gnuradio] 04/06: runtime: updates prefs to preserve format of preference file options that are in quotes., git, 2014/03/08
- [Commit-gnuradio] [gnuradio] 06/06: Merge branch 'master_osx', git, 2014/03/08
- [Commit-gnuradio] [gnuradio] 02/06: fix typo in getting default source (output) audio device name from gr::prefs, git, 2014/03/08
- [Commit-gnuradio] [gnuradio] 01/06: fix gr-audio osx: + 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., git, 2014/03/08