libavcodec/tmv.c
a1fd2bc3
 /*
  * 8088flex TMV video decoder
  * Copyright (c) 2009 Daniel Verkamp <daniel at drv.nu>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
f6f95d4e
  * 8088flex TMV video decoder
a1fd2bc3
  * @author Daniel Verkamp
bee6d2fd
  * @see http://www.oldskool.org/pc/8088_Corruption
a1fd2bc3
  */
 
1d9c2dc8
 #include <string.h>
 
a1fd2bc3
 #include "avcodec.h"
594d4d5d
 #include "internal.h"
1d9c2dc8
 #include "libavutil/internal.h"
81bbce9c
 #include "libavutil/xga_font_data.h"
a1fd2bc3
 
 #include "cga_data.h"
 
 typedef struct TMVContext {
     AVFrame pic;
 } TMVContext;
 
 static int tmv_decode_frame(AVCodecContext *avctx, void *data,
df9b9567
                             int *got_frame, AVPacket *avpkt)
a1fd2bc3
 {
     TMVContext *tmv    = avctx->priv_data;
     const uint8_t *src = avpkt->data;
3625999e
     uint8_t *dst;
a1fd2bc3
     unsigned char_cols = avctx->width >> 3;
     unsigned char_rows = avctx->height >> 3;
3625999e
     unsigned x, y, fg, bg, c;
a1fd2bc3
 
     if (tmv->pic.data[0])
         avctx->release_buffer(avctx, &tmv->pic);
 
594d4d5d
     if (ff_get_buffer(avctx, &tmv->pic) < 0) {
a1fd2bc3
         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
         return -1;
     }
 
a2c4b2cc
     if (avpkt->size < 2*char_rows*char_cols) {
         av_log(avctx, AV_LOG_ERROR,
                "Input buffer too small, truncated sample?\n");
df9b9567
         *got_frame = 0;
a2c4b2cc
         return -1;
     }
 
ce5e49b0
     tmv->pic.pict_type = AV_PICTURE_TYPE_I;
a1fd2bc3
     tmv->pic.key_frame = 1;
     dst                = tmv->pic.data[0];
 
     tmv->pic.palette_has_changed = 1;
     memcpy(tmv->pic.data[1], ff_cga_palette, 16 * 4);
 
     for (y = 0; y < char_rows; y++) {
         for (x = 0; x < char_cols; x++) {
3625999e
             c  = *src++;
a1fd2bc3
             bg = *src  >> 4;
             fg = *src++ & 0xF;
3625999e
             ff_draw_pc_font(dst + x * 8, tmv->pic.linesize[0],
81bbce9c
                             avpriv_cga_font, 8, c, fg, bg);
a1fd2bc3
         }
         dst += tmv->pic.linesize[0] * 8;
     }
 
df9b9567
     *got_frame = 1;
a1fd2bc3
     *(AVFrame *)data = tmv->pic;
     return avpkt->size;
 }
 
488a5b3f
 static av_cold int tmv_decode_init(AVCodecContext *avctx)
 {
7c29313b
     TMVContext *tmv = avctx->priv_data;
716d413c
     avctx->pix_fmt = AV_PIX_FMT_PAL8;
7c29313b
     avcodec_get_frame_defaults(&tmv->pic);
488a5b3f
     return 0;
 }
 
a1fd2bc3
 static av_cold int tmv_decode_close(AVCodecContext *avctx)
 {
     TMVContext *tmv = avctx->priv_data;
 
     if (tmv->pic.data[0])
         avctx->release_buffer(avctx, &tmv->pic);
 
     return 0;
 }
 
e7e2df27
 AVCodec ff_tmv_decoder = {
a1fd2bc3
     .name           = "tmv",
72415b2a
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_TMV,
a1fd2bc3
     .priv_data_size = sizeof(TMVContext),
01042d41
     .init           = tmv_decode_init,
a1fd2bc3
     .close          = tmv_decode_close,
     .decode         = tmv_decode_frame,
fa27733c
     .capabilities   = CODEC_CAP_DR1,
a1fd2bc3
     .long_name      = NULL_IF_CONFIG_SMALL("8088flex TMV"),
 };