1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/dvbsubenc: fix end of 8-bit/pixel-code-string

Fixes ticket #11606.

Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Marton Balint
2025-08-02 22:51:19 +02:00
parent 3e859d933e
commit 74f470c05c

View File

@ -258,7 +258,8 @@ static int dvb_encode_rle8(uint8_t **pq, int buf_size,
x += len;
}
/* end of line */
// 00000000 end of 8-bit/pixel_code_string
// 00000000 00000000 end of 8-bit/pixel_code_string
*q++ = 0x00;
*q++ = 0x00;
*q++ = 0xf0;
bitmap += linesize;