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
FFmpeg relies on libraries probing capabilities do detect if a file is in a format supported by the library. Please implement probing for file formats supported by libmodplug, so FFmpeg is able to detect mod files with invalid extension.
See https://trac.ffmpeg.org/ticket/2583 & https://trac.ffmpeg.org/ticket/4153
The text was updated successfully, but these errors were encountered:
the application sends libavformat a small memory buffer containing the start of the file being probed (the buffer doesn't necessarily contain the whole file)
the probe function returns a detection score
this score is compared to other probers
if the score is not high enough, it retries with a larger probe buffer (up until a maximum size)
So what libmodplug should provide is a function that checks a buffer whether it contains a known file header.
FFmpeg relies on libraries probing capabilities do detect if a file is in a format supported by the library. Please implement probing for file formats supported by libmodplug, so FFmpeg is able to detect mod files with invalid extension.
See https://trac.ffmpeg.org/ticket/2583 & https://trac.ffmpeg.org/ticket/4153
The text was updated successfully, but these errors were encountered: