commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v


From: git repository hosting
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v3.4.0git-30-gd44bed6
Date: Tue, 29 Mar 2011 16:44:25 +0100 (BST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "git://gnuradio.org/gnuradio".

The branch, master has been updated
       via  d44bed65837cffef9f17cc2cdc3dee2c65e5f984 (commit)
       via  faa244588108ccb506d4973d0b824565924468a1 (commit)
       via  25ee0ce936a3088bfef694810ea6322f19dac3f2 (commit)
       via  f8ce10742ab6b9ac170432ae78d2ee2d6c538d72 (commit)
       via  35a4938e598f6be6034e21ef1818c412a16a22d1 (commit)
       via  3ff8f7a5545592a9dac201a27d18bfdae4cdcb7b (commit)
       via  a111deb45559296d6eadded9226df68af21c0477 (commit)
      from  113a144a09f7620bc7a3bf03eda23c7bdc1b19f6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d44bed65837cffef9f17cc2cdc3dee2c65e5f984
Merge: faa244588108ccb506d4973d0b824565924468a1 
25ee0ce936a3088bfef694810ea6322f19dac3f2
Author: Johnathan Corgan <address@hidden>
Date:   Tue Mar 29 07:48:56 2011 -0700

    Merge remote branch 'jblum/wip/gr_block_pure_virtual'
    
    * 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)

commit faa244588108ccb506d4973d0b824565924468a1
Merge: 113a144a09f7620bc7a3bf03eda23c7bdc1b19f6 
3ff8f7a5545592a9dac201a27d18bfdae4cdcb7b
Author: Johnathan Corgan <address@hidden>
Date:   Tue Mar 29 07:48:39 2011 -0700

    Merge remote branch 'jblum/wip/throttle'
    
    * jblum/wip/throttle:
      throttle: cleanup conditional code and reimplement with boost posix time
      runtime: changes to block headers to allow pure virtual sub-classes 
(interfaces)

commit 25ee0ce936a3088bfef694810ea6322f19dac3f2
Author: Josh Blum <address@hidden>
Date:   Wed Mar 16 15:20:44 2011 -0700

    uhd: cleanup uhd usrp source/sink with virtual inheritance
    
    The uhd block implementations now inherit from sync block.
    And the redundant constructor in source/sink has been removed.

commit f8ce10742ab6b9ac170432ae78d2ee2d6c538d72
Author: Josh Blum <address@hidden>
Date:   Wed Mar 16 15:07:37 2011 -0700

    audio: cleanup audio source/sink with virtual inheritance
    
    The audio implementations now inherit from sync block (as they used to).
    And the redundant constructor in audio source/sink has been removed.

commit 35a4938e598f6be6034e21ef1818c412a16a22d1
Author: Josh Blum <address@hidden>
Date:   Wed Mar 16 14:51:58 2011 -0700

    runtime: changes to block headers to allow pure virtual sub-classes 
(interfaces)

commit 3ff8f7a5545592a9dac201a27d18bfdae4cdcb7b
Author: Josh Blum <address@hidden>
Date:   Wed Mar 16 15:36:36 2011 -0700

    throttle: cleanup conditional code and reimplement with boost posix time
    
    This greatly cleans up gr_throttle and moves the implementation into the 
.cc file.
    The implementation uses boost's posix time library so it will work on all 
systems.
    
    Also added set_sample_rate() method and support for callback in grc.

commit a111deb45559296d6eadded9226df68af21c0477
Author: Josh Blum <address@hidden>
Date:   Wed Mar 16 14:51:58 2011 -0700

    runtime: changes to block headers to allow pure virtual sub-classes 
(interfaces)

-----------------------------------------------------------------------

Summary of changes:
 gnuradio-core/src/lib/general/gr_throttle.cc     |  136 +++++++++-------------
 gnuradio-core/src/lib/general/gr_throttle.h      |   33 +----
 gnuradio-core/src/lib/general/gr_throttle.i      |   13 +-
 gnuradio-core/src/lib/runtime/gr_basic_block.h   |    2 +
 gnuradio-core/src/lib/runtime/gr_block.h         |    2 +-
 gnuradio-core/src/lib/runtime/gr_sync_block.h    |    2 +-
 gr-audio/include/gr_audio_sink.h                 |    9 +--
 gr-audio/include/gr_audio_source.h               |    9 +--
 gr-audio/lib/alsa/audio_alsa_sink.cc             |    2 +-
 gr-audio/lib/alsa/audio_alsa_source.cc           |    2 +-
 gr-audio/lib/gr_audio_registry.cc                |   21 ----
 gr-audio/lib/jack/audio_jack_sink.cc             |    2 +-
 gr-audio/lib/jack/audio_jack_source.cc           |    2 +-
 gr-audio/lib/oss/audio_oss_sink.cc               |    2 +-
 gr-audio/lib/oss/audio_oss_source.cc             |    2 +-
 gr-audio/lib/osx/audio_osx_sink.cc               |    2 +-
 gr-audio/lib/osx/audio_osx_source.cc             |    2 +-
 gr-audio/lib/portaudio/audio_portaudio_sink.cc   |    2 +-
 gr-audio/lib/portaudio/audio_portaudio_source.cc |    2 +-
 gr-audio/lib/windows/audio_windows_sink.cc       |    2 +-
 gr-audio/lib/windows/audio_windows_source.cc     |    2 +-
 gr-uhd/include/gr_uhd_usrp_sink.h                |    8 +-
 gr-uhd/include/gr_uhd_usrp_source.h              |    8 +-
 gr-uhd/lib/gr_uhd_usrp_sink.cc                   |   16 +--
 gr-uhd/lib/gr_uhd_usrp_source.cc                 |   16 +--
 25 files changed, 97 insertions(+), 202 deletions(-)


hooks/post-receive
-- 
git://gnuradio.org/gnuradio



reply via email to

[Prev in Thread] Current Thread [Next in Thread]