[FFmpeg-cvslog] avcodec/float2half: fix minor style issue
Paul B Mahol
git at videolan.org
Wed Mar 3 13:50:15 EET 2021
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Mar 3 12:47:56 2021 +0100| [82131293b09a7caa68f857af44e15c90d73c7a4e] | committer: Paul B Mahol
avcodec/float2half: fix minor style issue
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=82131293b09a7caa68f857af44e15c90d73c7a4e
---
libavcodec/float2half.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/float2half.h b/libavcodec/float2half.h
index ff547b490c..e05125088c 100644
--- a/libavcodec/float2half.h
+++ b/libavcodec/float2half.h
@@ -46,7 +46,7 @@ static void float2half_tables(uint16_t *basetable, uint8_t *shifttable)
basetable[i|0x100] = 0xFC00;
shifttable[i|0x000] = 24;
shifttable[i|0x100] = 24;
- } else{ // Infinity and NaN's stay Infinity and NaN's
+ } else { // Infinity and NaN's stay Infinity and NaN's
basetable[i|0x000] = 0x7C00;
basetable[i|0x100] = 0xFC00;
shifttable[i|0x000] = 13;
More information about the ffmpeg-cvslog
mailing list