diff options
author | scop <scop> | 2005-03-30 20:18:13 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-30 20:18:13 +0000 |
commit | 834a1f9149972dbf0246a5c3f2a63a15262c190b (patch) | |
tree | c38519d6cc528a57f05a59d6716411c4af3334e5 | |
parent | 580bec6770b337002a931b2e0af2a2b557b3b720 (diff) | |
download | vdr-plugin-dxr3-834a1f9149972dbf0246a5c3f2a63a15262c190b.tar.gz vdr-plugin-dxr3-834a1f9149972dbf0246a5c3f2a63a15262c190b.tar.bz2 |
Comment/log message typo fixes.
-rw-r--r-- | dxr3interface_spu_encoder.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dxr3interface_spu_encoder.c b/dxr3interface_spu_encoder.c index 9b8e2ca..fc01dc7 100644 --- a/dxr3interface_spu_encoder.c +++ b/dxr3interface_spu_encoder.c @@ -382,13 +382,13 @@ int cSPUEncoder::Cmd(OSD_Command cmd, int color, int x0, int y0, int x1, int y1, } else { - cLog::Instance() << "Waring: SPU data (" << m_encodeddata.count << ") size exceeds limit\n"; + cLog::Instance() << "Warning: SPU data (" << m_encodeddata.count << ") size exceeds limit\n"; return -1; } break; case OSD_Close: - // clear colors from plattemanager + // clear colors from palettemanager #if VDRVERSNUM >= 10307 if ((col = (tColor*)m_windows[m_lastwindow].colors) != NULL) @@ -436,7 +436,7 @@ int cSPUEncoder::Cmd(OSD_Command cmd, int color, int x0, int y0, int x1, int y1, } else { - cLog::Instance() << "Waring: SPU data (" << m_encodeddata.count << ") size exceeds limit\n"; + cLog::Instance() << "Warning: SPU data (" << m_encodeddata.count << ") size exceeds limit\n"; return -1; } @@ -444,7 +444,7 @@ int cSPUEncoder::Cmd(OSD_Command cmd, int color, int x0, int y0, int x1, int y1, break; case OSD_Clear: - // Sets all pixel to color 0 + // Sets all pixels to color 0 // returns 0 on success // This should be done in cSPUEncoder::cSPUEncoder |