mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
exr: merge common code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
a2dab7512e
commit
01f76a779c
@ -404,18 +404,6 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
s->compr = *buf;
|
s->compr = *buf;
|
||||||
switch (s->compr) {
|
|
||||||
case EXR_RAW:
|
|
||||||
case EXR_RLE:
|
|
||||||
case EXR_ZIP1:
|
|
||||||
case EXR_ZIP16:
|
|
||||||
break;
|
|
||||||
case EXR_PIZ:
|
|
||||||
case EXR_B44:
|
|
||||||
default:
|
|
||||||
av_log(avctx, AV_LOG_ERROR, "Compression type %d is not supported\n", s->compr);
|
|
||||||
return AVERROR_PATCHWELCOME;
|
|
||||||
}
|
|
||||||
|
|
||||||
buf += variable_buffer_data_size;
|
buf += variable_buffer_data_size;
|
||||||
continue;
|
continue;
|
||||||
@ -483,6 +471,9 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
case EXR_ZIP16:
|
case EXR_ZIP16:
|
||||||
scan_lines_per_block = 16;
|
scan_lines_per_block = 16;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Compression type %d is not supported\n", s->compr);
|
||||||
|
return AVERROR_PATCHWELCOME;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s->picture.data[0])
|
if (s->picture.data[0])
|
||||||
|
Loading…
Reference in New Issue
Block a user