summaryrefslogtreecommitdiff
path: root/dvbsubtitle.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-11-25 13:35:08 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2007-11-25 13:35:08 +0100
commita97119d0b44b52b098de0aa4a4f38939bc4bba9b (patch)
tree56b5d2bcb3f98887998bd98ed8c367c57e1c3f4a /dvbsubtitle.c
parent4227b6f082b61670002af309caca7a654c211475 (diff)
downloadvdr-a97119d0b44b52b098de0aa4a4f38939bc4bba9b.tar.gz
vdr-a97119d0b44b52b098de0aa4a4f38939bc4bba9b.tar.bz2
Fixed the declaration of cSubtitleObject::Decode8BppCodeString()
Diffstat (limited to 'dvbsubtitle.c')
-rw-r--r--dvbsubtitle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbsubtitle.c b/dvbsubtitle.c
index e8455942..16a02c69 100644
--- a/dvbsubtitle.c
+++ b/dvbsubtitle.c
@@ -7,7 +7,7 @@
* Original author: Marco Schlüßler <marco@lordzodiac.de>
* With some input from the "subtitle plugin" by Pekka Virtanen <pekka.virtanen@sci.fi>
*
- * $Id: dvbsubtitle.c 1.2 2007/11/03 14:36:07 kls Exp $
+ * $Id: dvbsubtitle.c 1.3 2007/11/25 13:33:08 kls Exp $
*/
#include "dvbsubtitle.h"
@@ -102,7 +102,7 @@ private:
uchar Get4Bits(const uchar *Data, int &Index);
bool Decode2BppCodeString(const uchar *Data, int &Index, int&x, int y);
bool Decode4BppCodeString(const uchar *Data, int &Index, int&x, int y);
- bool Decode8BppCodeString(const uchar *Data, int &Index, int&y, int y);
+ bool Decode8BppCodeString(const uchar *Data, int &Index, int&x, int y);
public:
cSubtitleObject(int ObjectId, cBitmap *Bitmap);
int ObjectId(void) { return objectId; }