2 * ASCII/ANSI art decoder
3 * Copyright (c) 2010 Peter Ross <pross@xvid.org>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * ASCII/ANSI art decoder
27 #include "libavutil/common.h"
28 #include "libavutil/frame.h"
29 #include "libavutil/lfg.h"
30 #include "libavutil/xga_font_data.h"
35 #define ATTR_BOLD 0x01 /**< Bold/Bright-foreground (mode 1) */
36 #define ATTR_FAINT 0x02 /**< Faint (mode 2) */
37 #define ATTR_UNDERLINE 0x08 /**< Underline (mode 4) */
38 #define ATTR_BLINK 0x10 /**< Blink/Bright-background (mode 5) */
39 #define ATTR_REVERSE 0x40 /**< Reverse (mode 7) */
40 #define ATTR_CONCEALED 0x80 /**< Concealed (mode 8) */
42 #define DEFAULT_FG_COLOR 7 /**< CGA color index */
43 #define DEFAULT_BG_COLOR 0
44 #define DEFAULT_SCREEN_MODE 3 /**< 80x25 */
46 #define FONT_WIDTH 8 /**< Font width */
48 /** map ansi color index to cga palette index */
49 static const uint8_t ansi_to_cga
[16] = {
50 0, 4, 2, 6, 1, 5, 3, 7, 8, 12, 10, 14, 9, 13, 11, 15
55 int x
; /**< x cursor position (pixels) */
56 int y
; /**< y cursor position (pixels) */
57 int sx
; /**< saved x cursor position (pixels) */
58 int sy
; /**< saved y cursor position (pixels) */
59 const uint8_t* font
; /**< font */
60 int font_height
; /**< font height */
61 int attributes
; /**< attribute flags */
62 int fg
; /**< foreground color */
63 int bg
; /**< background color */
66 /* ansi parser state machine */
74 int args
[MAX_NB_ARGS
];
75 int nb_args
; /**< number of arguments (may exceed MAX_NB_ARGS) */
78 static av_cold
int decode_init(AVCodecContext
*avctx
)
80 AnsiContext
*s
= avctx
->priv_data
;
81 avctx
->pix_fmt
= AV_PIX_FMT_PAL8
;
83 s
->frame
= av_frame_alloc();
85 return AVERROR(ENOMEM
);
88 s
->font
= avpriv_vga16_font
;
90 s
->fg
= DEFAULT_FG_COLOR
;
91 s
->bg
= DEFAULT_BG_COLOR
;
93 if (!avctx
->width
|| !avctx
->height
) {
94 int ret
= ff_set_dimensions(avctx
, 80 << 3, 25 << 4);
101 static void set_palette(uint32_t *pal
)
104 memcpy(pal
, ff_cga_palette
, 16 * 4);
106 #define COLOR(x) ((x) * 40 + 55)
107 for (r
= 0; r
< 6; r
++)
108 for (g
= 0; g
< 6; g
++)
109 for (b
= 0; b
< 6; b
++)
110 *pal
++ = 0xFF000000 | (COLOR(r
) << 16) | (COLOR(g
) << 8) | COLOR(b
);
111 #define GRAY(x) ((x) * 10 + 8)
112 for (g
= 0; g
< 24; g
++)
113 *pal
++ = 0xFF000000 | (GRAY(g
) << 16) | (GRAY(g
) << 8) | GRAY(g
);
116 static void hscroll(AVCodecContext
*avctx
)
118 AnsiContext
*s
= avctx
->priv_data
;
121 if (s
->y
<= avctx
->height
- 2*s
->font_height
) {
122 s
->y
+= s
->font_height
;
127 for (; i
< avctx
->height
- s
->font_height
; i
++)
128 memcpy(s
->frame
->data
[0] + i
* s
->frame
->linesize
[0],
129 s
->frame
->data
[0] + (i
+ s
->font_height
) * s
->frame
->linesize
[0],
131 for (; i
< avctx
->height
; i
++)
132 memset(s
->frame
->data
[0] + i
* s
->frame
->linesize
[0],
133 DEFAULT_BG_COLOR
, avctx
->width
);
136 static void erase_line(AVCodecContext
* avctx
, int xoffset
, int xlength
)
138 AnsiContext
*s
= avctx
->priv_data
;
140 for (i
= 0; i
< s
->font_height
; i
++)
141 memset(s
->frame
->data
[0] + (s
->y
+ i
)*s
->frame
->linesize
[0] + xoffset
,
142 DEFAULT_BG_COLOR
, xlength
);
145 static void erase_screen(AVCodecContext
*avctx
)
147 AnsiContext
*s
= avctx
->priv_data
;
149 for (i
= 0; i
< avctx
->height
; i
++)
150 memset(s
->frame
->data
[0] + i
* s
->frame
->linesize
[0], DEFAULT_BG_COLOR
, avctx
->width
);
155 * Draw character to screen
157 static void draw_char(AVCodecContext
*avctx
, int c
)
159 AnsiContext
*s
= avctx
->priv_data
;
163 if ((s
->attributes
& ATTR_BOLD
))
165 if ((s
->attributes
& ATTR_BLINK
))
167 if ((s
->attributes
& ATTR_REVERSE
))
169 if ((s
->attributes
& ATTR_CONCEALED
))
171 ff_draw_pc_font(s
->frame
->data
[0] + s
->y
* s
->frame
->linesize
[0] + s
->x
,
172 s
->frame
->linesize
[0], s
->font
, s
->font_height
, c
, fg
, bg
);
174 if (s
->x
> avctx
->width
- FONT_WIDTH
) {
181 * Execute ANSI escape code
182 * @return 0 on success, negative on error
184 static int execute_code(AVCodecContext
* avctx
, int c
)
186 AnsiContext
*s
= avctx
->priv_data
;
188 int width
= avctx
->width
;
189 int height
= avctx
->height
;
192 case 'A': //Cursor Up
193 s
->y
= FFMAX(s
->y
- (s
->nb_args
> 0 ? s
->args
[0]*s
->font_height
: s
->font_height
), 0);
195 case 'B': //Cursor Down
196 s
->y
= FFMIN(s
->y
+ (s
->nb_args
> 0 ? s
->args
[0]*s
->font_height
: s
->font_height
), avctx
->height
- s
->font_height
);
198 case 'C': //Cursor Right
199 s
->x
= FFMIN(s
->x
+ (s
->nb_args
> 0 ? s
->args
[0]*FONT_WIDTH
: FONT_WIDTH
), avctx
->width
- FONT_WIDTH
);
201 case 'D': //Cursor Left
202 s
->x
= FFMAX(s
->x
- (s
->nb_args
> 0 ? s
->args
[0]*FONT_WIDTH
: FONT_WIDTH
), 0);
204 case 'H': //Cursor Position
205 case 'f': //Horizontal and Vertical Position
206 s
->y
= s
->nb_args
> 0 ? av_clip((s
->args
[0] - 1)*s
->font_height
, 0, avctx
->height
- s
->font_height
) : 0;
207 s
->x
= s
->nb_args
> 1 ? av_clip((s
->args
[1] - 1)*FONT_WIDTH
, 0, avctx
->width
- FONT_WIDTH
) : 0;
209 case 'h': //set creen mode
210 case 'l': //reset screen mode
212 s
->args
[0] = DEFAULT_SCREEN_MODE
;
214 case 0: case 1: case 4: case 5: case 13: case 19: //320x200 (25 rows)
215 s
->font
= avpriv_cga_font
;
220 case 2: case 3: //640x400 (25 rows)
221 s
->font
= avpriv_vga16_font
;
226 case 6: case 14: //640x200 (25 rows)
227 s
->font
= avpriv_cga_font
;
232 case 7: //set line wrapping
234 case 15: case 16: //640x350 (43 rows)
235 s
->font
= avpriv_cga_font
;
240 case 17: case 18: //640x480 (60 rows)
241 s
->font
= avpriv_cga_font
;
247 avpriv_request_sample(avctx
, "Unsupported screen mode");
249 s
->x
= av_clip(s
->x
, 0, width
- FONT_WIDTH
);
250 s
->y
= av_clip(s
->y
, 0, height
- s
->font_height
);
251 if (width
!= avctx
->width
|| height
!= avctx
->height
) {
252 av_frame_unref(s
->frame
);
253 ret
= ff_set_dimensions(avctx
, width
, height
);
256 if ((ret
= ff_get_buffer(avctx
, s
->frame
,
257 AV_GET_BUFFER_FLAG_REF
)) < 0)
259 s
->frame
->pict_type
= AV_PICTURE_TYPE_I
;
260 s
->frame
->palette_has_changed
= 1;
261 set_palette((uint32_t *)s
->frame
->data
[1]);
263 } else if (c
== 'l') {
267 case 'J': //Erase in Page
268 switch (s
->args
[0]) {
270 erase_line(avctx
, s
->x
, avctx
->width
- s
->x
);
271 if (s
->y
< avctx
->height
- s
->font_height
)
272 memset(s
->frame
->data
[0] + (s
->y
+ s
->font_height
)*s
->frame
->linesize
[0],
273 DEFAULT_BG_COLOR
, (avctx
->height
- s
->y
- s
->font_height
)*s
->frame
->linesize
[0]);
276 erase_line(avctx
, 0, s
->x
);
278 memset(s
->frame
->data
[0], DEFAULT_BG_COLOR
, s
->y
* s
->frame
->linesize
[0]);
284 case 'K': //Erase in Line
287 erase_line(avctx
, s
->x
, avctx
->width
- s
->x
);
290 erase_line(avctx
, 0, s
->x
);
293 erase_line(avctx
, 0, avctx
->width
);
296 case 'm': //Select Graphics Rendition
297 if (s
->nb_args
== 0) {
301 for (i
= 0; i
< FFMIN(s
->nb_args
, MAX_NB_ARGS
); i
++) {
305 s
->fg
= DEFAULT_FG_COLOR
;
306 s
->bg
= DEFAULT_BG_COLOR
;
307 } else if (m
== 1 || m
== 2 || m
== 4 || m
== 5 || m
== 7 || m
== 8) {
308 s
->attributes
|= 1 << (m
- 1);
309 } else if (m
>= 30 && m
<= 37) {
310 s
->fg
= ansi_to_cga
[m
- 30];
311 } else if (m
== 38 && i
+ 2 < FFMIN(s
->nb_args
, MAX_NB_ARGS
) && s
->args
[i
+ 1] == 5 && s
->args
[i
+ 2] < 256) {
312 int index
= s
->args
[i
+ 2];
313 s
->fg
= index
< 16 ? ansi_to_cga
[index
] : index
;
315 } else if (m
== 39) {
316 s
->fg
= ansi_to_cga
[DEFAULT_FG_COLOR
];
317 } else if (m
>= 40 && m
<= 47) {
318 s
->bg
= ansi_to_cga
[m
- 40];
319 } else if (m
== 48 && i
+ 2 < FFMIN(s
->nb_args
, MAX_NB_ARGS
) && s
->args
[i
+ 1] == 5 && s
->args
[i
+ 2] < 256) {
320 int index
= s
->args
[i
+ 2];
321 s
->bg
= index
< 16 ? ansi_to_cga
[index
] : index
;
323 } else if (m
== 49) {
324 s
->fg
= ansi_to_cga
[DEFAULT_BG_COLOR
];
326 avpriv_request_sample(avctx
, "Unsupported rendition parameter");
330 case 'n': //Device Status Report
331 case 'R': //report current line and column
334 case 's': //Save Cursor Position
338 case 'u': //Restore Cursor Position
339 s
->x
= av_clip(s
->sx
, 0, avctx
->width
- FONT_WIDTH
);
340 s
->y
= av_clip(s
->sy
, 0, avctx
->height
- s
->font_height
);
343 avpriv_request_sample(avctx
, "Unknown escape code");
346 s
->x
= av_clip(s
->x
, 0, avctx
->width
- FONT_WIDTH
);
347 s
->y
= av_clip(s
->y
, 0, avctx
->height
- s
->font_height
);
351 static int decode_frame(AVCodecContext
*avctx
,
352 void *data
, int *got_frame
,
355 AnsiContext
*s
= avctx
->priv_data
;
356 uint8_t *buf
= avpkt
->data
;
357 int buf_size
= avpkt
->size
;
358 const uint8_t *buf_end
= buf
+buf_size
;
361 if ((ret
= ff_reget_buffer(avctx
, s
->frame
)) < 0)
363 if (!avctx
->frame_number
) {
364 for (i
=0; i
<avctx
->height
; i
++)
365 memset(s
->frame
->data
[0]+ i
*s
->frame
->linesize
[0], 0, avctx
->width
);
366 memset(s
->frame
->data
[1], 0, AVPALETTE_SIZE
);
369 s
->frame
->pict_type
= AV_PICTURE_TYPE_I
;
370 s
->frame
->palette_has_changed
= 1;
371 set_palette((uint32_t *)s
->frame
->data
[1]);
372 if (!s
->first_frame
) {
377 while(buf
< buf_end
) {
387 s
->x
= FFMAX(s
->x
- 1, 0);
390 i
= s
->x
/ FONT_WIDTH
;
391 count
= ((i
+ 8) & ~7) - i
;
392 for (i
= 0; i
< count
; i
++)
393 draw_char(avctx
, ' ');
404 s
->state
= STATE_ESCAPE
;
407 draw_char(avctx
, buf
[0]);
412 s
->state
= STATE_CODE
;
416 s
->state
= STATE_NORMAL
;
417 draw_char(avctx
, 0x1B);
423 case '0': case '1': case '2': case '3': case '4':
424 case '5': case '6': case '7': case '8': case '9':
425 if (s
->nb_args
< MAX_NB_ARGS
&& s
->args
[s
->nb_args
] < 6553)
426 s
->args
[s
->nb_args
] = FFMAX(s
->args
[s
->nb_args
], 0) * 10 + buf
[0] - '0';
430 if (s
->nb_args
< MAX_NB_ARGS
)
431 s
->args
[s
->nb_args
] = 0;
434 s
->state
= STATE_MUSIC_PREAMBLE
;
440 if (s
->nb_args
> MAX_NB_ARGS
)
441 av_log(avctx
, AV_LOG_WARNING
, "args overflow (%i)\n", s
->nb_args
);
442 if (s
->nb_args
< MAX_NB_ARGS
&& s
->args
[s
->nb_args
] >= 0)
444 if ((ret
= execute_code(avctx
, buf
[0])) < 0)
446 s
->state
= STATE_NORMAL
;
449 case STATE_MUSIC_PREAMBLE
:
450 if (buf
[0] == 0x0E || buf
[0] == 0x1B)
451 s
->state
= STATE_NORMAL
;
452 /* ignore music data */
459 if ((ret
= av_frame_ref(data
, s
->frame
)) < 0)
464 static av_cold
int decode_close(AVCodecContext
*avctx
)
466 AnsiContext
*s
= avctx
->priv_data
;
468 av_frame_free(&s
->frame
);
472 AVCodec ff_ansi_decoder
= {
474 .long_name
= NULL_IF_CONFIG_SMALL("ASCII/ANSI art"),
475 .type
= AVMEDIA_TYPE_VIDEO
,
476 .id
= AV_CODEC_ID_ANSI
,
477 .priv_data_size
= sizeof(AnsiContext
),
479 .close
= decode_close
,
480 .decode
= decode_frame
,
481 .capabilities
= CODEC_CAP_DR1
,