diff options
Diffstat (limited to 'frontend.c')
-rw-r--r-- | frontend.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend.c,v 1.98 2012-03-17 19:59:04 phintuka Exp $ + * $Id: frontend.c,v 1.99 2012-03-17 20:19:27 phintuka Exp $ * */ @@ -235,10 +235,12 @@ void cXinelibThread::InfoHandler(const char *info) free(pmap); } -cXinelibThread::cXinelibThread(const char *Description) : cThread(Description) +cXinelibThread::cXinelibThread(cXinelibDevice *Dev, const char *Description) : cThread(Description) { TRACEF("cXinelibThread::cXinelibThread"); + m_Dev = Dev; + m_Volume = 255; m_bReady = false; m_bNoVideo = true; |