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
------------------
Branch: ni/coolstream
Commit: 1b13da2617
Author: mws <mws@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2009-12-21 (Mon, 21 Dec 2009)



------------------
This commit was generated by Migit
This commit is contained in:
mws
2009-12-21 16:23:09 +00:00
parent c170382c16
commit 5febb97a76
87 changed files with 1685 additions and 1684 deletions

View File

@@ -6,7 +6,7 @@ Debug::Debug() :
file_(const_cast<char *>("")), level_(0), fp_(stdout)
{
}
Debug::~Debug()
{
if (fp_ && fp_ != stdout) {
@@ -29,7 +29,7 @@ FILE* Debug::set_file(char* file)
return fp_;
}
void Debug::print(int level, const char *fmt, ...)
void Debug::print(int /*level*/, const char *fmt, ...)
{
va_list argp;
va_start(argp, fmt);

View File

@@ -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;

View File

@@ -78,7 +78,7 @@ private:
public:
cListObject(void);
virtual ~cListObject();
virtual int Compare(const cListObject &ListObject) const { return 0; }
virtual int Compare(const cListObject /*&ListObject*/) const { return 0; }
///< Must return 0 if this object is equal to ListObject, a positive value
///< if it is "greater", and a negative value if it is "smaller".
void Append(cListObject *Object);