diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-11 23:17:18 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-11 23:17:18 -0500 |
commit | 364404cdd1ddf6e9b8c128490f76bc95a384facd (patch) | |
tree | 0b90d876d30a808b9b7c21c2800120d4ee484c71 /gr-fcd/lib/fcd_source_c_impl.cc | |
parent | a64df4e322933006f954c72bccbe53f6ce1a2381 (diff) |
audio: wip: fixing gr-fcd to build with new audio naming.
Diffstat (limited to 'gr-fcd/lib/fcd_source_c_impl.cc')
-rw-r--r-- | gr-fcd/lib/fcd_source_c_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fcd/lib/fcd_source_c_impl.cc b/gr-fcd/lib/fcd_source_c_impl.cc index 9d66e8bb4f..350ba9e544 100644 --- a/gr-fcd/lib/fcd_source_c_impl.cc +++ b/gr-fcd/lib/fcd_source_c_impl.cc @@ -56,7 +56,7 @@ fcd_source_c_impl::fcd_source_c_impl(const std::string device_name) gr::blocks::float_to_complex::sptr f2c; /* Audio source; sample rate fixed at 96kHz */ - fcd = audio_make_source(96000, device_name, true); + fcd = gr::audio::source::make(96000, device_name, true); /* block to convert stereo audio to a complex stream */ f2c = gr::blocks::float_to_complex::make(1); |