GNOME Bugzilla – Bug 747935
vaapisink: use the GstVideoSink vmethod show_frame()
Last modified: 2015-04-16 09:47:15 UTC
Don't use the GstBaseSink vmethods render() and preroll(), but show_frame() in GstVideoSink
Created attachment 301661 [details] [review] vaapisink: use the GstVideoSink vmethod show_frame() vaapisink inherits from GstVideoSink, in order to use its functionality (such as ::show-preroll-frame property), we should use its vmethod show_frame(), rather than call ourselves render() and preroll().
commit 504fdedf84cc356d002539abac0b263363c9d4a8 Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com> Date: Wed Apr 15 17:26:43 2015 +0200 vaapisink: use GstVideoSink vmethod show_frame() vaapisink inherits from GstVideoSink, in order to use its functionality (such as ::show-preroll-frame property), we should use its vmethod show_frame(), rather than call ourselves render() and preroll().