libavcodec/targa.c
3689cf16
 /*
  * Targa (.tga) image decoder
  * Copyright (c) 2006 Konstantin Shishkov
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
6a5d31ac
 
 #include "libavutil/intreadwrite.h"
7ffe76e5
 #include "libavutil/imgutils.h"
3689cf16
 #include "avcodec.h"
efdb198e
 #include "bytestream.h"
594d4d5d
 #include "internal.h"
b5becbab
 #include "targa.h"
3689cf16
 
 typedef struct TargaContext {
2ad40554
     GetByteContext gb;
3689cf16
 } TargaContext;
 
c2eec3df
 static uint8_t *advance_line(uint8_t *start, uint8_t *line,
                              int stride, int *y, int h, int interleave)
 {
     *y += interleave;
 
     if (*y < h) {
         return line + interleave * stride;
     } else {
         *y = (*y + 1) & (interleave - 1);
796012af
         if (*y && *y < h) {
c2eec3df
             return start + *y * stride;
         } else {
             return NULL;
         }
     }
 }
 
2ad40554
 static int targa_decode_rle(AVCodecContext *avctx, TargaContext *s,
c2eec3df
                             uint8_t *start, int w, int h, int stride,
                             int bpp, int interleave)
3689cf16
 {
2ad40554
     int x, y;
3689cf16
     int depth = (bpp + 1) >> 3;
     int type, count;
c2eec3df
     uint8_t *line = start;
     uint8_t *dst  = line;
3689cf16
 
c2eec3df
     x = y = count = 0;
     while (dst) {
2ad40554
         if (bytestream2_get_bytes_left(&s->gb) <= 0) {
             av_log(avctx, AV_LOG_ERROR,
                    "Ran ouf of data before end-of-image\n");
             return AVERROR_INVALIDDATA;
         }
         type  = bytestream2_get_byteu(&s->gb);
3689cf16
         count = (type & 0x7F) + 1;
         type &= 0x80;
2ad40554
         if (!type) {
             do {
                 int n  = FFMIN(count, w - x);
                 bytestream2_get_buffer(&s->gb, dst, n * depth);
                 count -= n;
                 dst   += n * depth;
                 x     += n;
                 if (x == w) {
                     x    = 0;
c2eec3df
                     dst = line = advance_line(start, line, stride, &y, h, interleave);
2ad40554
                 }
c2eec3df
             } while (dst && count > 0);
2ad40554
         } else {
             uint8_t tmp[4];
             bytestream2_get_buffer(&s->gb, tmp, depth);
             do {
                 int n  = FFMIN(count, w - x);
                 count -= n;
                 x     += n;
                 do {
                     memcpy(dst, tmp, depth);
                     dst += depth;
                 } while (--n);
                 if (x == w) {
                     x    = 0;
c2eec3df
                     dst = line = advance_line(start, line, stride, &y, h, interleave);
2ad40554
                 }
c2eec3df
             } while (dst && count > 0);
3689cf16
         }
     }
c2eec3df
 
b56f94cc
     if (count) {
c2eec3df
         av_log(avctx, AV_LOG_ERROR, "Packet went out of bounds\n");
         return AVERROR_INVALIDDATA;
     }
 
2ad40554
     return 0;
3689cf16
 }
 
 static int decode_frame(AVCodecContext *avctx,
df9b9567
                         void *data, int *got_frame,
7a00bbad
                         AVPacket *avpkt)
3689cf16
 {
     TargaContext * const s = avctx->priv_data;
759001c5
     AVFrame * const p = data;
3689cf16
     uint8_t *dst;
     int stride;
2a374f06
     int idlen, pal, compr, y, w, h, bpp, flags, ret;
3689cf16
     int first_clr, colors, csize;
c2eec3df
     int interleave;
3689cf16
 
2ad40554
     bytestream2_init(&s->gb, avpkt->data, avpkt->size);
 
3689cf16
     /* parse image header */
2ad40554
     idlen     = bytestream2_get_byte(&s->gb);
6999f8bc
     pal       = bytestream2_get_byte(&s->gb);
