#11606: avcodec/dvbsubenc: Broken dvb_encode_rle8
---------------------------------+---------------------------------------
Reporter: pbk | Type: defect
Status: new | Priority: normal
Component: avcodec | Version: unspecified
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
---------------------------------+---------------------------------------
The rle8 encoding (256 color table) is corrupted.
The end of 8-bit/pixel_code_string shall be 2 zeroes (not one):
Current code:
*q++ = 0x00;
*q++ = 0xf0;
Correct code:
*q++ = 0x00;
*q++ = 0x00;
*q++ = 0xf0;
--
Ticket URL: <https://trac.ffmpeg.org/ticket/11606>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
_______________________________________________
FFmpeg-trac mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-trac
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".