mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-01 10:11:01 +00:00
parent
09f25a9cb0
commit
febf75f3d2
@ -125,7 +125,12 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
|
|||||||
avctx->pix_fmt = PIX_FMT_RGB48BE;
|
avctx->pix_fmt = PIX_FMT_RGB48BE;
|
||||||
}
|
}
|
||||||
} else if (depth == 4) {
|
} else if (depth == 4) {
|
||||||
avctx->pix_fmt = PIX_FMT_RGB32;
|
if (maxval < 256) {
|
||||||
|
avctx->pix_fmt = PIX_FMT_RGB32;
|
||||||
|
} else {
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user