]> git.sesse.net Git - ffmpeg/blob - libavcodec/tmv.c
Merge commit '71155d7b4157fee44c0d3d0fc1b660ebfb9ccf46'
[ffmpeg] / libavcodec / tmv.c
1 /*
2  * 8088flex TMV video decoder
3  * Copyright (c) 2009 Daniel Verkamp <daniel at drv.nu>
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 /**
23  * @file
24  * 8088flex TMV video decoder
25  * @author Daniel Verkamp
26  * @see http://www.oldskool.org/pc/8088_Corruption
27  */
28
29 #include <string.h>
30
31 #include "avcodec.h"
32 #include "internal.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/xga_font_data.h"
35
36 #include "cga_data.h"
37
38 typedef struct TMVContext {
39     AVFrame pic;
40 } TMVContext;
41
42 static int tmv_decode_frame(AVCodecContext *avctx, void *data,
43                             int *got_frame, AVPacket *avpkt)
44 {
45     TMVContext *tmv    = avctx->priv_data;
46     const uint8_t *src = avpkt->data;
47     uint8_t *dst;
48     unsigned char_cols = avctx->width >> 3;
49     unsigned char_rows = avctx->height >> 3;
50     unsigned x, y, fg, bg, c;
51     int ret;
52
53     if (tmv->pic.data[0])
54         avctx->release_buffer(avctx, &tmv->pic);
55
56     if ((ret = ff_get_buffer(avctx, &tmv->pic)) < 0) {
57         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
58         return ret;
59     }
60
61     if (avpkt->size < 2*char_rows*char_cols) {
62         av_log(avctx, AV_LOG_ERROR,
63                "Input buffer too small, truncated sample?\n");
64         *got_frame = 0;
65         return AVERROR_INVALIDDATA;
66     }
67
68     tmv->pic.pict_type = AV_PICTURE_TYPE_I;
69     tmv->pic.key_frame = 1;
70     dst                = tmv->pic.data[0];
71
72     tmv->pic.palette_has_changed = 1;
73     memcpy(tmv->pic.data[1], ff_cga_palette, 16 * 4);
74
75     for (y = 0; y < char_rows; y++) {
76         for (x = 0; x < char_cols; x++) {
77             c  = *src++;
78             bg = *src  >> 4;
79             fg = *src++ & 0xF;
80             ff_draw_pc_font(dst + x * 8, tmv->pic.linesize[0],
81                             avpriv_cga_font, 8, c, fg, bg);
82         }
83         dst += tmv->pic.linesize[0] * 8;
84     }
85
86     *got_frame = 1;
87     *(AVFrame *)data = tmv->pic;
88     return avpkt->size;
89 }
90
91 static av_cold int tmv_decode_init(AVCodecContext *avctx)
92 {
93     TMVContext *tmv = avctx->priv_data;
94     avctx->pix_fmt = AV_PIX_FMT_PAL8;
95     avcodec_get_frame_defaults(&tmv->pic);
96     return 0;
97 }
98
99 static av_cold int tmv_decode_close(AVCodecContext *avctx)
100 {
101     TMVContext *tmv = avctx->priv_data;
102
103     if (tmv->pic.data[0])
104         avctx->release_buffer(avctx, &tmv->pic);
105
106     return 0;
107 }
108
109 AVCodec ff_tmv_decoder = {
110     .name           = "tmv",
111     .type           = AVMEDIA_TYPE_VIDEO,
112     .id             = AV_CODEC_ID_TMV,
113     .priv_data_size = sizeof(TMVContext),
114     .init           = tmv_decode_init,
115     .close          = tmv_decode_close,
116     .decode         = tmv_decode_frame,
117     .capabilities   = CODEC_CAP_DR1,
118     .long_name      = NULL_IF_CONFIG_SMALL("8088flex TMV"),
119 };