Files
FFmpeg/libavcodec/txd.c
T

137 lines
4.2 KiB
C
Raw Normal View History

2007-05-07 13:29:02 +00:00
/*
* Renderware TeXture Dictionary (.txd) image decoder
* Copyright (c) 2007 Ivo van Poorten
*
* See also: http://wiki.multimedia.cx/index.php?title=TXD
*
* This file is part of Libav.
2007-05-07 13:29:02 +00:00
*
* Libav is free software; you can redistribute it and/or
2007-05-07 13:29:02 +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,
2007-05-07 13:29:02 +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
2007-05-07 13:29:02 +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"
2007-05-07 13:29:02 +00:00
#include "avcodec.h"
2012-03-12 17:37:02 +00:00
#include "bytestream.h"
#include "internal.h"
2007-05-07 13:29:02 +00:00
#include "s3tc.h"
static int txd_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
AVPacket *avpkt) {
2012-03-12 17:37:02 +00:00
GetByteContext gb;
2012-11-21 21:34:46 +01:00
AVFrame * const p = data;
unsigned int version, w, h, d3d_format, depth, stride, flags;
2007-05-07 13:29:02 +00:00
unsigned int y, v;
2008-02-01 15:59:41 +00:00
uint8_t *ptr;
uint32_t *pal;
2012-11-20 07:48:01 +01:00
int ret;
2007-05-07 13:29:02 +00:00
2012-03-12 17:37:02 +00:00
bytestream2_init(&gb, avpkt->data, avpkt->size);
version = bytestream2_get_le32(&gb);
bytestream2_skip(&gb, 72);
d3d_format = bytestream2_get_le32(&gb);
w = bytestream2_get_le16(&gb);
h = bytestream2_get_le16(&gb);
depth = bytestream2_get_byte(&gb);
bytestream2_skip(&gb, 2);
2012-03-12 17:37:02 +00:00
flags = bytestream2_get_byte(&gb);
2007-05-07 13:29:02 +00:00
if (version < 8 || version > 9) {
av_log(avctx, AV_LOG_ERROR, "texture data version %i is unsupported\n",
version);
2012-11-20 07:48:01 +01:00
return AVERROR_PATCHWELCOME;
2007-05-07 13:29:02 +00:00
}
if (depth == 8) {
avctx->pix_fmt = AV_PIX_FMT_PAL8;
2012-03-12 17:37:02 +00:00
} else if (depth == 16 || depth == 32) {
avctx->pix_fmt = AV_PIX_FMT_RGB32;
2012-03-12 17:37:02 +00:00
} else {
2007-05-07 13:29:02 +00:00
av_log(avctx, AV_LOG_ERROR, "depth of %i is unsupported\n", depth);
2012-11-20 07:48:01 +01:00
return AVERROR_PATCHWELCOME;
2007-05-07 13:29:02 +00:00
}
2012-11-20 07:48:01 +01:00
if ((ret = av_image_check_size(w, h, 0, avctx)) < 0)
return ret;
2007-05-07 13:29:02 +00:00
if (w != avctx->width || h != avctx->height)
avcodec_set_dimensions(avctx, w, h);
2012-11-21 21:34:46 +01:00
if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
2007-05-07 13:29:02 +00:00
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
2012-11-20 07:48:01 +01:00
return ret;
2007-05-07 13:29:02 +00:00
}
p->pict_type = AV_PICTURE_TYPE_I;
2007-05-07 13:29:02 +00:00
ptr = p->data[0];
stride = p->linesize[0];
if (depth == 8) {
pal = (uint32_t *) p->data[1];
2012-03-12 17:37:02 +00:00
for (y = 0; y < 256; y++) {
v = bytestream2_get_be32(&gb);
pal[y] = (v >> 8) + (v << 24);
2007-05-07 13:29:02 +00:00
}
2012-03-12 17:37:02 +00:00
bytestream2_skip(&gb, 4);
2007-05-07 13:29:02 +00:00
for (y=0; y<h; y++) {
2012-03-12 17:37:02 +00:00
bytestream2_get_buffer(&gb, ptr, w);
2007-05-07 13:29:02 +00:00
ptr += stride;
}
} else if (depth == 16) {
2012-03-12 17:37:02 +00:00
bytestream2_skip(&gb, 4);
2007-05-07 13:29:02 +00:00
switch (d3d_format) {
case 0:
2011-11-27 16:17:13 -08:00
if (!(flags & 1))
goto unsupported;
2007-05-07 13:29:02 +00:00
case FF_S3TC_DXT1:
2012-03-12 17:37:02 +00:00
ff_decode_dxt1(&gb, ptr, w, h, stride);
2007-05-07 13:29:02 +00:00
break;
case FF_S3TC_DXT3:
2012-03-12 17:37:02 +00:00
ff_decode_dxt3(&gb, ptr, w, h, stride);
2007-05-07 13:29:02 +00:00
break;
default:
goto unsupported;
}
} else if (depth == 32) {
switch (d3d_format) {
case 0x15:
case 0x16:
for (y=0; y<h; y++) {
2012-03-12 17:37:02 +00:00
bytestream2_get_buffer(&gb, ptr, w * 4);
2007-05-07 13:29:02 +00:00
ptr += stride;
}
break;
default:
goto unsupported;
}
}
*got_frame = 1;
2007-05-07 13:29:02 +00:00
2012-03-12 17:37:02 +00:00
return avpkt->size;
2007-05-07 13:29:02 +00:00
unsupported:
av_log(avctx, AV_LOG_ERROR, "unsupported d3d format (%08x)\n", d3d_format);
2012-11-20 07:48:01 +01:00
return AVERROR_PATCHWELCOME;
2007-05-07 13:29:02 +00:00
}
AVCodec ff_txd_decoder = {
.name = "txd",
.type = AVMEDIA_TYPE_VIDEO,
2012-08-05 11:11:04 +02:00
.id = AV_CODEC_ID_TXD,
.decode = txd_decode_frame,
.capabilities = CODEC_CAP_DR1,
2012-04-06 19:19:39 +03:00
.long_name = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"),
2007-05-07 13:29:02 +00:00
};