libtriple: make most of libtriple use lt_debug

This commit is contained in:
Stefan Seyfried
2010-08-08 14:16:37 +02:00
parent 73b886a702
commit 8542cd14aa
3 changed files with 22 additions and 20 deletions

View File

@@ -8,6 +8,7 @@
#include <hardware/tddevices.h> #include <hardware/tddevices.h>
#define AUDIO_DEVICE "/dev/" DEVICE_NAME_AUDIO #define AUDIO_DEVICE "/dev/" DEVICE_NAME_AUDIO
#include "audio_td.h" #include "audio_td.h"
#include "lt_debug.h"
cAudio * audioDecoder = NULL; cAudio * audioDecoder = NULL;
@@ -124,7 +125,7 @@ bool cAudio::Pause(bool /*Pcm*/)
void cAudio::SetSyncMode(AVSYNC_TYPE /*Mode*/) void cAudio::SetSyncMode(AVSYNC_TYPE /*Mode*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
}; };
void cAudio::SetStreamType(AUDIO_FORMAT type) void cAudio::SetStreamType(AUDIO_FORMAT type)
@@ -147,25 +148,25 @@ void cAudio::SetStreamType(AUDIO_FORMAT type)
int cAudio::setChannel(int /*channel*/) int cAudio::setChannel(int /*channel*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
return 0; return 0;
}; };
int cAudio::PrepareClipPlay(int /*uNoOfChannels*/, int /*uSampleRate*/, int /*uBitsPerSample*/, int /*bLittleEndian*/) int cAudio::PrepareClipPlay(int /*uNoOfChannels*/, int /*uSampleRate*/, int /*uBitsPerSample*/, int /*bLittleEndian*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
return 0; return 0;
}; };
int cAudio::WriteClip(unsigned char * /*buffer*/, int /*size*/) int cAudio::WriteClip(unsigned char * /*buffer*/, int /*size*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
return 0; return 0;
}; };
int cAudio::StopClip() int cAudio::StopClip()
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
return 0; return 0;
}; };
@@ -213,22 +214,22 @@ void cAudio::getAudioInfo(int &type, int &layer, int &freq, int &bitrate, int &m
void cAudio::SetSRS(int /*iq_enable*/, int /*nmgr_enable*/, int /*iq_mode*/, int /*iq_level*/) void cAudio::SetSRS(int /*iq_enable*/, int /*nmgr_enable*/, int /*iq_mode*/, int /*iq_level*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
}; };
void cAudio::SetSpdifDD(bool /*enable*/) void cAudio::SetSpdifDD(bool /*enable*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
}; };
void cAudio::ScheduleMute(bool /*On*/) void cAudio::ScheduleMute(bool /*On*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
}; };
void cAudio::EnableAnalogOut(bool /*enable*/) void cAudio::EnableAnalogOut(bool /*enable*/)
{ {
fprintf(stderr, "cAudio::%s\n", __FUNCTION__); lt_debug("cAudio::%s\n", __FUNCTION__);
}; };
void cAudio::setBypassMode(bool disable) void cAudio::setBypassMode(bool disable)

View File

