You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 1124: if (d <= sampleCount * sampleDelta), there is a change for an
integer wraparound here.
d is of type MP4Duration, which is unint64_t. The multiplication is of two
uint32_t.
A simple change would be to cast of the operands to MP4Duration which would
convert both of the operands to MP4Duration before multiplication.
I am using the latest version of mp4v2.
Original issue reported on code.google.com by shankar...@gmail.com on 26 Mar 2014 at 8:33
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
shankar...@gmail.com
on 26 Mar 2014 at 8:33The text was updated successfully, but these errors were encountered: