]> git.sesse.net Git - ffmpeg/blob - libavcodec/bintext.c
Merge commit '9485cce6d55baf547e92ef1f54cad117f2a38287'
[ffmpeg] / libavcodec / bintext.c
1 /*
2  * Binary text decoder
3  * eXtended BINary text (XBIN) decoder
4  * iCEDraw File decoder
5  * Copyright (c) 2010 Peter Ross (pross@xvid.org)
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 /**
25  * @file
26  * Binary text decoder
27  * eXtended BINary text (XBIN) decoder
28  * iCEDraw File decoder
29  */
30
31 #include "libavutil/intreadwrite.h"
32 #include "libavutil/xga_font_data.h"
33 #include "avcodec.h"
34 #include "cga_data.h"
35 #include "bintext.h"
36 #include "internal.h"
37
38 #define FONT_WIDTH 8
39
40 typedef struct XbinContext {
41     AVFrame *frame;
42     int palette[16];
43     int flags;
44     int font_height;
45     const uint8_t *font;
46     int x, y;
47 } XbinContext;
48
49 static av_cold int decode_init(AVCodecContext *avctx)
50 {
51     XbinContext *s = avctx->priv_data;
52     uint8_t *p;
53     int i;
54
55     avctx->pix_fmt = AV_PIX_FMT_PAL8;
56     p = avctx->extradata;
57     if (p) {
58         s->font_height = p[0];
59         s->flags = p[1];
60         p += 2;
61         if(avctx->extradata_size < 2 + (!!(s->flags & BINTEXT_PALETTE))*3*16
62                                      + (!!(s->flags & BINTEXT_FONT))*s->font_height*256) {
63             av_log(avctx, AV_LOG_ERROR, "not enough extradata\n");
64             return AVERROR_INVALIDDATA;
65         }
66     } else {
67         s->font_height = 8;
68         s->flags = 0;
69     }
70
71     if ((s->flags & BINTEXT_PALETTE)) {
72         for (i = 0; i < 16; i++) {
73             s->palette[i] = 0xFF000000 | (AV_RB24(p) << 2) | ((AV_RB24(p) >> 4) & 0x30303);
74             p += 3;
75         }
76     } else {
77         for (i = 0; i < 16; i++)
78             s->palette[i] = 0xFF000000 | ff_cga_palette[i];
79     }
80
81     if ((s->flags & BINTEXT_FONT)) {
82         s->font = p;
83     } else {
84         switch(s->font_height) {
85         default:
86             av_log(avctx, AV_LOG_WARNING, "font height %i not supported\n", s->font_height);
87             s->font_height = 8;
88         case 8:
89             s->font = avpriv_cga_font;
90             break;
91         case 16:
92             s->font = avpriv_vga16_font;
93             break;
94         }
95     }
96     if (avctx->width < FONT_WIDTH || avctx->height < s->font_height) {
97         av_log(avctx, AV_LOG_ERROR, "Resolution too small for font.\n");
98         return AVERROR_INVALIDDATA;
99     }
100
101     return 0;
102 }
103
104 #define DEFAULT_BG_COLOR 0
105 av_unused static void hscroll(AVCodecContext *avctx)
106 {
107     XbinContext *s = avctx->priv_data;
108     if (s->y < avctx->height - s->font_height) {
109         s->y += s->font_height;
110     } else {
111         memmove(s->frame->data[0], s->frame->data[0] + s->font_height*s->frame->linesize[0],
112             (avctx->height - s->font_height)*s->frame->linesize[0]);
113         memset(s->frame->data[0] + (avctx->height - s->font_height)*s->frame->linesize[0],
114             DEFAULT_BG_COLOR, s->font_height * s->frame->linesize[0]);
115     }
116 }
117
118 /**
119  * Draw character to screen
120  */
121 static void draw_char(AVCodecContext *avctx, int c, int a)
122 {
123     XbinContext *s = avctx->priv_data;
124     if (s->y > avctx->height - s->font_height)
125         return;
126     ff_draw_pc_font(s->frame->data[0] + s->y * s->frame->linesize[0] + s->x,
127                     s->frame->linesize[0], s->font, s->font_height, c,
128                     a & 0x0F, a >> 4);
129     s->x += FONT_WIDTH;
130     if (s->x > avctx->width - FONT_WIDTH) {
131         s->x = 0;
132         s->y += s->font_height;
133     }
134 }
135
136 static int decode_frame(AVCodecContext *avctx,
137                             void *data, int *got_frame,
138                             AVPacket *avpkt)
139 {
140     XbinContext *s = avctx->priv_data;
141     const uint8_t *buf = avpkt->data;
142     int buf_size = avpkt->size;
143     const uint8_t *buf_end = buf+buf_size;
144     int ret;
145
146     if ((avctx->width / FONT_WIDTH) * (avctx->height / s->font_height) / 256 > buf_size)
147         return AVERROR_INVALIDDATA;
148
149     s->frame = data;
150     s->x = s->y = 0;
151     if ((ret = ff_get_buffer(avctx, s->frame, 0)) < 0)
152         return ret;
153     s->frame->pict_type           = AV_PICTURE_TYPE_I;
154     s->frame->palette_has_changed = 1;
155     memcpy(s->frame->data[1], s->palette, 16 * 4);
156
157     if (avctx->codec_id == AV_CODEC_ID_XBIN) {
158         while (buf + 2 < buf_end) {
159             int i,c,a;
160             int type  = *buf >> 6;
161             int count = (*buf & 0x3F) + 1;
162             buf++;
163             switch (type) {
164             case 0: //no compression
165                 for (i = 0; i < count && buf + 1 < buf_end; i++) {
166                     draw_char(avctx, buf[0], buf[1]);
167                     buf += 2;
168                 }
169                 break;
170             case 1: //character compression
171                 c = *buf++;
172                 for (i = 0; i < count && buf < buf_end; i++)
173                     draw_char(avctx, c, *buf++);
174                 break;
175             case 2: //attribute compression
176                 a = *buf++;
177                 for (i = 0; i < count && buf < buf_end; i++)
178                     draw_char(avctx, *buf++, a);
179                 break;
180             case 3: //character/attribute compression
181                 c = *buf++;
182                 a = *buf++;
183                 for (i = 0; i < count && buf < buf_end; i++)
184                     draw_char(avctx, c, a);
185                 break;
186             }
187         }
188     } else if (avctx->codec_id == AV_CODEC_ID_IDF) {
189         while (buf + 2 < buf_end) {
190             if (AV_RL16(buf) == 1) {
191                int i;
192                if (buf + 6 > buf_end)
193                    break;
194                for (i = 0; i < buf[2]; i++)
195                    draw_char(avctx, buf[4], buf[5]);
196                buf += 6;
197             } else {
198                draw_char(avctx, buf[0], buf[1]);
199                buf += 2;
200             }
201         }
202     } else {
203         while (buf + 1 < buf_end) {
204             draw_char(avctx, buf[0], buf[1]);
205             buf += 2;
206         }
207     }
208
209     *got_frame      = 1;
210     return buf_size;
211 }
212
213 #if CONFIG_BINTEXT_DECODER
214 AVCodec ff_bintext_decoder = {
215     .name           = "bintext",
216     .long_name      = NULL_IF_CONFIG_SMALL("Binary text"),
217     .type           = AVMEDIA_TYPE_VIDEO,
218     .id             = AV_CODEC_ID_BINTEXT,
219     .priv_data_size = sizeof(XbinContext),
220     .init           = decode_init,
221     .decode         = decode_frame,
222     .capabilities   = AV_CODEC_CAP_DR1,
223 };
224 #endif
225 #if CONFIG_XBIN_DECODER
226 AVCodec ff_xbin_decoder = {
227     .name           = "xbin",
228     .long_name      = NULL_IF_CONFIG_SMALL("eXtended BINary text"),
229     .type           = AVMEDIA_TYPE_VIDEO,
230     .id             = AV_CODEC_ID_XBIN,
231     .priv_data_size = sizeof(XbinContext),
232     .init           = decode_init,
233     .decode         = decode_frame,
234     .capabilities   = AV_CODEC_CAP_DR1,
235 };
236 #endif
237 #if CONFIG_IDF_DECODER
238 AVCodec ff_idf_decoder = {
239     .name           = "idf",
240     .long_name      = NULL_IF_CONFIG_SMALL("iCEDraw text"),
241     .type           = AVMEDIA_TYPE_VIDEO,
242     .id             = AV_CODEC_ID_IDF,
243     .priv_data_size = sizeof(XbinContext),
244     .init           = decode_init,
245     .decode         = decode_frame,
246     .capabilities   = AV_CODEC_CAP_DR1,
247 };
248 #endif