Commit 6e165476 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavc/dvbsub: Add the missing line separator to dvb_encode_rle8().

Fixes 256-colour dvb subtitle encoding.

Fixes ticket #6769.
parent df95f145
......@@ -239,9 +239,9 @@ static void dvb_encode_rle8(uint8_t **pq,
x += len;
}
/* end of line */
// 00000000 00000000 end of 8-bit/pixel_code_string
*q++ = 0x00;
// 00000000 end of 8-bit/pixel_code_string
*q++ = 0x00;
*q++ = 0xf0;
bitmap += linesize;
}
*pq = q;
......
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