Commit ff619dd6 authored by Sam Hocevar's avatar Sam Hocevar

  * ./plugins/lirc/lirc.c: fixed my mistakes from yesterday.
parent 232fd7bb
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* lirc.c : lirc plugin for vlc * lirc.c : lirc plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: lirc.c,v 1.4 2002/02/19 03:54:55 sam Exp $ * $Id: lirc.c,v 1.5 2002/02/20 01:47:01 sam Exp $
* *
* Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
* *
...@@ -140,15 +140,20 @@ static void intf_Run( intf_thread_t *p_intf ) ...@@ -140,15 +140,20 @@ static void intf_Run( intf_thread_t *p_intf )
char *code; char *code;
char *c; char *c;
/* Manage core vlc functions through the callback */
p_intf->pf_manage( p_intf );
while( !p_intf->b_die && lirc_nextcode(&code) == 0 ) while( !p_intf->b_die && lirc_nextcode(&code) == 0 )
{ {
printf("code\n");
if( code == NULL ) if( code == NULL )
{ {
continue; continue;
} }
while( !p_intf->b_die && c != NULL while( !p_intf->b_die
&& lirc_code2char( p_intf->p_sys->config, code, &c ) == 0 ) && lirc_code2char( p_intf->p_sys->config, code, &c ) == 0
&& c != NULL )
{ {
if( !strcmp( c, "QUIT" ) ) if( !strcmp( c, "QUIT" ) )
{ {
...@@ -265,5 +270,6 @@ static void intf_Run( intf_thread_t *p_intf ) ...@@ -265,5 +270,6 @@ static void intf_Run( intf_thread_t *p_intf )
/* Manage core vlc functions through the callback */ /* Manage core vlc functions through the callback */
p_intf->pf_manage( p_intf ); p_intf->pf_manage( p_intf );
} }
printf("end of intf\n");
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment