diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-11 22:57:58 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-11 22:57:58 -0500 |
commit | 0c8763a943dde47b4bbebf526c442509a9cf8bd4 (patch) | |
tree | fe1b7e6b77d8ca931e9b818ee7a792aef207d7fa /gr-audio/examples/c++/dial_tone.cc | |
parent | 354c1219a22e13422b14d9bc14645e1296776d24 (diff) |
analog: wip: oss and jack converted and compiling.
C++ dial_tone example working.
Diffstat (limited to 'gr-audio/examples/c++/dial_tone.cc')
-rw-r--r-- | gr-audio/examples/c++/dial_tone.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-audio/examples/c++/dial_tone.cc b/gr-audio/examples/c++/dial_tone.cc index 924e7953f1..f866edfdee 100644 --- a/gr-audio/examples/c++/dial_tone.cc +++ b/gr-audio/examples/c++/dial_tone.cc @@ -58,7 +58,7 @@ int main(int argc, char **argv) analog::sig_source_f::sptr src1 = analog::sig_source_f::make(rate, analog::GR_SIN_WAVE, 440, ampl); // Construct an audio sink to accept audio tones - audio_sink::sptr sink = audio_make_sink(rate); + audio::sink::sptr sink = audio::sink::make(rate); // Connect output #0 of src0 to input #0 of sink (left channel) tb->connect(src0, 0, sink, 0); |