vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | Wed Oct 17 17:20:57 2018 +0200| [a7f23c5bc4426eec4c91685eb5fee3b202f4a56e] | committer: Hugo Beauzée-Luyssen
input: Don't pace input when thumbnailing > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a7f23c5bc4426eec4c91685eb5fee3b202f4a56e --- src/input/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input.c b/src/input/input.c index 6999d75eb5..3f173a9b36 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -360,7 +360,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, TAB_INIT( priv->i_attachment, priv->attachment ); priv->attachment_demux = NULL; priv->p_sout = NULL; - priv->b_out_pace_control = false; + priv->b_out_pace_control = b_thumbnailing; priv->p_renderer = p_renderer && b_preparsing == false ? vlc_renderer_item_hold( p_renderer ) : NULL; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
