Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 635650
Collapse All | Expand All

(-)a/wscript (-13 / +13 lines)
Lines 426-445 Link Here
426
]
426
]
427
ffmpeg_pkg_config_checks = [
427
ffmpeg_pkg_config_checks = [
428
    'libavutil',     '>= 56.0.100',
428
    'libavutil',     '>= 1.0.100',
429
    'libavcodec',    '>= 58.2.100',
429
    'libavcodec',    '>= 1.2.100',
430
    'libavformat',   '>= 58.0.102',
430
    'libavformat',   '>= 1.0.102',
431
    'libswscale',    '>= 5.0.101',
431
    'libswscale',    '>= 1.0.101',
432
    'libavfilter',   '>= 7.0.101',
432
    'libavfilter',   '>= 1.0.101',
433
    'libswresample', '>= 3.0.100',
433
    'libswresample', '>= 1.0.100',
434
]
434
]
435
libav_pkg_config_checks = [
435
libav_pkg_config_checks = [
436
    'libavutil',     '>= 56.6.0',
436
    'libavutil',     '>= 1.6.0',
437
    'libavcodec',    '>= 58.5.0',
437
    'libavcodec',    '>= 1.5.0',
438
    'libavformat',   '>= 58.1.0',
438
    'libavformat',   '>= 1.1.0',
439
    'libswscale',    '>= 5.0.0',
439
    'libswscale',    '>= 1.0.0',
440
    'libavfilter',   '>= 7.0.0',
440
    'libavfilter',   '>= 1.0.0',
441
    'libavresample', '>= 4.0.0',
441
    'libavresample', '>= 1.0.0',
442
]
442
]
443
def check_ffmpeg_or_libav_versions():
443
def check_ffmpeg_or_libav_versions():
Lines 460-466 Link Here
460
    }, {
460
    }, {
461
        'name': 'ffmpeg_mpv',
461
        'name': 'ffmpeg_mpv',
462
        'desc': 'libav* is FFmpeg mpv modified version',
462
        'desc': 'libav* is FFmpeg mpv modified version',
463
        'func': check_statement('libavcodec/version.h',
463
        'func': check_statement('/usr/lib/ffmpeg-mpv/include/libavcodec/version.h',
464
                                'int x[LIBAVCODEC_MPV ? 1 : -1]',
464
                                'int x[LIBAVCODEC_MPV ? 1 : -1]',
465
                                use='libavcodec')
465
                                use='libavcodec')
466
    }, {
466
    }, {

Return to bug 635650