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