2009-05-06 21:57:20 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2011-07-14 01:46:19 +00:00
|
|
|
* 8088flex TMV video decoder
|
2009-05-06 21:57:20 +00:00
|
|
|
* @author Daniel Verkamp
|
2011-07-14 22:45:23 +00:00
|
|
|
* @see http://www.oldskool.org/pc/8088_Corruption
|
2009-05-06 21:57:20 +00:00
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2009-05-06 21:57:20 +00:00
|
|
|
#include "avcodec.h"
|
2012-11-10 12:22:56 +00:00
|
|
|
#include "internal.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/internal.h"
|
2012-09-22 07:56:33 +00:00
|
|
|
#include "libavutil/xga_font_data.h"
|
2009-05-06 21:57:20 +00:00
|
|
|
|
|
|
|
#include "cga_data.h"
|
|
|
|
|
|
|
|
static int tmv_decode_frame(AVCodecContext *avctx, void *data,
|
2012-11-13 18:35:22 +00:00
|
|
|
int *got_frame, AVPacket *avpkt)
|
2009-05-06 21:57:20 +00:00
|
|
|
{
|
2012-11-21 20:34:46 +00:00
|
|
|
AVFrame *frame = data;
|
2009-05-06 21:57:20 +00:00
|
|
|
const uint8_t *src = avpkt->data;
|
2010-07-18 07:46:29 +00:00
|
|
|
uint8_t *dst;
|
2009-05-06 21:57:20 +00:00
|
|
|
unsigned char_cols = avctx->width >> 3;
|
|
|
|
unsigned char_rows = avctx->height >> 3;
|
2010-07-18 07:46:29 +00:00
|
|
|
unsigned x, y, fg, bg, c;
|
2012-11-17 16:52:52 +00:00
|
|
|
int ret;
|
2009-05-06 21:57:20 +00:00
|
|
|
|
lavc: factorize ff_{thread_,re,}get_buffer error messages.
Coccinelle profile used:
@@
expression r, ctx, f, loglevel, str, flags;
@@
-if ((r = ff_get_buffer(ctx, f, flags)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_get_buffer(ctx, f, flags)) < 0)
+ return r;
@@
expression r, ctx, f, loglevel, str;
@@
-if ((r = ff_reget_buffer(ctx, f)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_reget_buffer(ctx, f)) < 0)
+ return r;
@@
expression r, ctx, f, loglevel, str, flags;
@@
-if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0)
+ return r;
...along with some manual patches for the remaining ones.
2013-03-12 07:41:53 +00:00
|
|
|
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
2012-11-17 16:52:52 +00:00
|
|
|
return ret;
|
2009-05-06 21:57:20 +00:00
|
|
|
|
2009-05-17 09:48:12 +00:00
|
|
|
if (avpkt->size < 2*char_rows*char_cols) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Input buffer too small, truncated sample?\n");
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 0;
|
2012-11-17 16:52:52 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2009-05-17 09:48:12 +00:00
|
|
|
}
|
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
frame->pict_type = AV_PICTURE_TYPE_I;
|
|
|
|
frame->key_frame = 1;
|
|
|
|
dst = frame->data[0];
|
2009-05-06 21:57:20 +00:00
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
frame->palette_has_changed = 1;
|
|
|
|
memcpy(frame->data[1], ff_cga_palette, 16 * 4);
|
2013-03-12 02:20:18 +00:00
|
|
|
memset(frame->data[1] + 16 * 4, 0, AVPALETTE_SIZE - 16 * 4);
|
2009-05-06 21:57:20 +00:00
|
|
|
|
|
|
|
for (y = 0; y < char_rows; y++) {
|
|
|
|
for (x = 0; x < char_cols; x++) {
|
2010-07-18 07:46:29 +00:00
|
|
|
c = *src++;
|
2009-05-06 21:57:20 +00:00
|
|
|
bg = *src >> 4;
|
|
|
|
fg = *src++ & 0xF;
|
2012-11-21 20:34:46 +00:00
|
|
|
ff_draw_pc_font(dst + x * 8, frame->linesize[0],
|
2012-09-22 07:56:33 +00:00
|
|
|
avpriv_cga_font, 8, c, fg, bg);
|
2009-05-06 21:57:20 +00:00
|
|
|
}
|
2012-11-21 20:34:46 +00:00
|
|
|
dst += frame->linesize[0] * 8;
|
2009-05-06 21:57:20 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2012-11-21 20:34:46 +00:00
|
|
|
|
2009-05-06 21:57:20 +00:00
|
|
|
return avpkt->size;
|
|
|
|
}
|
|
|
|
|
2011-12-18 14:17:07 +00:00
|
|
|
static av_cold int tmv_decode_init(AVCodecContext *avctx)
|
|
|
|
{
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8;
|
2009-05-06 21:57:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_tmv_decoder = {
|
2009-05-06 21:57:20 +00:00
|
|
|
.name = "tmv",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("8088flex TMV"),
|
2010-03-30 23:30:55 +00:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_TMV,
|
2011-05-02 00:15:15 +00:00
|
|
|
.init = tmv_decode_init,
|
2009-05-06 21:57:20 +00:00
|
|
|
.decode = tmv_decode_frame,
|
2009-06-05 08:47:39 +00:00
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2009-05-06 21:57:20 +00:00
|
|
|
};
|