2ad40554
     compr     = bytestream2_get_byte(&s->gb);
     first_clr = bytestream2_get_le16(&s->gb);
     colors    = bytestream2_get_le16(&s->gb);
     csize     = bytestream2_get_byte(&s->gb);
     bytestream2_skip(&s->gb, 4); /* 2: x, 2: y */
     w         = bytestream2_get_le16(&s->gb);
     h         = bytestream2_get_le16(&s->gb);
     bpp       = bytestream2_get_byte(&s->gb);
6999f8bc
 
     if (bytestream2_get_bytes_left(&s->gb) <= idlen) {
         av_log(avctx, AV_LOG_ERROR,
                 "Not enough data to read header\n");
         return AVERROR_INVALIDDATA;
     }
 
2ad40554
     flags     = bytestream2_get_byte(&s->gb);
6999f8bc
 
90cbbbc1
     if (!pal && (first_clr || colors || csize)) {
         av_log(avctx, AV_LOG_WARNING, "File without colormap has colormap information set.\n");
         // specification says we should ignore those value in this case
         first_clr = colors = csize = 0;
     }
6999f8bc
 
2ad40554
     // skip identifier if any
     bytestream2_skip(&s->gb, idlen);
 
b56f94cc
     switch (bpp) {
3689cf16
     case 8:
716d413c
         avctx->pix_fmt = ((compr & (~TGA_RLE)) == TGA_BW) ? AV_PIX_FMT_GRAY8 : AV_PIX_FMT_PAL8;
3689cf16
         break;
     case 15:
     case 16:
716d413c
         avctx->pix_fmt = AV_PIX_FMT_RGB555LE;
3689cf16
         break;
     case 24:
716d413c
         avctx->pix_fmt = AV_PIX_FMT_BGR24;
3689cf16
         break;
57aff885
     case 32:
716d413c
         avctx->pix_fmt = AV_PIX_FMT_BGRA;
57aff885
         break;
3689cf16
     default:
2ad40554
         av_log(avctx, AV_LOG_ERROR, "Bit depth %i is not supported\n", bpp);
2a374f06
         return AVERROR_INVALIDDATA;
3689cf16
     }
 
579d21f7
     if (colors && (colors + first_clr) > 256) {
         av_log(avctx, AV_LOG_ERROR, "Incorrect palette: %i colors with offset %i\n", colors, first_clr);
         return AVERROR_INVALIDDATA;
     }
 
eed5a478
     if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
2a374f06
         return ret;
eed5a478
 
1ec94b0f
     if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
2a374f06
         return ret;
d9954ccf
     p->pict_type = AV_PICTURE_TYPE_I;
b56f94cc
 
     if (flags & TGA_TOPTOBOTTOM) {
3689cf16
         dst = p->data[0];
         stride = p->linesize[0];
b56f94cc
     } else { //image is upside-down
3689cf16
         dst = p->data[0] + p->linesize[0] * (h - 1);
         stride = -p->linesize[0];
     }
 
c2eec3df
     interleave = flags & TGA_INTERLEAVE2 ? 2 :
                  flags & TGA_INTERLEAVE4 ? 4 : 1;
 
