Hello,
lign 105 of dvbsubtitle.c is : bool Decode8BppCodeString(const uchar *Data, int &Index, int&y, int y); shouldn't that be : bool Decode8BppCodeString(const uchar *Data, int &Index, int&x, int y);
Or better all 3 advanced declarations ligns :
bool Decode2BppCodeString(const uchar *, int &, int&, int); bool Decode4BppCodeString(const uchar *, int &, int&, int); bool Decode8BppCodeString(const uchar *, int &, int&, int);
At least with gcc 4.3alpha of today I can't compil vdr-1.5.1x with this.