diff options
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); |