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
[sub/ass] Could not open libavcodec subtitle converter
[sub] Could not find subtitle decoder for format 'srt'.
This seems to be yet another difference between libav and ffmpeg. In libav, av_malloc(0) returns NULL. In ffmpeg, it passes the parameter to malloc(), and return value depends on libc implementation (and I believe glibc returns a valid pointer in this case).
Suggested fix:
This seems to be yet another difference between libav and ffmpeg. In libav,
av_malloc(0)returns NULL. In ffmpeg, it passes the parameter tomalloc(), and return value depends on libc implementation (and I believe glibc returns a valid pointer in this case).Suggested fix:
The text was updated successfully, but these errors were encountered: