diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-09-29 17:32:27 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-09-29 17:32:27 +0200 |
commit | b52740af4eb2c9c0990ab68a4fdeb6c7158c4243 (patch) | |
tree | 8261f471dec7819a825c8c61ea9c5fac49db9c54 /spuencoder.c | |
parent | 7c72b9e0153970aa01416639942c988c4cf50429 (diff) | |
download | vdr-plugin-dxr3-b52740af4eb2c9c0990ab68a4fdeb6c7158c4243.tar.gz vdr-plugin-dxr3-b52740af4eb2c9c0990ab68a4fdeb6c7158c4243.tar.bz2 |
clean up some syslog messages
Diffstat (limited to 'spuencoder.c')
-rw-r--r-- | spuencoder.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/spuencoder.c b/spuencoder.c index 778d75f..1ddb186 100644 --- a/spuencoder.c +++ b/spuencoder.c @@ -173,7 +173,7 @@ void cSpuEncoder::writeColorAndAlpha(sSection *sec, bool withCMD) void cSpuEncoder::writeRegionInformation() { - dsyslog("writting region definitions"); + dsyslog("[dxr3-spuencoder] writting region definitions"); spu[written++] = CMD_CHG_COLCON; @@ -221,7 +221,6 @@ void cSpuEncoder::writeRegionInformation() // update size of 0x07 command int32_t s = written - size_fill - 1; - dsyslog("size of 07 command %d", s); spu[size_fill++] = s >> 8; spu[size_fill++] = s & 0xff; @@ -296,7 +295,7 @@ void cSpuEncoder::generateSpuData(bool topAndBottom) throw (char const* ) uint32_t right = left + bitmap->Width() - 1; uint32_t bottom = top + bitmap->Height() - 1; - dsyslog("top %d left %d", top, left); + dsyslog("[dxr3-spuencoder] top %d left %d", top, left); spu[written++] = CMD_SET_DISPLAYAREA; spu[written++] = left >> 4; @@ -374,7 +373,6 @@ void cSpuEncoder::calculateRegions() // section into a well defined state reg->section(reg->openSections() - 1)->endColumn = x; - dsyslog("new sectoin %d %d", y, x); // add a new section if (!reg->newSection()) { // TODO: what now? @@ -419,7 +417,6 @@ void cSpuEncoder::calculateRegions() } doneLoop = true; - dsyslog("loop done - color %d not found", idx); } } } @@ -434,7 +431,6 @@ void cSpuEncoder::calculateRegions() } } - dsyslog("endLine %d", endLine); reg->endLine = endLine; // in the last step we need to map old index values |