Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 649908 | Differences between
and this patch

Collapse All | Expand All

(-)a/player/main.c (-6 / +5 lines)
Lines 429-441 int mp_initialize(struct MPContext *mpct Link Here
429
        // Distro maintainers who patch this out should be aware that mpv
429
        // Distro maintainers who patch this out should be aware that mpv
430
        // intentionally ignores ABI in some places where it's not possible to
430
        // intentionally ignores ABI in some places where it's not possible to
431
        // get by without violating it.
431
        // get by without violating it.
432
        print_libav_versions(mpctx->log, MSGL_FATAL);
432
        print_libav_versions(mpctx->log, MSGL_WARN);
433
        MP_FATAL(mpctx, "\nmpv was compiled against a different version of "
433
        MP_WARN(mpctx, "\nmpv was compiled against a different version of "
434
                 "FFmpeg/Libav than the shared\nlibrary it is linked against. "
434
                 "FFmpeg/Libav than the shared\nlibrary it is linked against. "
435
                 "This is most likely a broken build and could\nresult in "
435
                 "This could result in misbehavior and crashes.\n\n"
436
                 "misbehavior and crashes.\n\nmpv does not support this "
436
                 "Upstream does not support this configuration.\n"                                                                                                                                  
437
                 "configuration and will not run - rebuild mpv instead.\n");
437
                 "Please rebuild mpv in case of any problems.\n");
438
        return -1;
439
    }
438
    }
440
439
441
    if (!mpctx->playlist->first && !opts->player_idle_mode)
440
    if (!mpctx->playlist->first && !opts->player_idle_mode)

Return to bug 649908