LGTM On Mon, Nov 9, 2020 at 4:37 AM <[email protected]> wrote:
> From: Mark Reid <[email protected]> > > --- > libavcodec/exr.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/exr.c b/libavcodec/exr.c > index cf7824402a..e907c5c464 100644 > --- a/libavcodec/exr.c > +++ b/libavcodec/exr.c > @@ -1203,7 +1203,7 @@ static int decode_block(AVCodecContext *avctx, void > *tdata, > } > } else if (s->pixel_type == EXR_HALF) { > // 16-bit > - if (c < 3) { > + if (c < 3 || !trc_func) { > for (x = 0; x < xsize; x++) { > *ptr_x++ = > s->gamma_table[bytestream_get_le16(&src)]; > } > -- > 2.27.0 > > _______________________________________________ > ffmpeg-devel mailing list > [email protected] > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
