diff options
author | Jérôme Martinez | 2015-05-02 13:23:12 +0200 |
---|---|---|
committer | Michael Niedermayer | 2015-05-03 01:55:12 +0200 |
commit | 14605a0b991585f55be07f23e53f263d97e46eac (patch) | |
tree | 2b1f343aae209fb0a03e9717e4d7087cd70d9084 /libavcodec/ffv1dec.c | |
parent | eb16881199750100ea7df2808754f767e0df6c65 (diff) |
ffv1dec: plane_index is 1 in case of version 4 gray+alpha.
Since version 4, plane_index for the alpha plane is 1 in the case chroma_planes is 0.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1dec.c')
-rw-r--r-- | libavcodec/ffv1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1dec.c b/libavcodec/ffv1dec.c index fda3f09a4f..78d947ace3 100644 --- a/libavcodec/ffv1dec.c +++ b/libavcodec/ffv1dec.c @@ -441,7 +441,7 @@ static int decode_slice(AVCodecContext *c, void *arg) decode_plane(fs, p->data[2] + ps*cx+cy*p->linesize[2], chroma_width, chroma_height, p->linesize[2], 1); } if (fs->transparency) - decode_plane(fs, p->data[3] + ps*x + y*p->linesize[3], width, height, p->linesize[3], 2); + decode_plane(fs, p->data[3] + ps*x + y*p->linesize[3], width, height, p->linesize[3], (f->version >= 4 && !f->chroma_planes) ? 1 : 2); } else { uint8_t *planes[3] = { p->data[0] + ps * x + y * p->linesize[0], p->data[1] + ps * x + y * p->linesize[1], |