diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-26 12:42:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-26 12:42:47 +0100 |
commit | 5c78fe08b0a67b4c05dc264b14b0d74fc86501bc (patch) | |
tree | 93d5acabbff239e4990cc08dfb288093896d8c3c /libavfilter | |
parent | 66ad3292eb4595223af3c47e3aa27598dee7331d (diff) | |
download | ffmpeg-5c78fe08b0a67b4c05dc264b14b0d74fc86501bc.tar.gz |
avfilter/af_compand: cosmetics and doxy comment from libavfilter/af_compand_fork.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_compand.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavfilter/af_compand.c b/libavfilter/af_compand.c index db5aa354f2..5080ff709c 100644 --- a/libavfilter/af_compand.c +++ b/libavfilter/af_compand.c @@ -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; |