mirror of https://git.ffmpeg.org/ffmpeg.git
exr: remove dead assigment
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
dd0a9b78db
commit
5ee41d00f6
|
@ -457,8 +457,6 @@ static int decode_frame(AVCodecContext *avctx,
|
||||||
|
|
||||||
// Zero out the end if xmax+1 is not w
|
// Zero out the end if xmax+1 is not w
|
||||||
memset(ptr_x, 0, (avctx->width - (xmax + 1)) * 2 * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components);
|
memset(ptr_x, 0, (avctx->width - (xmax + 1)) * 2 * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components);
|
||||||
ptr_x += (avctx->width - (xmax + 1)) * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
// Move to next line
|
// Move to next line
|
||||||
ptr += stride;
|
ptr += stride;
|
||||||
|
|
Loading…
Reference in New Issue