diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-26 11:11:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-26 11:12:11 +0200 |
commit | 46ad2d9e446304e00f44760da5abd66f5117b4fa (patch) | |
tree | f41cbe98d569fc5801aef45ec87ef5541c22515c /ffplay.c | |
parent | 5dc2c99055ae4a95336f28c58c8c8da4033979f1 (diff) | |
parent | 03039f4c8cdb4f8e5dc69905f3d73e2a531157e8 (diff) | |
download | ffmpeg-46ad2d9e446304e00f44760da5abd66f5117b4fa.tar.gz |
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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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])); |