mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
lavc/dvbsub: Add the missing line separator to dvb_encode_rle8().
Fixes 256-colour dvb subtitle encoding. Fixes ticket #6769.
This commit is contained in:
parent
df95f145be
commit
6e16547685
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user