libvmaf-sys 0.4.4

Library bindings for Netflix's VMAF
Documentation
compat_cflags = []
if cc.has_function('strsep')
  compat_cflags += '-DHAVE_STRSEP'
endif

vmafossexec = executable(
    'vmafossexec',
    [src_dir + 'main.cpp', src_dir + 'read_frame.c'],
    include_directories : libvmaf_inc,
    dependencies: [stdatomic_dependency],
    c_args : vmaf_cflags_common,
    cpp_args : vmaf_cflags_common,
    link_with : get_option('default_library') == 'both' ? libvmaf.get_static_lib() : libvmaf,
    install : false,
)

vmaf = executable(
    'vmaf',
    ['vmaf.c', 'cli_parse.c', 'y4m_input.c', 'vidinput.c', 'yuv_input.c'],
    include_directories : [libvmaf_inc, vmaf_include],
    dependencies: [stdatomic_dependency],
    c_args : [vmaf_cflags_common, compat_cflags],
    link_with : get_option('default_library') == 'both' ? libvmaf.get_static_lib() : libvmaf,
    install : true,
)