Commit 33ac07ea authored by Aurelien Jacobs's avatar Aurelien Jacobs

matroskadec: simplify matroska_ebmlnum_sint()

Originally committed as revision 14609 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c1e01133
......@@ -660,10 +660,7 @@ static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska,
return res;
/* make signed (weird way) */
if (unum == (uint64_t)-1)
*num = INT64_MAX;
else
*num = unum - ((1LL << ((7 * res) - 1)) - 1);
*num = unum - ((1LL << (7*res - 1)) - 1);
return res;
}
......
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