view libgsmefr/preemph.c @ 83:33714b36841a

libgsmefr: pow2.c compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 26 Nov 2022 07:22:27 +0000
parents 49dd1ac8e75b
children 9aef9e54b19d
line wrap: on
line source

/*---------------------------------------------------------------------*
 * routine preemphasis()                                               *
 * ~~~~~~~~~~~~~~~~~~~~~                                               *
 * Preemphasis: filtering through 1 - g z^-1                           *
 *---------------------------------------------------------------------*/

#include "typedef.h"
#include "basic_op.h"
#include "count.h"

Word16 mem_pre;

void preemphasis (
    Word16 *signal, /* (i/o)   : input signal overwritten by the output */
    Word16 g,       /* (i)     : preemphasis coefficient                */
    Word16 L        /* (i)     : size of filtering                      */
)
{
    Word16 *p1, *p2, temp, i;

    p1 = signal + L - 1;                    move16 (); 
    p2 = p1 - 1;                            move16 (); 
    temp = *p1;                             move16 (); 

    for (i = 0; i <= L - 2; i++)
    {
        *p1 = sub (*p1, mult (g, *p2--));   move16 (); 
        p1--;
    }

    *p1 = sub (*p1, mult (g, mem_pre));     move16 (); 

    mem_pre = temp;                         move16 (); 

    return;
}