@@ -48,7 +48,7 @@ cDemux::cDemux(int n)
cDemux::~cDemux() cDemux::~cDemux()
{ {
fprintf(stderr, "cDemux::%s #%d fd: %d\n", __FUNCTION__, num, fd); lt_debug("cDemux::%s #%d fd: %d\n", __FUNCTION__, num, fd);
Close(); Close();
} }
@@ -102,7 +102,7 @@ void cDemux::Close(void)
for (std::vector<int>::const_iterator i = pesfds.begin(); i != pesfds.end(); ++i) for (std::vector<int>::const_iterator i = pesfds.begin(); i != pesfds.end(); ++i)
{ {
fprintf(stderr, "iterator: stopping and closing demux fd %d\n", *i); lt_debug("cDemux::Close: stopping and closing demux fd %d\n", *i);
if (ioctl(*i, DEMUX_STOP) < 0) if (ioctl(*i, DEMUX_STOP) < 0)
perror("DEMUX_STOP"); perror("DEMUX_STOP");
if (close(*i) < 0) if (close(*i) < 0)
@@ -124,7 +124,7 @@ bool cDemux::Start(void)
for (std::vector<int>::const_iterator i = pesfds.begin(); i != pesfds.end(); ++i) for (std::vector<int>::const_iterator i = pesfds.begin(); i != pesfds.end(); ++i)
{ {
fprintf(stderr, "iterator: starting demux fd %d\n", *i); lt_debug("cDemux::Start: starting demux fd %d\n", *i);
if (ioctl(*i, DEMUX_START) < 0) if (ioctl(*i, DEMUX_START) < 0)
perror("DEMUX_START"); perror("DEMUX_START");
} }
@@ -141,7 +141,7 @@ bool cDemux::Stop(void)
} }
for (std::vector<int>::const_iterator i = pesfds.begin(); i != pesfds.end(); ++i) for (std::vector<int>::const_iterator i = pesfds.begin(); i != pesfds.end(); ++i)
{ {
fprintf(stderr, "iterator: stopping demux fd %d\n", *i); lt_debug("cDemux::Stop: stopping demux fd %d\n", *i);
if (ioctl(*i, DEMUX_STOP) < 0) if (ioctl(*i, DEMUX_STOP) < 0)
perror("DEMUX_STOP"); perror("DEMUX_STOP");
} }
@@ -325,7 +325,7 @@ bool cDemux::pesFilter(const unsigned short pid)
if ((pid >= 0x0002 && pid <= 0x000f) || pid >= 0x1fff) if ((pid >= 0x0002 && pid <= 0x000f) || pid >= 0x1fff)
return false; return false;
fprintf(stderr, "cDemux::%s #%d pid: 0x%04hx fd: %d type: %s\n", __FUNCTION__, num, pid, fd, DMX_T[dmx_type]); lt_debug("cDemux::%s #%d pid: 0x%04hx fd: %d type: %s\n", __FUNCTION__, num, pid, fd, DMX_T[dmx_type]);
if (dmx_type == DMX_TP_CHANNEL) if (dmx_type == DMX_TP_CHANNEL)
{ {
@@ -360,18 +360,18 @@ fprintf(stderr, "cDemux::%s #%d pid: 0x%04hx fd: %d type: %s\n", __FUNCTION__, n
void cDemux::SetSyncMode(AVSYNC_TYPE /*mode*/) void cDemux::SetSyncMode(AVSYNC_TYPE /*mode*/)
{ {
fprintf(stderr, "cDemux::%s #%d\n", __FUNCTION__, num); lt_debug("cDemux::%s #%d\n", __FUNCTION__, num);
} }
void *cDemux::getBuffer() void *cDemux::getBuffer()
{ {
fprintf(stderr, "cDemux::%s #%d\n", __FUNCTION__, num); lt_debug("cDemux::%s #%d\n", __FUNCTION__, num);
return NULL; return NULL;
} }
void *cDemux::getChannel() void *cDemux::getChannel()
{ {
fprintf(stderr, "cDemux::%s #%d\n", __FUNCTION__, num); lt_debug("cDemux::%s #%d\n", __FUNCTION__, num);
return NULL; return NULL;
} }
@@ -393,7 +393,7 @@ void cDemux::addPid(unsigned short Pid)
fprintf(stderr, "cDemux::%s #%d Pid = %hx open failed (%m)\n", __FUNCTION__, num, Pid); fprintf(stderr, "cDemux::%s #%d Pid = %hx open failed (%m)\n", __FUNCTION__, num, Pid);
return; return;
} }
fprintf(stderr, "cDemux::%s #%d Pid = %hx pfd = %d\n", __FUNCTION__, num, Pid, pfd); lt_debug("cDemux::%s #%d Pid = %hx pfd = %d\n", __FUNCTION__, num, Pid, pfd);
p.pid = Pid; p.pid = Pid;
p.pesType = DMX_PES_OTHER; p.pesType = DMX_PES_OTHER;

View File

@@ -39,6 +39,7 @@
#include "video_td.h" #include "video_td.h"
#include <hardware/tddevices.h> #include <hardware/tddevices.h>
#define VIDEO_DEVICE "/dev/" DEVICE_NAME_VIDEO #define VIDEO_DEVICE "/dev/" DEVICE_NAME_VIDEO
#include "lt_debug.h"
cVideo * videoDecoder = NULL; cVideo * videoDecoder = NULL;
int system_rev = 0; int system_rev = 0;
@@ -458,7 +459,7 @@ void cVideo::Standby(unsigned int bOn)
int cVideo::getBlank(void) int cVideo::getBlank(void)
{ {
fprintf(stderr, "cVideo::getBlank\n"); lt_debug("cVideo::getBlank\n");
return 0; return 0;
} }
@@ -586,7 +587,7 @@ void cVideo::getPictureInfo(int &width, int &height, int &rate)
void cVideo::SetSyncMode(AVSYNC_TYPE /*Mode*/) void cVideo::SetSyncMode(AVSYNC_TYPE /*Mode*/)
{ {
fprintf(stderr, "cVideo::%s\n", __FUNCTION__); lt_debug("cVideo::%s\n", __FUNCTION__);
}; };
int cVideo::SetStreamType(VIDEO_FORMAT type) int cVideo::SetStreamType(VIDEO_FORMAT type)