rcinput: remove unused/unimplemented click functions

This commit is contained in:
Stefan Seyfried
2017-02-20 20:36:45 +01:00
committed by M. Liebmann
parent dceb6989a8
commit f45456d7a8
6 changed files with 0 additions and 40 deletions

View File

@@ -90,7 +90,6 @@ void* CAudioPlayer::PlayThread( void* /*dummy*/ )
{
int soundfd = -1;
set_threadname("audio:play");
g_RCInput->close_click();
/* Decode stdin to stdout. */
CBaseDec::RetCode Status =
CBaseDec::DecoderBase( &getInstance()->m_Audiofile, soundfd,
@@ -109,8 +108,6 @@ void* CAudioPlayer::PlayThread( void* /*dummy*/ )
"unknown" );
}
g_RCInput->open_click();
getInstance()->state = CBaseDec::STOP;
pthread_exit(0);
return NULL;