美文网首页
VLC 调用MODULE

VLC 调用MODULE

作者: hello_math | 来源:发表于2015-07-17 17:04 被阅读82次

    module_need(vlc_object_t *obj, const char *cap, const char *name,

    bool strict)

    ->vlc_module_load(obj, cap, name, strict, generic_start, obj);

    ->ssize_t total = module_list_cap (&mods, capability);

    example:     core scale: looking for video filter2 module matching "any": 36 candidates

    cap=video filter2,name=any,total=36

    module_list_cap:bank.c

    The list is sorted from the highest module score to the lowest.

    ->module_load 

    set_capability 设置score

    相关文章

      网友评论

          本文标题:VLC 调用MODULE

          本文链接:https://www.haomeiwen.com/subject/tjkpqttx.html