[FFmpeg-cvslog] avfilter/af_compand: cosmetics and doxy comment from libavfilter/ af_compand_fork.c

Michael Niedermayer git at videolan.org
Wed Feb 26 13:06:59 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Feb 26 12:42:47 2014 +0100| [5c78fe08b0a67b4c05dc264b14b0d74fc86501bc] | committer: Michael Niedermayer

avfilter/af_compand: cosmetics and doxy comment from libavfilter/af_compand_fork.c

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5c78fe08b0a67b4c05dc264b14b0d74fc86501bc
---

 libavfilter/af_compand.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/libavfilter/af_compand.c b/libavfilter/af_compand.c
index db5aa35..5080ff7 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;



More information about the ffmpeg-cvslog mailing list