diff options
author | Diego Biurrun | 2013-05-04 21:18:13 +0200 |
---|---|---|
committer | Diego Biurrun | 2013-07-25 19:43:32 +0200 |
commit | 03039f4c8cdb4f8e5dc69905f3d73e2a531157e8 (patch) | |
tree | 3ade6239dadc080b6d9c0d2dfb234fcf14ea48cc /avplay.c | |
parent | 93a51984a27f3ba84d4e6f13d0c704ee9891603e (diff) |
miscellaneous typo fixes
Diffstat (limited to 'avplay.c')
-rw-r--r-- | avplay.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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])); |