Commit f1c69546 authored by Paul B Mahol's avatar Paul B Mahol Committed by Michael Niedermayer

dvbsub: remove unused variable

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 53c89677
......@@ -199,7 +199,7 @@ static void dvb_encode_rle8(uint8_t **pq,
int w, int h)
{
uint8_t *q;
int x, y, len, x1, f, color;
int x, y, len, x1, color;
q = *pq;
......@@ -207,7 +207,6 @@ static void dvb_encode_rle8(uint8_t **pq,
*q++ = 0x12;
x = 0;
f = 0;
while (x < w) {
x1 = x;
color = bitmap[x1++];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment