summaryrefslogtreecommitdiff
path: root/gr-audio/lib
AgeCommit message (Collapse)Author
2012-06-29audio: switch to BOOST_BIG_ENDIAN macro in OSX audio hdrJosh Blum
The previous one didnt seem to be set by the build system. Perhaps this was lost in the transition to CMake?
2012-04-13Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau
this in the future. The sed script was provided by Moritz Fischer.
2012-02-16Merge branch 'master' into nextJohnathan Corgan
2012-02-16small tweaks to get stream sizes "more correct"Michael L Dickens
2012-02-16allow any input hardware audio rate; fix use of deprecated function ↵Michael Dickens
'AudioHardwareGetProperty'
2012-01-06Merge branch 'master' into nextTom Rondeau
2012-01-06Remove some more warnings. I'm probably being a bit OCD about these ones, ↵Tom Rondeau
but it makes the build output so much nicer...
2011-12-08Removed autotools, gr-waveform, some cleanupJohnathan Corgan
Nick Foster owes Nick Corgan a six-pack of beer!
2011-10-25Merge branch 'maint'Tom Rondeau
2011-10-23the librariesJosh Blum
2011-10-11Merge branch 'next' of http://gnuradio.org/git/gnuradio into nextJosh Blum
Conflicts: gr-digital/include/digital_constellation.h
2011-10-09docs: adding doc directory, Doxygen page, and README for audio package.Tom Rondeau
2011-10-08gr: the CMakeLists.txt took a chill pillJosh Blum
2011-10-08Merge branch 'next' of http://gnuradio.org/git/gnuradio into digitalJosh Blum
2011-10-07audio_alsa_source : Fix warning on 32 bit builds.Philip Balister
On machines where sizeof(long) = sizeof(int) the code for calculating scale factors produced an overflow warning. This change simplifies the code by eliminating the shift. The compiler should calculate the constant at compile time anyway. Signed-off-by: Philip Balister <philip@opensdr.com>
2011-10-03audio_alsa_sink : Fix warning on 32 bit builds.Philip Balister
On machines where sizeof(long) = sizeof(int) the code for calculating scale factors produced an overflow warning. This change simplifies the code by eliminating the shift. The compiler should calculate the constant at compile time anyway. Signed-off-by: Philip Balister <philip@opensdr.com>
2011-09-15audio: may have to link CarbonJosh Blum
2011-07-23gr: tweaks to build cmake branch on osxJosh Blum
2011-07-20gr: squashed cmakelists.txt into one commitJosh Blum
2011-07-10audio: fixing alsa source like we did for alsa sink before.Tom Rondeau
2011-07-06gr-audio: fix missing Makefile.am clauseMichael Dickens
Date: Tue, 5 Jul 2011 23:16:48 -0500 Message-ID: <CAJFv4kPPVbA0dC=euBvaukWcpNVOWTdPsM1kcYS5nO4KAfnd-g@mail.gmail.com> From: Ryan Pape <ryan.pape@gmail.com> To: discuss-gnuradio@gnu.org Subject: [Discuss-gnuradio] OSX 10.6 Audio Library Error I'm having trouble with a new install on OSX 10.6. I've done this enough times on other OSX versions but I am drawing a blank. Can anyone help me out? Can't find Core Audio libs? Traceback (most recent call last): File "./dial_tone.py", line 24, in <module> from gnuradio import audio File "/usr/local/lib/python2.6/site-packages/gnuradio/audio/__init__.py", line 22, in <module> from audio_swig import * File "/usr/local/lib/python2.6/site-packages/gnuradio/audio/audio_swig.py", line 26, in <module> _audio_swig = swig_import_helper() File "/usr/local/lib/python2.6/site-packages/gnuradio/audio/audio_swig.py", line 22, in swig_import_helper _mod = imp.load_module('_audio_swig', fp, pathname, description) *ImportError: dlopen(/usr/local/lib/python2.6/site-packages/gnuradio/audio/_audio_swig.so, 2): Symbol not found: _AudioComponentFindNext* Referenced from: /usr/local/lib/libgnuradio-audio-3.4.1git.0.dylib Expected in: flat namespace in /usr/local/lib/libgnuradio-audio-3.4.1git.0.dylib
2011-03-30build: add missing linker defines for Win32Don Ward
2011-03-29Merge remote branch 'jblum/wip/gr_block_pure_virtual'Johnathan Corgan
* jblum/wip/gr_block_pure_virtual: uhd: cleanup uhd usrp source/sink with virtual inheritance audio: cleanup audio source/sink with virtual inheritance runtime: changes to block headers to allow pure virtual sub-classes (interfaces)
2011-03-28audio: added missing header to Makefile.Tom Rondeau
2011-03-28audio: cleanup audio source/sink with virtual inheritanceJosh Blum
The audio implementations now inherit from sync block (as they used to). And the redundant constructor in audio source/sink has been removed.
2011-03-28audio: fixing class typo for OSX audio driver.Tom Rondeau
2011-03-28audio: re-adding circular_buffer.h for OSX build.Tom Rondeau
2011-03-22audio: moved audio docs to gr-audio and fix commentsJosh Blum
2011-03-14gr-audio: added README and default config fixJosh Blum
2011-03-09audio: high prio for platform specific audio osxJosh Blum
2011-03-09audio: added windows and osx audio source filesJosh Blum
2011-03-09audio: added config checks for other audios, added jack and portJosh Blum
2011-03-09audio: make prefs look like old audio, removed old audio.pyJosh Blum
2011-03-09audio: register arches with priorities, ex: prefer alsa over ossJosh Blum
2011-03-09audio: added oss support to gr-audioJosh Blum
2011-03-09audio: use conf files to specify default archJosh Blum
2011-03-09audio: moved alsa support files into subdirectoryJosh Blum
2011-03-09audio: work on swig support, it importsJosh Blum
2011-03-09audio: work to get alsa support in, lets see if this works before adding moreJosh Blum
2011-03-09audio: added audio factory registry and top level includesJosh Blum
2011-03-08audio: skeleton for gr-audio componentJosh Blum