mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
Support reading 64bit sgi images.
Reviewed-by: Jean First
This commit is contained in:
parent
3fe4540b08
commit
0b1f20e23c
@ -208,8 +208,8 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
avctx->pix_fmt = s->bytes_per_channel == 2 ? PIX_FMT_GRAY16BE : PIX_FMT_GRAY8;
|
||||
} else if (s->depth == SGI_RGB) {
|
||||
avctx->pix_fmt = s->bytes_per_channel == 2 ? PIX_FMT_RGB48BE : PIX_FMT_RGB24;
|
||||
} else if (s->depth == SGI_RGBA && s->bytes_per_channel == 1) {
|
||||
avctx->pix_fmt = PIX_FMT_RGBA;
|
||||
} else if (s->depth == SGI_RGBA) {
|
||||
avctx->pix_fmt = s->bytes_per_channel == 2 ? PIX_FMT_RGBA64BE : PIX_FMT_RGBA;
|
||||
} else {
|
||||
av_log(avctx, AV_LOG_ERROR, "wrong picture format\n");
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user