]> git.sesse.net Git - ffmpeg/blob - libavcodec/txd.c
Merge commit '3b266da3d35f3f7a61258b78384dfe920d875d29'
[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 "bytestream.h"
29 #include "s3tc.h"
30
31 typedef struct TXDContext {
32     AVFrame picture;
33 } TXDContext;
34
35 static av_cold int txd_init(AVCodecContext *avctx) {
36     TXDContext *s = avctx->priv_data;
37
38     avcodec_get_frame_defaults(&s->picture);
39     avctx->coded_frame = &s->picture;
40
41     return 0;
42 }
43
44 static int txd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
45                             AVPacket *avpkt) {
46     TXDContext * const s = avctx->priv_data;
47     GetByteContext gb;
48     AVFrame *picture = data;
49     AVFrame * const p = &s->picture;
50     unsigned int version, w, h, d3d_format, depth, stride, flags;
51     unsigned int av_unused mipmap_count;
52     unsigned int y, v;
53     uint8_t *ptr;
54     uint32_t *pal;
55
56     bytestream2_init(&gb, avpkt->data, avpkt->size);
57     version         = bytestream2_get_le32(&gb);
58     bytestream2_skip(&gb, 72);
59     d3d_format      = bytestream2_get_le32(&gb);
60     w               = bytestream2_get_le16(&gb);
61     h               = bytestream2_get_le16(&gb);
62     depth           = bytestream2_get_byte(&gb);
63     mipmap_count    = bytestream2_get_byte(&gb);
64     bytestream2_skip(&gb, 1);
65     flags           = bytestream2_get_byte(&gb);
66
67     if (version < 8 || version > 9) {
68         av_log(avctx, AV_LOG_ERROR, "texture data version %i is unsupported\n",
69                                                                     version);
70         return -1;
71     }
72
73     if (depth == 8) {
74         avctx->pix_fmt = PIX_FMT_PAL8;
75     } else if (depth == 16 || depth == 32) {
76         avctx->pix_fmt = PIX_FMT_RGB32;
77     } else {
78         av_log(avctx, AV_LOG_ERROR, "depth of %i is unsupported\n", depth);
79         return -1;
80     }
81
82     if (p->data[0])
83         avctx->release_buffer(avctx, p);
84
85     if (av_image_check_size(w, h, 0, avctx))
86         return -1;
87     if (w != avctx->width || h != avctx->height)
88         avcodec_set_dimensions(avctx, w, h);
89     if (avctx->get_buffer(avctx, p) < 0) {
90         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
91         return -1;
92     }
93
94     p->pict_type = AV_PICTURE_TYPE_I;
95
96     ptr    = p->data[0];
97     stride = p->linesize[0];
98
99     if (depth == 8) {
100         pal = (uint32_t *) p->data[1];
101         for (y = 0; y < 256; y++) {
102             v = bytestream2_get_be32(&gb);
103             pal[y] = (v >> 8) + (v << 24);
104         }
105         if (bytestream2_get_bytes_left(&gb) < w * h)
106             return AVERROR_INVALIDDATA;
107         bytestream2_skip(&gb, 4);
108         for (y=0; y<h; y++) {
109             bytestream2_get_buffer(&gb, ptr, w);
110             ptr += stride;
111         }
112     } else if (depth == 16) {
113         bytestream2_skip(&gb, 4);
114         switch (d3d_format) {
115         case 0:
116             if (!(flags & 1))
117                 goto unsupported;
118         case FF_S3TC_DXT1:
119             if (bytestream2_get_bytes_left(&gb) < (w/4) * (h/4) * 8)
120                 return AVERROR_INVALIDDATA;
121             ff_decode_dxt1(&gb, ptr, w, h, stride);
122             break;
123         case FF_S3TC_DXT3:
124             if (bytestream2_get_bytes_left(&gb) < (w/4) * (h/4) * 16)
125                 return AVERROR_INVALIDDATA;
126             ff_decode_dxt3(&gb, ptr, w, h, stride);
127             break;
128         default:
129             goto unsupported;
130         }
131     } else if (depth == 32) {
132         switch (d3d_format) {
133         case 0x15:
134         case 0x16:
135             if (bytestream2_get_bytes_left(&gb) < h * w * 4)
136                 return AVERROR_INVALIDDATA;
137             for (y=0; y<h; y++) {
138                 bytestream2_get_buffer(&gb, ptr, w * 4);
139                 ptr += stride;
140             }
141             break;
142         default:
143             goto unsupported;
144         }
145     }
146
147     *picture   = s->picture;
148     *data_size = sizeof(AVPicture);
149
150     return avpkt->size;
151
152 unsupported:
153     av_log(avctx, AV_LOG_ERROR, "unsupported d3d format (%08x)\n", d3d_format);
154     return -1;
155 }
156
157 static av_cold int txd_end(AVCodecContext *avctx) {
158     TXDContext *s = avctx->priv_data;
159
160     if (s->picture.data[0])
161         avctx->release_buffer(avctx, &s->picture);
162
163     return 0;
164 }
165
166 AVCodec ff_txd_decoder = {
167     .name           = "txd",
168     .type           = AVMEDIA_TYPE_VIDEO,
169     .id             = CODEC_ID_TXD,
170     .priv_data_size = sizeof(TXDContext),
171     .init           = txd_init,
172     .close          = txd_end,
173     .decode         = txd_decode_frame,
174     .capabilities   = CODEC_CAP_DR1,
175     .long_name      = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"),
176 };