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
Application stucks forever when parsing media boxes larger tan 2Gb. No exceptions generated. This happens with RandomAccessFile sources only.
The problem is in MP4InputStream.skipBytes() method:
while(l<n) {
if(in!=null) l += in.skip((n-l));
else if(fin!=null) l += fin.skipBytes((int) (n-l));
}
This cast to int on line 3 causes int to overflow and skipBytes always returns zero as a result which leads to an endless cycle.
The text was updated successfully, but these errors were encountered:
Application stucks forever when parsing media boxes larger tan 2Gb. No exceptions generated. This happens with RandomAccessFile sources only.
The problem is in MP4InputStream.skipBytes() method:
This cast to int on line 3 causes int to overflow and skipBytes always returns zero as a result which leads to an endless cycle.
The text was updated successfully, but these errors were encountered: