diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-03-03 12:47:56 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-03-03 12:49:57 +0100 |
commit | 82131293b09a7caa68f857af44e15c90d73c7a4e (patch) | |
tree | 5a9f39494823960139faca2dece7a84997afcc7c | |
parent | 3be33703c6e588c4df003340b37c89206afa4f2e (diff) | |
download | ffmpeg-82131293b09a7caa68f857af44e15c90d73c7a4e.tar.gz |
avcodec/float2half: fix minor style issue
-rw-r--r-- | libavcodec/float2half.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |