summaryrefslogtreecommitdiff
path: root/libavcodec/pnm.c
diff options
context:
space:
mode:
authorami_stuff <ami_stuff@o2.pl>2012-01-05 20:58:24 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-05 20:58:24 +0100
commita44b63f6c8bee7cb08f4b96408ce4f5a39326097 (patch)
tree554650e22e68c230cb44fabbe6e537b23dd34e53 /libavcodec/pnm.c
parent871e2f4fac18230abe4d7154d90cb5cba1479692 (diff)
Support 48bpp pam decoding.
Fixes ticket #882.
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r--libavcodec/pnm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c
index 06ab7018ca..791829b737 100644
--- a/libavcodec/pnm.c
+++ b/libavcodec/pnm.c
@@ -122,9 +122,7 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
if (maxval < 256) {
avctx->pix_fmt = PIX_FMT_RGB24;
} else {
- av_log(avctx, AV_LOG_ERROR, "16-bit components are only supported for grayscale\n");
- avctx->pix_fmt = PIX_FMT_NONE;
- return -1;
+ avctx->pix_fmt = PIX_FMT_RGB48BE;
}
} else if (depth == 4) {
avctx->pix_fmt = PIX_FMT_RGB32;