2 * Renderware TeXture Dictionary (.txd) image decoder
3 * Copyright (c) 2007 Ivo van Poorten
5 * See also: http://wiki.multimedia.cx/index.php?title=TXD
7 * This file is part of FFmpeg.
9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * FFmpeg is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "libavutil/intreadwrite.h"
25 #include "libavutil/imgutils.h"
26 #include "bytestream.h"
31 typedef struct TXDContext {
35 static av_cold int txd_init(AVCodecContext *avctx) {
36 TXDContext *s = avctx->priv_data;
38 avcodec_get_frame_defaults(&s->picture);
39 avctx->coded_frame = &s->picture;
44 static int txd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
46 TXDContext * const s = avctx->priv_data;
48 AVFrame *picture = data;
49 AVFrame * const p = &s->picture;
50 unsigned int version, w, h, d3d_format, depth, stride, flags;
55 bytestream2_init(&gb, avpkt->data, avpkt->size);
56 version = bytestream2_get_le32(&gb);
57 bytestream2_skip(&gb, 72);
58 d3d_format = bytestream2_get_le32(&gb);
59 w = bytestream2_get_le16(&gb);
60 h = bytestream2_get_le16(&gb);
61 depth = bytestream2_get_byte(&gb);
62 bytestream2_skip(&gb, 2);
63 flags = bytestream2_get_byte(&gb);
65 if (version < 8 || version > 9) {
66 av_log(avctx, AV_LOG_ERROR, "texture data version %i is unsupported\n",
72 avctx->pix_fmt = AV_PIX_FMT_PAL8;
73 } else if (depth == 16 || depth == 32) {
74 avctx->pix_fmt = AV_PIX_FMT_RGB32;
76 av_log(avctx, AV_LOG_ERROR, "depth of %i is unsupported\n", depth);
81 avctx->release_buffer(avctx, p);
83 if (av_image_check_size(w, h, 0, avctx))
85 if (w != avctx->width || h != avctx->height)
86 avcodec_set_dimensions(avctx, w, h);
87 if (ff_get_buffer(avctx, p) < 0) {
88 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
92 p->pict_type = AV_PICTURE_TYPE_I;
95 stride = p->linesize[0];
98 pal = (uint32_t *) p->data[1];
99 for (y = 0; y < 256; y++) {
100 v = bytestream2_get_be32(&gb);
101 pal[y] = (v >> 8) + (v << 24);
103 if (bytestream2_get_bytes_left(&gb) < w * h)
104 return AVERROR_INVALIDDATA;
105 bytestream2_skip(&gb, 4);
106 for (y=0; y<h; y++) {
107 bytestream2_get_buffer(&gb, ptr, w);
110 } else if (depth == 16) {
111 bytestream2_skip(&gb, 4);
112 switch (d3d_format) {
117 if (bytestream2_get_bytes_left(&gb) < (w/4) * (h/4) * 8)
118 return AVERROR_INVALIDDATA;
119 ff_decode_dxt1(&gb, ptr, w, h, stride);
122 if (bytestream2_get_bytes_left(&gb) < (w/4) * (h/4) * 16)
123 return AVERROR_INVALIDDATA;
124 ff_decode_dxt3(&gb, ptr, w, h, stride);
129 } else if (depth == 32) {
130 switch (d3d_format) {
133 if (bytestream2_get_bytes_left(&gb) < h * w * 4)
134 return AVERROR_INVALIDDATA;
135 for (y=0; y<h; y++) {
136 bytestream2_get_buffer(&gb, ptr, w * 4);
145 *picture = s->picture;
146 *data_size = sizeof(AVPicture);
151 av_log(avctx, AV_LOG_ERROR, "unsupported d3d format (%08x)\n", d3d_format);
155 static av_cold int txd_end(AVCodecContext *avctx) {
156 TXDContext *s = avctx->priv_data;
158 if (s->picture.data[0])
159 avctx->release_buffer(avctx, &s->picture);
164 AVCodec ff_txd_decoder = {
166 .type = AVMEDIA_TYPE_VIDEO,
167 .id = AV_CODEC_ID_TXD,
168 .priv_data_size = sizeof(TXDContext),
171 .decode = txd_decode_frame,
172 .capabilities = CODEC_CAP_DR1,
173 .long_name = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"),