Files
ffmpeg/libavcodec/targa.c
T

269 lines
8.3 KiB
C
Raw Normal View History

2006-10-11 04:15:04 +00:00
/*
* Targa (.tga) image decoder
* Copyright (c) 2006 Konstantin Shishkov
*
* This file is part of Libav.
2006-10-11 04:15:04 +00:00
*
* Libav is free software; you can redistribute it and/or
2006-10-11 04:15:04 +00:00
* 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.
*
* Libav is distributed in the hope that it will be useful,
2006-10-11 04:15:04 +00:00
* 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 Libav; if not, write to the Free Software
2006-10-11 04:15:04 +00:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/intreadwrite.h"
2011-02-07 14:37:08 +01:00
#include "libavutil/imgutils.h"
2006-10-11 04:15:04 +00:00
#include "avcodec.h"
2012-01-02 15:17:12 -05:00
#include "bytestream.h"
#include "targa.h"
2006-10-11 04:15:04 +00:00
typedef struct TargaContext {
AVFrame picture;
2012-03-26 17:46:16 -07:00
GetByteContext gb;
2006-10-11 04:15:04 +00:00
int color_type;
int compression_type;
} TargaContext;
2012-03-26 17:46:16 -07:00
static int targa_decode_rle(AVCodecContext *avctx, TargaContext *s,
uint8_t *dst, int w, int h, int stride, int bpp)
2006-10-11 04:15:04 +00:00
{
2012-03-26 17:46:16 -07:00
int x, y;
2006-10-11 04:15:04 +00:00
int depth = (bpp + 1) >> 3;
int type, count;
int diff;
diff = stride - w * depth;
x = y = 0;
2012-03-26 17:46:16 -07:00
while (y < h) {
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);
2006-10-11 04:15:04 +00:00
count = (type & 0x7F) + 1;
type &= 0x80;
2012-03-26 17:46:16 -07:00
if (x + count > w && x + count + 1 > (h - y) * w) {
av_log(avctx, AV_LOG_ERROR,
"Packet went out of bounds: position (%i,%i) size %i\n",
x, y, count);
return AVERROR_INVALIDDATA;
2011-02-18 10:35:51 +01:00
}
2012-03-26 17:46:16 -07:00
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;
y++;
dst += diff;
}
} while (count > 0);
} 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;
y++;
dst += diff;
}
} while (count > 0);
2006-10-11 04:15:04 +00:00
}
}
2012-03-26 17:46:16 -07:00
return 0;
2006-10-11 04:15:04 +00:00
}
static int decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
AVPacket *avpkt)
2006-10-11 04:15:04 +00:00
{
TargaContext * const s = avctx->priv_data;
AVFrame *picture = data;
2012-02-27 08:51:20 +01:00
AVFrame * const p = &s->picture;
2006-10-11 04:15:04 +00:00
uint8_t *dst;
int stride;
2011-06-01 17:26:27 +01:00
int idlen, compr, y, w, h, bpp, flags;
2006-10-11 04:15:04 +00:00
int first_clr, colors, csize;
2012-03-26 17:46:16 -07:00
bytestream2_init(&s->gb, avpkt->data, avpkt->size);
2006-10-11 04:15:04 +00:00
/* parse image header */
2012-03-26 17:46:16 -07:00
idlen = bytestream2_get_byte(&s->gb);
bytestream2_skip(&s->gb, 1); /* pal */
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);
flags = bytestream2_get_byte(&s->gb);
// skip identifier if any
bytestream2_skip(&s->gb, idlen);
switch(bpp){
2006-10-11 04:15:04 +00:00
case 8:
avctx->pix_fmt = ((compr & (~TGA_RLE)) == TGA_BW) ? AV_PIX_FMT_GRAY8 : AV_PIX_FMT_PAL8;
2006-10-11 04:15:04 +00:00
break;
case 15:
avctx->pix_fmt = AV_PIX_FMT_RGB555LE;
2006-10-11 04:15:04 +00:00
break;
case 16:
avctx->pix_fmt = AV_PIX_FMT_RGB555LE;
2006-10-11 04:15:04 +00:00
break;
case 24:
avctx->pix_fmt = AV_PIX_FMT_BGR24;
2006-10-11 04:15:04 +00:00
break;
2006-11-03 13:13:08 +00:00
case 32:
avctx->pix_fmt = AV_PIX_FMT_BGRA;
2006-11-03 13:13:08 +00:00
break;
2006-10-11 04:15:04 +00:00
default:
2012-03-26 17:46:16 -07:00
av_log(avctx, AV_LOG_ERROR, "Bit depth %i is not supported\n", bpp);
2006-10-11 04:15:04 +00:00
return -1;
}
if(s->picture.data[0])
avctx->release_buffer(avctx, &s->picture);
if(av_image_check_size(w, h, 0, avctx))
2006-10-11 04:15:04 +00:00
return -1;
if(w != avctx->width || h != avctx->height)
avcodec_set_dimensions(avctx, w, h);
if(avctx->get_buffer(avctx, p) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return -1;
}
if(flags & 0x20){
dst = p->data[0];
stride = p->linesize[0];
}else{ //image is upside-down
dst = p->data[0] + p->linesize[0] * (h - 1);
stride = -p->linesize[0];
}
if(colors){
2012-01-02 15:17:12 -05:00
int pal_size, pal_sample_size;
2006-10-11 04:15:04 +00:00
if((colors + first_clr) > 256){
av_log(avctx, AV_LOG_ERROR, "Incorrect palette: %i colors with offset %i\n", colors, first_clr);
return -1;
}
2012-01-02 15:17:12 -05:00
switch (csize) {
case 24: pal_sample_size = 3; break;
case 16:
case 15: pal_sample_size = 2; break;
default:
2006-10-11 04:15:04 +00:00
av_log(avctx, AV_LOG_ERROR, "Palette entry size %i bits is not supported\n", csize);
return -1;
}
2012-01-02 15:17:12 -05:00
pal_size = colors * pal_sample_size;
if(avctx->pix_fmt != AV_PIX_FMT_PAL8)//should not occur but skip palette anyway
2012-03-26 17:46:16 -07:00
bytestream2_skip(&s->gb, pal_size);
2006-10-11 04:15:04 +00:00
else{
2012-01-02 15:17:12 -05:00
int t;
uint32_t *pal = ((uint32_t *)p->data[1]) + first_clr;
2012-03-26 17:46:16 -07:00
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;
}
2012-01-02 15:17:12 -05:00
switch (pal_sample_size) {
case 3:
/* RGB24 */
for (t = 0; t < colors; t++)
2012-03-26 17:46:16 -07:00
*pal++ = bytestream2_get_le24u(&s->gb);
2012-01-02 15:17:12 -05:00
break;
case 2:
/* RGB555 */
for (t = 0; t < colors; t++) {
2012-03-26 17:46:16 -07:00
uint32_t v = bytestream2_get_le16u(&s->gb);
2012-01-02 15:17:12 -05:00
v = ((v & 0x7C00) << 9) |
((v & 0x03E0) << 6) |
((v & 0x001F) << 3);
/* left bit replication */
v |= (v & 0xE0E0E0U) >> 5;
*pal++ = v;
}
break;
2006-10-11 04:15:04 +00:00
}
p->palette_has_changed = 1;
}
}
2012-03-26 17:46:16 -07:00
if ((compr & (~TGA_RLE)) == TGA_NODATA) {
memset(p->data[0], 0, p->linesize[0] * h);
} else {
2011-02-18 10:35:51 +01:00
if(compr & TGA_RLE){
2012-03-26 17:46:16 -07:00
int res = targa_decode_rle(avctx, s, dst, w, h, stride, bpp);
2011-02-18 10:35:51 +01:00
if (res < 0)
2012-03-26 17:46:16 -07:00
return res;
} else {
size_t img_size = w * ((bpp + 1) >> 3);
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;
}
for (y = 0; y < h; y++) {
bytestream2_get_bufferu(&s->gb, dst, img_size);
2006-10-11 04:15:04 +00:00
dst += stride;
}
}
}
*picture = s->picture;
2006-10-11 04:15:04 +00:00
*data_size = sizeof(AVPicture);
2011-02-18 10:35:51 +01:00
return avpkt->size;
2006-10-11 04:15:04 +00:00
}
static av_cold int targa_init(AVCodecContext *avctx){
2006-10-11 04:15:04 +00:00
TargaContext *s = avctx->priv_data;
2012-02-27 08:51:20 +01:00
avcodec_get_frame_defaults(&s->picture);
avctx->coded_frame = &s->picture;
2006-10-11 04:15:04 +00:00
return 0;
}
static av_cold int targa_end(AVCodecContext *avctx){
2006-10-11 04:15:04 +00:00
TargaContext *s = avctx->priv_data;
if(s->picture.data[0])
avctx->release_buffer(avctx, &s->picture);
return 0;
}
AVCodec ff_targa_decoder = {
.name = "targa",
.type = AVMEDIA_TYPE_VIDEO,
2012-08-05 11:11:04 +02:00
.id = AV_CODEC_ID_TARGA,
.priv_data_size = sizeof(TargaContext),
.init = targa_init,
.close = targa_end,
.decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
2012-04-06 19:19:39 +03:00
.long_name = NULL_IF_CONFIG_SMALL("Truevision Targa image"),
2006-10-11 04:15:04 +00:00
};