OSDN Git Service

avfilter/af_compand: cosmetics and doxy comment from libavfilter/af_compand_fork.c
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 26 Feb 2014 11:42:47 +0000 (12:42 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 26 Feb 2014 11:42:47 +0000 (12:42 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/af_compand.c

index db5aa35..5080ff7 100644 (file)
  *
  */
 
+/**
+ * @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;