]> git.sesse.net Git - ffmpeg/blob - libavcodec/txd.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / txd.c
1 /*
2  * Renderware TeXture Dictionary (.txd) image decoder
3  * Copyright (c) 2007 Ivo van Poorten
4  *
5  * See also: http://wiki.multimedia.cx/index.php?title=TXD
6  *
7  * This file is part of FFmpeg.
8  *
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.
13  *
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.
18  *
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
22  */
23
24 #include "libavutil/intreadwrite.h"
25 #include "libavutil/imgutils.h"
26 #include "bytestream.h"
27 #include "avcodec.h"
28 #include "s3tc.h"
29
30 typedef struct TXDContext {
31     AVFrame picture;
32 } TXDContext;
33
34 static av_cold int txd_init(AVCodecContext *avctx) {
35     TXDContext *s = avctx->priv_data;
36
37     avcodec_get_frame_defaults(&s->picture);
38     avctx->coded_frame = &s->picture;
39
40     return 0;
41 }
42
43 static int txd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
44                             AVPacket *avpkt) {
45     const uint8_t *buf = avpkt->data;
46     const uint8_t *buf_end = avpkt->data + avpkt->size;
47     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, mipmap_count, flags;
51     unsigned int y, v;
52     uint8_t *ptr;
53     const uint8_t *cur = buf;
54     const uint32_t *palette = (const uint32_t *)(cur + 88);
55     uint32_t *pal;
56
57     if (buf_end - cur < 92)
58         return AVERROR_INVALIDDATA;
59     version         = AV_RL32(cur);
60     d3d_format      = AV_RL32(cur+76);
61     w               = AV_RL16(cur+80);
62     h               = AV_RL16(cur+82);
63     depth           = AV_RL8 (cur+84);
64     mipmap_count    = AV_RL8 (cur+85);
65     flags           = AV_RL8 (cur+87);
66     cur            += 92;
67
68     if (version < 8 || version > 9) {
69         av_log(avctx, AV_LOG_ERROR, "texture data version %i is unsupported\n",
70                                                                     version);
71         return -1;
72     }
73
74     if (depth == 8) {
75         avctx->pix_fmt = PIX_FMT_PAL8;
76         if (buf_end - cur < 1024)
77             return AVERROR_INVALIDDATA;
78         cur += 1024;
79     } else if (depth == 16 || depth == 32)
80         avctx->pix_fmt = PIX_FMT_RGB32;
81     else {
82         av_log(avctx, AV_LOG_ERROR, "depth of %i is unsupported\n", depth);
83         return -1;
84     }
85
86     if (p->data[0])
87         avctx->release_buffer(avctx, p);
88
89     if (av_image_check_size(w, h, 0, avctx))
90         return -1;
91     if (w != avctx->width || h != avctx->height)
92         avcodec_set_dimensions(avctx, w, h);
93     if (avctx->get_buffer(avctx, p) < 0) {
94         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
95         return -1;
96     }
97
98     p->pict_type = AV_PICTURE_TYPE_I;
99
100     ptr    = p->data[0];
101     stride = p->linesize[0];
102
103     if (depth == 8) {
104         pal = (uint32_t *) p->data[1];
105         for (y=0; y<256; y++) {
106             v = AV_RB32(palette+y);
107             pal[y] = (v>>8) + (v<<24);
108         }
109         if (buf_end - cur < w * h)
110             return AVERROR_INVALIDDATA;
111         for (y=0; y<h; y++) {
112             memcpy(ptr, cur, w);
113             ptr += stride;
114             cur += w;
115         }
116     } else if (depth == 16) {
117         switch (d3d_format) {
118         case 0:
119             if (!flags&1) goto unsupported;
120         case FF_S3TC_DXT1:
121             if (buf_end - cur < (w/4) * (h/4) * 8)
122                 return AVERROR_INVALIDDATA;
123             ff_decode_dxt1(cur, ptr, w, h, stride);
124             break;
125         case FF_S3TC_DXT3:
126             if (buf_end - cur < (w/4) * (h/4) * 16)
127                 return AVERROR_INVALIDDATA;
128             ff_decode_dxt3(cur, ptr, w, h, stride);
129             break;
130         default:
131             goto unsupported;
132         }
133     } else if (depth == 32) {
134         switch (d3d_format) {
135         case 0x15:
136         case 0x16:
137             if (buf_end - cur < h * w * 4)
138                 return AVERROR_INVALIDDATA;
139             for (y=0; y<h; y++) {
140                 memcpy(ptr, cur, w*4);
141                 ptr += stride;
142                 cur += w*4;
143             }
144             break;
145         default:
146             goto unsupported;
147         }
148     }
149
150     for (; mipmap_count > 1 && buf_end - cur >= 4; mipmap_count--) {
151         uint32_t length = bytestream_get_le32(&cur);
152         if (buf_end - cur < length)
153             break;
154         cur += length;
155     }
156
157     *picture   = s->picture;
158     *data_size = sizeof(AVPicture);
159
160     return cur - buf;
161
162 unsupported:
163     av_log(avctx, AV_LOG_ERROR, "unsupported d3d format (%08x)\n", d3d_format);
164     return -1;
165 }
166
167 static av_cold int txd_end(AVCodecContext *avctx) {
168     TXDContext *s = avctx->priv_data;
169
170     if (s->picture.data[0])
171         avctx->release_buffer(avctx, &s->picture);
172
173     return 0;
174 }
175
176 AVCodec ff_txd_decoder = {
177     .name           = "txd",
178     .type           = AVMEDIA_TYPE_VIDEO,
179     .id             = CODEC_ID_TXD,
180     .priv_data_size = sizeof(TXDContext),
181     .init           = txd_init,
182     .close          = txd_end,
183     .decode         = txd_decode_frame,
184     .capabilities   = CODEC_CAP_DR1,
185     .long_name = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"),
186 };