mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
prores: get correct size for coded V plane if alpha is present
The size check must be updated to take into account both manners in which v_data_size might be set. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
cd14e297e6
commit
91038cdbd1
@ -546,9 +546,11 @@ static int decode_slice(AVCodecContext *avctx, ProresThreadData *td)
|
||||
hdr_size = buf[0] >> 3;
|
||||
y_data_size = AV_RB16(buf + 2);
|
||||
u_data_size = AV_RB16(buf + 4);
|
||||
v_data_size = slice_data_size - y_data_size - u_data_size - hdr_size;
|
||||
v_data_size = hdr_size > 7 ? AV_RB16(buf + 6) :
|
||||
slice_data_size - y_data_size - u_data_size - hdr_size;
|
||||
|
||||
if (v_data_size < 0 || hdr_size < 6) {
|
||||
if (hdr_size + y_data_size + u_data_size + v_data_size > slice_data_size ||
|
||||
v_data_size < 0 || hdr_size < 6) {
|
||||
av_log(avctx, AV_LOG_ERROR, "invalid data size\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
@ -1,2 +1,2 @@
|
||||
0, 0, 12441600, 0x79c18863
|
||||
0, 3003, 12441600, 0x79c18863
|
||||
0, 0, 12441600, 0x9d3dc525
|
||||
0, 3003, 12441600, 0x9d3dc525
|
||||
|
Loading…
Reference in New Issue
Block a user