]> git.sesse.net Git - ffmpeg/blob - libavcodec/txd.c
Replace all CODEC_ID_* with AV_CODEC_ID_*
[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 Libav.
8  *
9  * Libav 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  * Libav 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 Libav; 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 "avcodec.h"
27 #include "bytestream.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 = PIX_FMT_PAL8;
72     } else if (depth == 16 || depth == 32) {
73         avctx->pix_fmt = 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         bytestream2_skip(&gb, 4);
103         for (y=0; y<h; y++) {
104             bytestream2_get_buffer(&gb, ptr, w);
105             ptr += stride;
106         }
107     } else if (depth == 16) {
108         bytestream2_skip(&gb, 4);
109         switch (d3d_format) {
110         case 0:
111             if (!(flags & 1))
112                 goto unsupported;
113         case FF_S3TC_DXT1:
114             ff_decode_dxt1(&gb, ptr, w, h, stride);
115             break;
116         case FF_S3TC_DXT3:
117             ff_decode_dxt3(&gb, ptr, w, h, stride);
118             break;
119         default:
120             goto unsupported;
121         }
122     } else if (depth == 32) {
123         switch (d3d_format) {
124         case 0x15:
125         case 0x16:
126             for (y=0; y<h; y++) {
127                 bytestream2_get_buffer(&gb, ptr, w * 4);
128                 ptr += stride;
129             }
130             break;
131         default:
132             goto unsupported;
133         }
134     }
135
136     *picture   = s->picture;
137     *data_size = sizeof(AVPicture);
138
139     return avpkt->size;
140
141 unsupported:
142     av_log(avctx, AV_LOG_ERROR, "unsupported d3d format (%08x)\n", d3d_format);
143     return -1;
144 }
145
146 static av_cold int txd_end(AVCodecContext *avctx) {
147     TXDContext *s = avctx->priv_data;
148
149     if (s->picture.data[0])
150         avctx->release_buffer(avctx, &s->picture);
151
152     return 0;
153 }
154
155 AVCodec ff_txd_decoder = {
156     .name           = "txd",
157     .type           = AVMEDIA_TYPE_VIDEO,
158     .id             = AV_CODEC_ID_TXD,
159     .priv_data_size = sizeof(TXDContext),
160     .init           = txd_init,
161     .close          = txd_end,
162     .decode         = txd_decode_frame,
163     .capabilities   = CODEC_CAP_DR1,
164     .long_name      = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"),
165 };