You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mpv/mpv-do-not-fail-with-minor-...

27 lines
1.2 KiB

7 years ago
diff -Naur mpv-0.29.0.old/player/main.c mpv-0.29.0/player/main.c
--- mpv-0.29.0.old/player/main.c
+++ mpv-0.29.0/player/main.c
@@ -380,21 +380,6 @@
7 years ago
if (handle_help_options(mpctx))
return 1; // help
-
- if (!print_libav_versions(mp_null_log, 0)) {
- // Using mismatched libraries can be legitimate, but even then it's
- // a bad idea. We don't acknowledge its usefulness and stability.
7 years ago
- // Distro maintainers who patch this out should be aware that mpv
- // intentionally ignores ABI in some places where it's not possible to
- // get by without violating it.
- print_libav_versions(mpctx->log, MSGL_FATAL);
- MP_FATAL(mpctx, "\nmpv was compiled against a different version of "
- "FFmpeg/Libav than the shared\nlibrary it is linked against. "
- "This is most likely a broken build and could\nresult in "
- "misbehavior and crashes.\n\nmpv does not support this "
- "configuration and will not run - rebuild mpv instead.\n");
- return -1;
- }
7 years ago
if (!mpctx->playlist->first && !opts->player_idle_mode) {
// nothing to play
7 years ago