commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] 03/04: filter: fixing the pfb_arb_resampler


From: git
Subject: [Commit-gnuradio] [gnuradio] 03/04: filter: fixing the pfb_arb_resampler's prototype to use the correct argument order.
Date: Thu, 19 Feb 2015 08:38:19 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch master
in repository gnuradio.

commit be56f37faa4048d49007d760989e6fb697237fef
Author: Tom Rondeau <address@hidden>
Date:   Fri Feb 13 18:52:03 2015 -0500

    filter: fixing the pfb_arb_resampler's prototype to use the correct 
argument order.
---
 gr-filter/include/gnuradio/filter/pfb_arb_resampler.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gr-filter/include/gnuradio/filter/pfb_arb_resampler.h 
b/gr-filter/include/gnuradio/filter/pfb_arb_resampler.h
index 9ced0b3..2af56e5 100644
--- a/gr-filter/include/gnuradio/filter/pfb_arb_resampler.h
+++ b/gr-filter/include/gnuradio/filter/pfb_arb_resampler.h
@@ -203,13 +203,13 @@ namespace gr {
          * such that the output has \p rate * \p n_to_read amount of
          * space available in the \p output buffer.
          *
-         * \param input An input vector of samples to be resampled
          * \param output The output samples at the new sample rate.
+         * \param input An input vector of samples to be resampled
          * \param n_to_read Number of samples to read from \p input.
          * \param n_read (out) Number of samples actually read from \p input.
          * \return Number of samples put into \p output.
          */
-        int filter(gr_complex *input, gr_complex *output,
+        int filter(gr_complex *output, gr_complex *input,
                    int n_to_read, int &n_read);
       };
 
@@ -329,13 +329,13 @@ namespace gr {
          * such that the output has \p rate * \p n_to_read amount of
          * space available in the \p output buffer.
          *
-         * \param input An input vector of samples to be resampled
          * \param output The output samples at the new sample rate.
+         * \param input An input vector of samples to be resampled
          * \param n_to_read Number of samples to read from \p input.
          * \param n_read (out) Number of samples actually read from \p input.
          * \return Number of samples put into \p output.
          */
-        int filter(gr_complex *input, gr_complex *output,
+        int filter(gr_complex *output, gr_complex *input,
                    int n_to_read, int &n_read);
       };
 
@@ -516,13 +516,13 @@ namespace gr {
          * such that the output has \p rate * \p n_to_read amount of
          * space available in the \p output buffer.
          *
-         * \param input An input vector of samples to be resampled
          * \param output The output samples at the new sample rate.
+         * \param input An input vector of samples to be resampled
          * \param n_to_read Number of samples to read from \p input.
          * \param n_read (out) Number of samples actually read from \p input.
          * \return Number of samples put into \p output.
          */
-        int filter(float *input, float *output,
+        int filter(float *output, float *input,
                    int n_to_read, int &n_read);
       };
 



reply via email to

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