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
Currently code has several usages of syscall.EAGAIN. However, if you compile the project in MSYS2 MinGW (see here for detail), the value of syscall.EAGAIN will be 536870918 but libavcodec still returns 11. Therefore it will results in errors. It should be replaced with a hardcoded constant with value 11.
The text was updated successfully, but these errors were encountered:
Currently code has several usages of syscall.EAGAIN. However, if you compile the project in MSYS2 MinGW (see here for detail), the value of syscall.EAGAIN will be 536870918 but libavcodec still returns 11. Therefore it will results in errors. It should be replaced with a hardcoded constant with value 11.
The text was updated successfully, but these errors were encountered: