mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-18 11:52:08 +01:00
Code cleanup
This commit is contained in:
parent
a4449897a7
commit
68f1f1fc3f
@ -60,9 +60,8 @@ private:
|
|||||||
struct Context
|
struct Context
|
||||||
{
|
{
|
||||||
Context(quint16 width, quint16 range)
|
Context(quint16 width, quint16 range)
|
||||||
|
: data(QVector<quint16>((width + 3) * 2)), w(width)
|
||||||
{
|
{
|
||||||
w = width;
|
|
||||||
data = QVector<quint16>((w + 3) * 2);
|
|
||||||
last = data.data();
|
last = data.data();
|
||||||
current = data.data() + (w + 3);
|
current = data.data() + (w + 3);
|
||||||
|
|
||||||
@ -79,18 +78,17 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
quint8 runIndex;
|
QVector<quint16> data;
|
||||||
quint8 rk;
|
quint16 *current;
|
||||||
|
quint16 *last;
|
||||||
|
quint16 w;
|
||||||
quint16 rg;
|
quint16 rg;
|
||||||
quint16 n[4];
|
quint16 n[4];
|
||||||
quint16 a[4];
|
quint16 a[4];
|
||||||
qint16 b[4];
|
qint16 b[4];
|
||||||
|
quint8 runIndex;
|
||||||
|
quint8 rk;
|
||||||
quint8 lrk;
|
quint8 lrk;
|
||||||
|
|
||||||
quint16 w;
|
|
||||||
QVector<quint16> data;
|
|
||||||
quint16 *current;
|
|
||||||
quint16 *last;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
bool readLine(BitStream &bs, Context &ctx) const;
|
bool readLine(BitStream &bs, Context &ctx) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user