Mercurial > libavcodec.hg
changeset 8478:2f7c09bb6bfb libavcodec
Factorize "avctx->width + 2" out to avoid someone mistakenly changing
some but not all.
author | michael |
---|---|
date | Fri, 26 Dec 2008 16:38:55 +0000 |
parents | 5f85d21a70b2 |
children | e818b3c06712 |
files | faxcompr.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/faxcompr.c Fri Dec 26 16:30:50 2008 +0000 +++ b/faxcompr.c Fri Dec 26 16:38:55 2008 +0000 @@ -280,15 +280,16 @@ GetBitContext gb; int *runs, *ref, *runend; int ret; + int runsize= avctx->width + 2; - runs = av_malloc((avctx->width + 2) * sizeof(runs[0])); - ref = av_malloc((avctx->width + 2) * sizeof(ref[0])); + runs = av_malloc(runsize * sizeof(runs[0])); + ref = av_malloc(runsize * sizeof(ref[0])); ref[0] = avctx->width; ref[1] = 0; ref[2] = 0; init_get_bits(&gb, src, srcsize*8); for(j = 0; j < height; j++){ - runend = runs + avctx->width + 2; + runend = runs + runsize; if(compr == TIFF_G4){ ret = decode_group3_2d_line(avctx, &gb, avctx->width, runs, runend, ref); if(ret < 0){