[PD-dev] [ pure-data-Patches-2638371 ] exp~ broken/fixed

SourceForge.net noreply at sourceforge.net
Wed Feb 25 21:41:06 CET 2009


Patches item #2638371, was opened at 2009-02-25 20:41
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2638371&group_id=55736

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: exp~ broken/fixed

Initial Comment:
exp~ just copies it's input to it's output.  this is because exp_tilde_perform in d_math.c does this:

t_int *exp_tilde_perform(t_int *w)
{
    t_sample *in1 = (t_sample *)(w[1]);
    t_sample *out = (t_sample *)(w[2]);
    int n = (int)(w[3]);
    while (n--)
        *out = exp(*in1);
        // out and in1 are never incremented
    return (w+4);
}

instead it should do this:

t_int *exp_tilde_perform(t_int *w)
{
    t_sample *in1 = (t_sample *)(w[1]);
    t_sample *out = (t_sample *)(w[2]);
    int n = (int)(w[3]);
    while (n--)
    {
        *out = exp(*in1);
        out++;
        in1++;
    }
    return (w+4);
}

please apply the attached patch to d_math.c

-- karl yerkes


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

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2638371&group_id=55736




More information about the Pd-dev mailing list