[FFmpeg-cvslog] avcodec/exr: improve pxr24 uncompress
Martin Vignali
git at videolan.org
Mon Jun 6 15:59:57 CEST 2016
ffmpeg | branch: master | Martin Vignali <martin.vignali at gmail.com> | Sat Jun 4 14:24:08 2016 +0200| [03152e74dfdc7f438cb4a10402c4de744e807e22] | committer: Paul B Mahol
avcodec/exr: improve pxr24 uncompress
Fix pxr24 uncompress when all channels doesnt have the same pixel type.
The expected length after zip decoding, is now calculated channel by channel.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=03152e74dfdc7f438cb4a10402c4de744e807e22
---
libavcodec/exr.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index dadbfd6..4bcb298 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -805,15 +805,20 @@ static int pxr24_uncompress(EXRContext *s, const uint8_t *src,
int compressed_size, int uncompressed_size,
EXRThreadData *td)
{
- unsigned long dest_len, expected_len;
+ unsigned long dest_len, expected_len = 0;
const uint8_t *in = td->tmp;
uint8_t *out;
int c, i, j;
- if (s->pixel_type == EXR_FLOAT)
- expected_len = (uncompressed_size / 4) * 3; /* PRX 24 store float in 24 bit instead of 32 */
- else
- expected_len = uncompressed_size;
+ for (i = 0; i < s->nb_channels; i++) {
+ if (s->channels[i].pixel_type == EXR_FLOAT) {
+ expected_len += (td->xsize * td->ysize * 3);/* PRX 24 store float in 24 bit instead of 32 */
+ } else if (s->channels[i].pixel_type == EXR_HALF) {
+ expected_len += (td->xsize * td->ysize * 2);
+ } else {//UINT 32
+ expected_len += (td->xsize * td->ysize * 4);
+ }
+ }
dest_len = expected_len;
More information about the ffmpeg-cvslog
mailing list