mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 22:10:34 +00:00
pnm: Add missing 'else'. Fixes decoding for 16-bit pgm.
Originally committed as revision 17848 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bc3057f499
commit
5a92cc663c
@ -138,7 +138,7 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s){
|
||||
avctx->pix_fmt = PIX_FMT_GRAY16BE;
|
||||
if (s->maxval != 65535)
|
||||
avctx->pix_fmt = PIX_FMT_GRAY16;
|
||||
} if (avctx->pix_fmt == PIX_FMT_RGB24) {
|
||||
} else if (avctx->pix_fmt == PIX_FMT_RGB24) {
|
||||
if (s->maxval > 255)
|
||||
avctx->pix_fmt = PIX_FMT_RGB48BE;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user