summaryrefslogtreecommitdiff
path: root/avplay.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-05-04 21:18:13 +0200
committerDiego Biurrun <diego@biurrun.de>2013-07-25 19:43:32 +0200
commit03039f4c8cdb4f8e5dc69905f3d73e2a531157e8 (patch)
tree3ade6239dadc080b6d9c0d2dfb234fcf14ea48cc /avplay.c
parent93a51984a27f3ba84d4e6f13d0c704ee9891603e (diff)
miscellaneous typo fixes
Diffstat (limited to 'avplay.c')
-rw-r--r--avplay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/avplay.c b/avplay.c
index ba59a8c0fc..00becbeab4 100644
--- a/avplay.c
+++ b/avplay.c
@@ -847,7 +847,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]));