Files
FFmpeg/libavformat/tmv.c
T

194 lines
5.8 KiB
C
Raw Normal View History

2009-05-06 22:01:54 +00:00
/*
* 8088flex TMV file demuxer
* 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
*/
/**
* @file
* 8088flex TMV file demuxer
2009-05-06 22:01:54 +00:00
* @author Daniel Verkamp
* @see http://www.oldskool.org/pc/8088_Corruption
2009-05-06 22:01:54 +00:00
*/
2012-04-07 18:45:49 -04:00
#include "libavutil/channel_layout.h"
2009-05-06 22:01:54 +00:00
#include "libavutil/intreadwrite.h"
#include "avformat.h"
2011-11-29 19:28:15 +01:00
#include "internal.h"
2009-05-06 22:01:54 +00:00
enum {
TMV_PADDING = 0x01,
TMV_STEREO = 0x02,
};
#define TMV_TAG MKTAG('T', 'M', 'A', 'V')
typedef struct TMVContext {
unsigned audio_chunk_size;
unsigned video_chunk_size;
unsigned padding;
unsigned stream_index;
} TMVContext;
2009-10-20 19:27:25 +00:00
#define TMV_HEADER_SIZE 12
2009-10-09 18:24:47 +00:00
#define PROBE_MIN_SAMPLE_RATE 5000
#define PROBE_MAX_FPS 120
#define PROBE_MIN_AUDIO_SIZE (PROBE_MIN_SAMPLE_RATE / PROBE_MAX_FPS)
2019-03-21 01:18:37 +01:00
static int tmv_probe(const AVProbeData *p)
2009-05-06 22:01:54 +00:00
{
2009-10-09 18:24:47 +00:00
if (AV_RL32(p->buf) == TMV_TAG &&
AV_RL16(p->buf+4) >= PROBE_MIN_SAMPLE_RATE &&
AV_RL16(p->buf+6) >= PROBE_MIN_AUDIO_SIZE &&
!p->buf[8] && // compression method
p->buf[9] && // char cols
p->buf[10]) // char rows
2009-10-20 19:07:08 +00:00
return AVPROBE_SCORE_MAX /
((p->buf[9] == 40 && p->buf[10] == 25) ? 1 : 4);
2009-05-06 22:01:54 +00:00
return 0;
}
static int tmv_read_header(AVFormatContext *s)
2009-05-06 22:01:54 +00:00
{
TMVContext *tmv = s->priv_data;
2011-02-20 11:04:12 +01:00
AVIOContext *pb = s->pb;
2009-05-06 22:01:54 +00:00
AVStream *vst, *ast;
AVRational fps;
unsigned comp_method, char_cols, char_rows, features;
2011-02-21 16:43:01 +01:00
if (avio_rl32(pb) != TMV_TAG)
2009-05-06 22:01:54 +00:00
return -1;
if (!(vst = avformat_new_stream(s, NULL)))
2009-05-06 22:01:54 +00:00
return AVERROR(ENOMEM);
if (!(ast = avformat_new_stream(s, NULL)))
2009-05-06 22:01:54 +00:00
return AVERROR(ENOMEM);
ast->codecpar->sample_rate = avio_rl16(pb);
if (!ast->codecpar->sample_rate) {
2009-10-09 18:29:19 +00:00
av_log(s, AV_LOG_ERROR, "invalid sample rate\n");
return -1;
}
2011-02-21 16:43:01 +01:00
tmv->audio_chunk_size = avio_rl16(pb);
2009-05-06 22:01:54 +00:00
if (!tmv->audio_chunk_size) {
av_log(s, AV_LOG_ERROR, "invalid audio chunk size\n");
return -1;
}
2011-02-21 16:43:01 +01:00
comp_method = avio_r8(pb);
2009-05-06 22:01:54 +00:00
if (comp_method) {
av_log(s, AV_LOG_ERROR, "unsupported compression method %d\n",
comp_method);
return -1;
}
2011-02-21 16:43:01 +01:00
char_cols = avio_r8(pb);
char_rows = avio_r8(pb);
2009-05-06 22:01:54 +00:00
tmv->video_chunk_size = char_cols * char_rows * 2;
2011-02-21 16:43:01 +01:00
features = avio_r8(pb);
2009-05-06 22:01:54 +00:00
if (features & ~(TMV_PADDING | TMV_STEREO)) {
av_log(s, AV_LOG_ERROR, "unsupported features 0x%02x\n",
features & ~(TMV_PADDING | TMV_STEREO));
return -1;
}
ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
ast->codecpar->codec_id = AV_CODEC_ID_PCM_U8;
2017-03-31 18:47:25 +02:00
av_channel_layout_default(&ast->codecpar->ch_layout, !!(features & TMV_STEREO) + 1);
ast->codecpar->bits_per_coded_sample = 8;
ast->codecpar->bit_rate = ast->codecpar->sample_rate *
ast->codecpar->bits_per_coded_sample;
avpriv_set_pts_info(ast, 32, 1, ast->codecpar->sample_rate);
2009-05-06 22:01:54 +00:00
2017-03-31 18:47:25 +02:00
fps.num = ast->codecpar->sample_rate * ast->codecpar->ch_layout.nb_channels;
2009-05-06 22:01:54 +00:00
fps.den = tmv->audio_chunk_size;
av_reduce(&fps.num, &fps.den, fps.num, fps.den, 0xFFFFFFFFLL);
vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
vst->codecpar->codec_id = AV_CODEC_ID_TMV;
vst->codecpar->format = AV_PIX_FMT_PAL8;
vst->codecpar->width = char_cols * 8;
vst->codecpar->height = char_rows * 8;
2011-11-29 19:28:15 +01:00
avpriv_set_pts_info(vst, 32, fps.den, fps.num);
2009-05-06 22:01:54 +00:00
if (features & TMV_PADDING)
tmv->padding =
((tmv->video_chunk_size + tmv->audio_chunk_size + 511) & ~511) -
(tmv->video_chunk_size + tmv->audio_chunk_size);
vst->codecpar->bit_rate = ((tmv->video_chunk_size + tmv->padding) *
fps.num * 8) / fps.den;
2009-05-06 22:01:54 +00:00
return 0;
}
static int tmv_read_packet(AVFormatContext *s, AVPacket *pkt)
{
TMVContext *tmv = s->priv_data;
2011-02-20 11:04:12 +01:00
AVIOContext *pb = s->pb;
2009-05-06 22:01:54 +00:00
int ret, pkt_size = tmv->stream_index ?
tmv->audio_chunk_size : tmv->video_chunk_size;
if (avio_feof(pb))
2009-05-06 22:01:54 +00:00
return AVERROR_EOF;
ret = av_get_packet(pb, pkt, pkt_size);
if (tmv->stream_index)
avio_skip(pb, tmv->padding);
2009-05-06 22:01:54 +00:00
pkt->stream_index = tmv->stream_index;
tmv->stream_index ^= 1;
pkt->flags |= AV_PKT_FLAG_KEY;
2009-05-06 22:01:54 +00:00
return ret;
}
2009-10-20 19:27:25 +00:00
static int tmv_read_seek(AVFormatContext *s, int stream_index,
int64_t timestamp, int flags)
{
TMVContext *tmv = s->priv_data;
int64_t pos;
if (stream_index)
return -1;
pos = timestamp *
(tmv->audio_chunk_size + tmv->video_chunk_size + tmv->padding);
if (avio_seek(s->pb, pos + TMV_HEADER_SIZE, SEEK_SET) < 0)
return -1;
2009-10-20 19:27:25 +00:00
tmv->stream_index = 0;
return 0;
}
2021-04-19 19:45:24 +02:00
const AVInputFormat ff_tmv_demuxer = {
.name = "tmv",
.long_name = NULL_IF_CONFIG_SMALL("8088flex TMV"),
.priv_data_size = sizeof(TMVContext),
.read_probe = tmv_probe,
.read_header = tmv_read_header,
.read_packet = tmv_read_packet,
.read_seek = tmv_read_seek,
2012-04-06 17:50:48 +03:00
.flags = AVFMT_GENERIC_INDEX,
2009-05-06 22:01:54 +00:00
};