#include "audio.h"
#include "avfilter.h"
#include "internal.h"
 
Go to the source code of this file.
◆ DERIVATIVE
Value:static void aderivative_## 
name ##p(
void **d, 
void **p, 
const void **
s, \
 
{                                                                       \
        for (n = 0; n < nb_samples; n++) {                              \
 
                                                                        \
            dst[n] = current - prv[0];                                  \
            prv[0] = current;                                           \
        }                                                               \
    }                                                                   \
}
 
Definition at line 65 of file af_aderivative.c.
 
 
◆ INTEGRAL
Value:static void aintegral_## 
name ##p(
void **d, 
void **p, 
const void **
s, \
 
{                                                                     \
        for (n = 0; n < nb_samples; n++) {                            \
 
                                                                      \
            dst[n] = current + prv[0];                                \
            prv[0] = dst[n];                                          \
        }                                                             \
    }                                                                 \
}
 
Definition at line 90 of file af_aderivative.c.
 
 
◆ query_formats()
◆ config_input()
◆ filter_frame()
◆ uninit()
◆ aderivative_inputs
◆ aderivative_outputs
◆ ff_af_aderivative
◆ ff_af_aintegral