b56f94cc
     if (colors) {
faaebcdf
         int pal_size, pal_sample_size;
8943925d
 
faaebcdf
         switch (csize) {
b49d94e4
         case 32: pal_sample_size = 4; break;
faaebcdf
         case 24: pal_sample_size = 3; break;
         case 16:
         case 15: pal_sample_size = 2; break;
         default:
3689cf16
             av_log(avctx, AV_LOG_ERROR, "Palette entry size %i bits is not supported\n", csize);
2a374f06
             return AVERROR_INVALIDDATA;
3689cf16
         }
faaebcdf
         pal_size = colors * pal_sample_size;
b56f94cc
         if (avctx->pix_fmt != AV_PIX_FMT_PAL8) //should not occur but skip palette anyway
2ad40554
             bytestream2_skip(&s->gb, pal_size);
b56f94cc
         else {
efdb198e
             int t;
faaebcdf
             uint32_t *pal = ((uint32_t *)p->data[1]) + first_clr;
 
2ad40554
             if (bytestream2_get_bytes_left(&s->gb) < pal_size) {
                 av_log(avctx, AV_LOG_ERROR,
                        "Not enough data to read palette\n");
                 return AVERROR_INVALIDDATA;
             }
faaebcdf
             switch (pal_sample_size) {
b49d94e4
             case 4:
                 for (t = 0; t < colors; t++)
                     *pal++ = bytestream2_get_le32u(&s->gb);
                 break;
faaebcdf
             case 3:
                 /* RGB24 */
                 for (t = 0; t < colors; t++)
6999f8bc
                     *pal++ = (0xffU<<24) | bytestream2_get_le24u(&s->gb);
faaebcdf
                 break;
             case 2:
                 /* RGB555 */
                 for (t = 0; t < colors; t++) {
2ad40554
                     uint32_t v = bytestream2_get_le16u(&s->gb);
faaebcdf
                     v = ((v & 0x7C00) <<  9) |
                         ((v & 0x03E0) <<  6) |
                         ((v & 0x001F) <<  3);
                     /* left bit replication */
                     v |= (v & 0xE0E0E0U) >> 5;
4640da7e
                     *pal++ = (0xffU<<24) | v;
faaebcdf
                 }
                 break;
3689cf16
             }
             p->palette_has_changed = 1;
         }
     }
b56f94cc
 
2ad40554
     if ((compr & (~TGA_RLE)) == TGA_NODATA) {
         memset(p->data[0], 0, p->linesize[0] * h);
     } else {
b56f94cc
         if (compr & TGA_RLE) {
c2eec3df
             int res = targa_decode_rle(avctx, s, dst, w, h, stride, bpp, interleave);
7782cb20
             if (res < 0)
2ad40554
                 return res;
         } else {
             size_t img_size = w * ((bpp + 1) >> 3);
c2eec3df
             uint8_t *line;
2ad40554
             if (bytestream2_get_bytes_left(&s->gb) < img_size * h) {
                 av_log(avctx, AV_LOG_ERROR,
                        "Not enough data available for image\n");
                 return AVERROR_INVALIDDATA;
             }
c2eec3df
 
             line = dst;
             y = 0;
             do {
7cb46b51
                 bytestream2_get_buffer(&s->gb, line, img_size);
c2eec3df
                 line = advance_line(dst, line, stride, &y, h, interleave);
             } while (line);
3689cf16
         }
     }
b56f94cc
 
     if (flags & TGA_RIGHTTOLEFT) { // right-to-left, needs horizontal flip
88bbabcc
         int x;
b56f94cc
         for (y = 0; y < h; y++) {
88bbabcc
             void *line = &p->data[0][y * p->linesize[0]];
b56f94cc
             for (x = 0; x < w >> 1; x++) {
                 switch (bpp) {
88bbabcc
                 case 32:
6999f8bc
                     FFSWAP(uint32_t, ((uint32_t *)line)[x], ((uint32_t *)line)[w - x - 1]);
88bbabcc
                     break;
                 case 24:
6999f8bc
                     FFSWAP(uint8_t, ((uint8_t *)line)[3 * x    ], ((uint8_t *)line)[3 * w - 3 * x - 3]);
                     FFSWAP(uint8_t, ((uint8_t *)line)[3 * x + 1], ((uint8_t *)line)[3 * w - 3 * x - 2]);
                     FFSWAP(uint8_t, ((uint8_t *)line)[3 * x + 2], ((uint8_t *)line)[3 * w - 3 * x - 1]);
88bbabcc
                     break;
                 case 16:
6999f8bc
                     FFSWAP(uint16_t, ((uint16_t *)line)[x], ((uint16_t *)line)[w - x - 1]);
88bbabcc
                     break;
                 case 8:
6999f8bc
                     FFSWAP(uint8_t, ((uint8_t *)line)[x], ((uint8_t *)line)[w - x - 1]);
88bbabcc
                 }
             }
         }
     }
3689cf16
 
df9b9567
     *got_frame = 1;
3689cf16
 
7782cb20
     return avpkt->size;
3689cf16
 }
 
e7e2df27
 AVCodec ff_targa_decoder = {
ec6402b7
     .name           = "targa",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Truevision Targa image"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_TARGA,
ec6402b7
     .priv_data_size = sizeof(TargaContext),
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
3689cf16
 };