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

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


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

caca: actually use the event thread

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

 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