[vlc-devel] [PATCH] add controls tweaking modules

Francois Cartegnie fcvlcdev at free.fr
Fri Jul 17 21:24:27 CEST 2015


Le 17/07/2015 21:18, Francois Cartegnie a écrit :
> +static int Open( vlc_object_t *p_object )
> +{

Won't repost but variables reading is missing.

    p_sys->b_seek = var_InheritBool( p_stream, "seek" );
    p_sys->b_fastseek = var_InheritBool( p_stream, "fastseek" );

> +    p_stream->pf_read = Read;
> +    p_stream->pf_peek = Peek;
> +    p_stream->pf_control = Control;
> +
> +    return VLC_SUCCESS;
> +}




More information about the vlc-devel mailing list