[FFmpeg-devel] [PATCH] dvbsubdec: fix division by zero in compute_default_clut
Michael Niedermayer
michael at niedermayer.cc
Wed Nov 9 03:27:53 EET 2016
On Tue, Nov 08, 2016 at 10:36:01PM +0100, Andreas Cadhalpun wrote:
> Since the loop goes down to i = 0 the number of iterations (variable
> count) is the original i, not i - 1.
> In the case of i originally being 1, this miscalculation resulted in
> a division by zero.
>
> This problem was introduced in commit
> 4b90dcb8493552c17a811c8b1e6538dae4061f9d.
>
> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>
> ---
> libavcodec/dvbsubdec.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c
> index e9f4765..31898ea 100644
> --- a/libavcodec/dvbsubdec.c
> +++ b/libavcodec/dvbsubdec.c
> @@ -810,7 +810,7 @@ static void compute_default_clut(AVSubtitleRect *rect, int w, int h)
> list_inv[ i ] = bestv;
> }
>
> - count = i - 1;
> + count = i;
> for (i--; i>=0; i--) {
> int v = i*255/count;
> AV_WN32(rect->data[1] + 4*list_inv[i], RGBA(v/2,v,v/2,v));
with this a 2 color text would be 50% and 100% transparent
it should be transparent background and opaque text,
count = FFMAX(i - 1, 1);
seems better to me
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Those who are too smart to engage in politics are punished by being
governed by those who are dumber. -- Plato
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20161109/0d224eeb/attachment.sig>
More information about the ffmpeg-devel
mailing list