Function ffurl_open_whitelist

Source
pub unsafe extern "C" fn ffurl_open_whitelist(
    puc: *mut *mut URLContext,
    filename: *const c_char,
    flags: c_int,
    int_cb: *const AVIOInterruptCB,
    options: *mut *mut AVDictionary,
    whitelist: *const c_char,
    blacklist: *const c_char,
    parent: *mut URLContext,
) -> c_int
Expand description

Create an URLContext for accessing to the resource indicated by url, and open it.

@param puc pointer to the location where, in case of success, the function puts the pointer to the created URLContext @param flags flags which control how the resource indicated by url is to be opened @param int_cb interrupt callback to use for the URLContext, may be NULL @param options A dictionary filled with protocol-private options. On return this parameter will be destroyed and replaced with a dict containing options that were not found. May be NULL. @param parent An enclosing URLContext, whose generic options should be applied to this URLContext as well. @return >= 0 in case of success, a negative value corresponding to an AVERROR code in case of failure