[FFmpeg-devel] [PATCH]Support decoding 64bit pam images
Carl Eugen Hoyos
cehoyos at ag.or.at
Mon Jan 16 15:09:30 CET 2012
Hi!
Attached patch allows to read 64bit pam files.
Please comment, Carl Eugen
-------------- next part --------------
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c
index fa43c8d..8edd9ac 100644
--- a/libavcodec/pnm.c
+++ b/libavcodec/pnm.c
@@ -128,8 +128,7 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
if (maxval < 256) {
avctx->pix_fmt = PIX_FMT_RGB32;
} else {
- av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth\n");
- return -1;
+ avctx->pix_fmt = PIX_FMT_RGBA64BE;
}
} else {
return -1;
diff --git a/libavcodec/pnmdec.c b/libavcodec/pnmdec.c
index dc64f9b..fbeb671 100644
--- a/libavcodec/pnmdec.c
+++ b/libavcodec/pnmdec.c
@@ -58,6 +58,11 @@ static int pnm_decode_frame(AVCodecContext *avctx, void *data,
switch (avctx->pix_fmt) {
default:
return -1;
+ case PIX_FMT_RGBA64BE:
+ n = avctx->width * 8;
+ components=4;
+ sample_len=16;
+ goto do_read;
case PIX_FMT_RGB48BE:
n = avctx->width * 6;
components=3;
More information about the ffmpeg-devel
mailing list