summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-07-26 11:11:46 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-07-26 11:12:11 +0200
commit46ad2d9e446304e00f44760da5abd66f5117b4fa (patch)
treef41cbe98d569fc5801aef45ec87ef5541c22515c /ffplay.c
parent5dc2c99055ae4a95336f28c58c8c8da4033979f1 (diff)
parent03039f4c8cdb4f8e5dc69905f3d73e2a531157e8 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: miscellaneous typo fixes Conflicts: configure libavformat/avisynth.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index e92ef42393..d462eee43a 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -975,7 +975,8 @@ static void video_audio_display(VideoState *s)
}
av_rdft_calc(s->rdft, data[ch]);
}
- // least efficient way to do this, we should of course directly access it but its more than fast enough
+ /* Least efficient way to do this, we should of course
+ * directly access it but it is more than fast enough. */
for (y = 0; y < s->height; y++) {
double w = 1 / sqrt(nb_freq);
int a = sqrt(w * sqrt(data[0][2 * y + 0] * data[0][2 * y + 0] + data[0][2 * y + 1] * data[0][2 * y + 1]));