[vlc-commits] caca: actually use the event thread

Rémi Denis-Courmont git at videolan.org
Fri Feb 2 16:02:53 CET 2018


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Feb  2 16:53:06 2018 +0200| [5df29c87cda78b84406c83e11e9e03c05c5d20e9] | committer: Thomas Guillem

caca: actually use the event thread

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5df29c87cda78b84406c83e11e9e03c05c5d20e9
---

 modules/video_output/caca.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/video_output/caca.c b/modules/video_output/caca.c
index 33a0409820..3fe1da41a7 100644
--- a/modules/video_output/caca.c
+++ b/modules/video_output/caca.c
@@ -485,12 +485,12 @@ static void Manage(vout_display_t *vd)
                     const int vlc = keys[i].vlc;
 
                     if (vlc >= 0)
-                        vout_display_SendEventKey(vd, vlc);
+                        VoutDisplayEventKey(vd, vlc);
                     return;
                 }
             }
             if (caca >= 0x20 && caca <= 0x7f) {
-                vout_display_SendEventKey(vd, caca);
+                VoutDisplayEventKey(vd, caca);
                 return;
             }
             break;



More information about the vlc-commits mailing list