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

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


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

caca: actually use the event thread

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

 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..a4442ce636 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(sys->et, vlc);
                     return;
                 }
             }
             if (caca >= 0x20 && caca <= 0x7f) {
-                vout_display_SendEventKey(vd, caca);
+                VoutDisplayEventKey(sys->et, caca);
                 return;
             }
             break;



More information about the vlc-commits mailing list