Commit 82131293 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/float2half: fix minor style issue

parent 3be33703
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment