mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/af_compand: cosmetics and doxy comment from libavfilter/af_compand_fork.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
66ad3292eb
commit
5c78fe08b0
@ -23,6 +23,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* audio compand filter
|
||||
*/
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/avstring.h"
|
||||
#include "libavutil/opt.h"
|
||||
@ -224,7 +229,7 @@ static int compand_delay(AVFilterContext *ctx, AVFrame *frame)
|
||||
AVFrame *delay_frame = s->delay_frame;
|
||||
const double *src = (double *)frame->extended_data[chan];
|
||||
double *dbuf = (double *)delay_frame->extended_data[chan];
|
||||
ChanParam *cp = &s->channels[chan];
|
||||
ChanParam *cp = &s->channels[chan];
|
||||
double *dst;
|
||||
|
||||
count = s->delay_count;
|
||||
|
Loading…
Reference in New Issue
Block a user