Mercurial > libavcodec.hg
changeset 4132:c9e0315f9954 libavcodec
RGB32 support in Targa
author | kostya |
---|---|
date | Fri, 03 Nov 2006 13:13:08 +0000 |
parents | 1a8e384d0463 |
children | 560ea2d5524e |
files | targa.c |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/targa.c Fri Nov 03 12:07:53 2006 +0000 +++ b/targa.c Fri Nov 03 13:13:08 2006 +0000 @@ -68,6 +68,9 @@ dst[1] = src[1]; dst[2] = src[2]; break; + case 4: + *((uint32_t*)dst) = LE_32(src); + break; } dst += depth; if(!type) @@ -128,6 +131,9 @@ case 24: avctx->pix_fmt = PIX_FMT_BGR24; break; + case 32: + avctx->pix_fmt = PIX_FMT_RGBA32; + break; default: av_log(avctx, AV_LOG_ERROR, "Bit depth %i is not supported\n", s->bpp); return -1; @@ -195,6 +201,10 @@ uint16_t *dst16 = (uint16_t*)dst; for(x = 0; x < s->width; x++) dst16[x] = LE_16(buf + x * 2); + }else if((s->bpp + 1) >> 3 == 4){ + uint32_t *dst32 = (uint32_t*)dst; + for(x = 0; x < s->width; x++) + dst32[x] = LE_32(buf + x * 4); }else #endif memcpy(dst, buf, s->width * ((s->bpp + 1) >> 3));