mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
Mark unused vars as comment
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@104 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Commit: 1b13da2617
Author: mws <mws@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2009-12-21 (Mon, 21 Dec 2009)
This commit is contained in:
@@ -149,7 +149,7 @@ int dvbsub_close()
|
||||
|
||||
static cDemux * dmx;
|
||||
|
||||
void* reader_thread(void *arg)
|
||||
void* reader_thread(void */*arg*/)
|
||||
{
|
||||
uint8_t tmp[16]; /* actually 6 should be enough */
|
||||
int count;
|
||||
@@ -203,7 +203,7 @@ void* reader_thread(void *arg)
|
||||
count += len;
|
||||
tosync += len;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
tmp[0] = tmp[1];
|
||||
tmp[1] = tmp[2];
|
||||
count = 2;
|
||||
@@ -222,7 +222,7 @@ void* reader_thread(void *arg)
|
||||
}
|
||||
}
|
||||
|
||||
packlen = getbits(tmp, 4*8, 16) + 6;
|
||||
packlen = getbits(tmp, 4*8, 16) + 6;
|
||||
|
||||
buf = new uint8_t[packlen];
|
||||
|
||||
@@ -265,7 +265,7 @@ void* reader_thread(void *arg)
|
||||
pthread_exit(NULL);
|
||||
}
|
||||
|
||||
void* dvbsub_thread(void* arg)
|
||||
void* dvbsub_thread(void* /*arg*/)
|
||||
{
|
||||
struct timespec restartWait;
|
||||
struct timeval now;
|
||||
|
Reference in New Issue
Block a user