tmv.c 5.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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
 */

/**
23
 * @file
24
 * 8088flex TMV file demuxer
25
 * @author Daniel Verkamp
26
 * @see http://www.oldskool.org/pc/8088_Corruption
27 28
 */

Justin Ruggles's avatar
Justin Ruggles committed
29
#include "libavutil/channel_layout.h"
30 31
#include "libavutil/intreadwrite.h"
#include "avformat.h"
32
#include "internal.h"
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

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;

Daniel Verkamp's avatar
Daniel Verkamp committed
48 49
#define TMV_HEADER_SIZE       12

Daniel Verkamp's avatar
Daniel Verkamp committed
50 51 52 53
#define PROBE_MIN_SAMPLE_RATE 5000
#define PROBE_MAX_FPS         120
#define PROBE_MIN_AUDIO_SIZE  (PROBE_MIN_SAMPLE_RATE / PROBE_MAX_FPS)

54 55
static int tmv_probe(AVProbeData *p)
{
Daniel Verkamp's avatar
Daniel Verkamp committed
56 57 58 59 60 61
    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
62 63
        return AVPROBE_SCORE_MAX /
            ((p->buf[9] == 40 && p->buf[10] == 25) ? 1 : 4);
64 65 66
    return 0;
}

67
static int tmv_read_header(AVFormatContext *s)
68 69
{
    TMVContext *tmv   = s->priv_data;
70
    AVIOContext *pb = s->pb;
71 72 73 74
    AVStream *vst, *ast;
    AVRational fps;
    unsigned comp_method, char_cols, char_rows, features;

75
    if (avio_rl32(pb) != TMV_TAG)
76 77
        return -1;

78
    if (!(vst = avformat_new_stream(s, NULL)))
79 80
        return AVERROR(ENOMEM);

81
    if (!(ast = avformat_new_stream(s, NULL)))
82 83
        return AVERROR(ENOMEM);

84
    ast->codec->sample_rate = avio_rl16(pb);
85 86 87 88 89
    if (!ast->codec->sample_rate) {
        av_log(s, AV_LOG_ERROR, "invalid sample rate\n");
        return -1;
    }

90
    tmv->audio_chunk_size   = avio_rl16(pb);
91 92 93 94 95
    if (!tmv->audio_chunk_size) {
        av_log(s, AV_LOG_ERROR, "invalid audio chunk size\n");
        return -1;
    }

96
    comp_method             = avio_r8(pb);
97 98 99 100 101 102
    if (comp_method) {
        av_log(s, AV_LOG_ERROR, "unsupported compression method %d\n",
               comp_method);
        return -1;
    }

103 104
    char_cols = avio_r8(pb);
    char_rows = avio_r8(pb);
105 106
    tmv->video_chunk_size = char_cols * char_rows * 2;

107
    features  = avio_r8(pb);
108 109 110 111 112 113
    if (features & ~(TMV_PADDING | TMV_STEREO)) {
        av_log(s, AV_LOG_ERROR, "unsupported features 0x%02x\n",
               features & ~(TMV_PADDING | TMV_STEREO));
        return -1;
    }

114
    ast->codec->codec_type            = AVMEDIA_TYPE_AUDIO;
115
    ast->codec->codec_id              = AV_CODEC_ID_PCM_U8;
Justin Ruggles's avatar
Justin Ruggles committed
116 117 118 119 120 121 122
    if (features & TMV_STEREO) {
        ast->codec->channels       = 2;
        ast->codec->channel_layout = AV_CH_LAYOUT_STEREO;
    } else {
        ast->codec->channels       = 1;
        ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
    }
123 124 125
    ast->codec->bits_per_coded_sample = 8;
    ast->codec->bit_rate              = ast->codec->sample_rate *
                                        ast->codec->bits_per_coded_sample;
126
    avpriv_set_pts_info(ast, 32, 1, ast->codec->sample_rate);
127 128 129 130 131

    fps.num = ast->codec->sample_rate * ast->codec->channels;
    fps.den = tmv->audio_chunk_size;
    av_reduce(&fps.num, &fps.den, fps.num, fps.den, 0xFFFFFFFFLL);

132
    vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
133
    vst->codec->codec_id   = AV_CODEC_ID_TMV;
134
    vst->codec->pix_fmt    = AV_PIX_FMT_PAL8;
135 136
    vst->codec->width      = char_cols * 8;
    vst->codec->height     = char_rows * 8;
137
    avpriv_set_pts_info(vst, 32, fps.den, fps.num);
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152

    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->codec->bit_rate = ((tmv->video_chunk_size + tmv->padding) *
                            fps.num * 8) / fps.den;

    return 0;
}

static int tmv_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    TMVContext *tmv   = s->priv_data;
153
    AVIOContext *pb = s->pb;
154 155 156
    int ret, pkt_size = tmv->stream_index ?
                        tmv->audio_chunk_size : tmv->video_chunk_size;

157
    if (avio_feof(pb))
158 159 160 161 162
        return AVERROR_EOF;

    ret = av_get_packet(pb, pkt, pkt_size);

    if (tmv->stream_index)
163
        avio_skip(pb, tmv->padding);
164 165 166

    pkt->stream_index  = tmv->stream_index;
    tmv->stream_index ^= 1;
167
    pkt->flags        |= AV_PKT_FLAG_KEY;
168 169 170 171

    return ret;
}

Daniel Verkamp's avatar
Daniel Verkamp committed
172 173 174 175 176 177 178 179 180 181 182 183
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);

184 185
    if (avio_seek(s->pb, pos + TMV_HEADER_SIZE, SEEK_SET) < 0)
        return -1;
Daniel Verkamp's avatar
Daniel Verkamp committed
186 187 188 189
    tmv->stream_index = 0;
    return 0;
}

190
AVInputFormat ff_tmv_demuxer = {
191 192 193 194 195 196 197
    .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,
198
    .flags          = AVFMT_GENERIC_INDEX,
199
};