2003-11-14 05:42:14 +00:00
|
|
|
/*
|
|
|
|
* FLI/FLC Animation File Demuxer
|
|
|
|
* Copyright (c) 2003 The ffmpeg Project
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2003-11-14 05:42:14 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-11-14 05:42:14 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2003-11-14 05:42:14 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-11-14 05:42:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2003-11-14 05:42:14 +00:00
|
|
|
* FLI/FLC file demuxer
|
|
|
|
* by Mike Melanson (melanson@pcisys.net)
|
|
|
|
* for more information on the .fli/.flc file format and all of its many
|
|
|
|
* variations, visit:
|
|
|
|
* http://www.compuphase.com/flic.htm
|
|
|
|
*
|
2010-04-22 09:04:33 +00:00
|
|
|
* This demuxer handles standard 0xAF11- and 0xAF12-type FLIs. It also handles
|
|
|
|
* special FLIs from the PC games "Magic Carpet" and "X-COM: Terror from the Deep".
|
2003-11-14 05:42:14 +00:00
|
|
|
*/
|
|
|
|
|
2012-11-10 15:00:00 +00:00
|
|
|
#include "libavutil/channel_layout.h"
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2003-11-14 05:42:14 +00:00
|
|
|
#include "avformat.h"
|
2011-11-29 18:28:15 +00:00
|
|
|
#include "internal.h"
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
#define FLIC_FILE_MAGIC_1 0xAF11
|
|
|
|
#define FLIC_FILE_MAGIC_2 0xAF12
|
2005-12-17 18:14:38 +00:00
|
|
|
#define FLIC_FILE_MAGIC_3 0xAF44 /* Flic Type for Extended FLX Format which
|
2005-10-13 04:35:31 +00:00
|
|
|
originated in Dave's Targa Animator (DTA) */
|
2003-11-14 05:42:14 +00:00
|
|
|
#define FLIC_CHUNK_MAGIC_1 0xF1FA
|
|
|
|
#define FLIC_CHUNK_MAGIC_2 0xF5FA
|
2007-09-04 17:33:35 +00:00
|
|
|
#define FLIC_MC_SPEED 5 /* speed for Magic Carpet game FLIs */
|
|
|
|
#define FLIC_DEFAULT_SPEED 5 /* for FLIs that have 0 speed */
|
2010-04-22 09:04:33 +00:00
|
|
|
#define FLIC_TFTD_CHUNK_AUDIO 0xAAAA /* Audio chunk. Used in Terror from the Deep.
|
|
|
|
Has 10 B extra header not accounted for in the chunk header */
|
|
|
|
#define FLIC_TFTD_SAMPLE_RATE 22050
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
#define FLIC_HEADER_SIZE 128
|
|
|
|
#define FLIC_PREAMBLE_SIZE 6
|
|
|
|
|
|
|
|
typedef struct FlicDemuxContext {
|
|
|
|
int video_stream_index;
|
2010-04-22 09:04:33 +00:00
|
|
|
int audio_stream_index;
|
2007-09-04 17:33:35 +00:00
|
|
|
int frame_number;
|
2003-11-14 05:42:14 +00:00
|
|
|
} FlicDemuxContext;
|
|
|
|
|
|
|
|
static int flic_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
int magic_number;
|
|
|
|
|
2008-07-14 22:55:07 +00:00
|
|
|
if(p->buf_size < FLIC_HEADER_SIZE)
|
|
|
|
return 0;
|
|
|
|
|
2007-01-19 22:12:59 +00:00
|
|
|
magic_number = AV_RL16(&p->buf[4]);
|
2003-11-14 05:42:14 +00:00
|
|
|
if ((magic_number != FLIC_FILE_MAGIC_1) &&
|
2005-10-13 04:35:31 +00:00
|
|
|
(magic_number != FLIC_FILE_MAGIC_2) &&
|
|
|
|
(magic_number != FLIC_FILE_MAGIC_3))
|
2003-11-14 05:42:14 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-07-14 22:55:07 +00:00
|
|
|
if(AV_RL16(&p->buf[0x10]) != FLIC_CHUNK_MAGIC_1){
|
|
|
|
if(AV_RL32(&p->buf[0x10]) > 2000)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( AV_RL16(&p->buf[0x08]) > 4096
|
|
|
|
|| AV_RL16(&p->buf[0x0A]) > 4096)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
2003-11-14 05:42:14 +00:00
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
}
|
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
static int flic_read_header(AVFormatContext *s)
|
2003-11-14 05:42:14 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
FlicDemuxContext *flic = s->priv_data;
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2003-11-14 05:42:14 +00:00
|
|
|
unsigned char header[FLIC_HEADER_SIZE];
|
2010-04-22 09:04:33 +00:00
|
|
|
AVStream *st, *ast;
|
2003-11-14 05:42:14 +00:00
|
|
|
int speed;
|
|
|
|
int magic_number;
|
2010-04-22 09:04:33 +00:00
|
|
|
unsigned char preamble[FLIC_PREAMBLE_SIZE];
|
2003-11-14 05:42:14 +00:00
|
|
|
|
2007-09-04 17:33:35 +00:00
|
|
|
flic->frame_number = 0;
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
/* load the whole header and pull out the width and height */
|
2011-02-21 15:43:01 +00:00
|
|
|
if (avio_read(pb, header, FLIC_HEADER_SIZE) != FLIC_HEADER_SIZE)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
2007-01-19 22:12:59 +00:00
|
|
|
magic_number = AV_RL16(&header[4]);
|
|
|
|
speed = AV_RL32(&header[0x10]);
|
2007-09-04 17:33:35 +00:00
|
|
|
if (speed == 0)
|
|
|
|
speed = FLIC_DEFAULT_SPEED;
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
/* initialize the decoder streams */
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2003-11-14 05:42:14 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2003-11-14 05:42:14 +00:00
|
|
|
flic->video_stream_index = st->index;
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2012-08-05 09:11:04 +00:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_FLIC;
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_tag = 0; /* no fourcc */
|
2007-01-19 22:12:59 +00:00
|
|
|
st->codec->width = AV_RL16(&header[0x08]);
|
|
|
|
st->codec->height = AV_RL16(&header[0x0A]);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
2007-08-14 15:51:30 +00:00
|
|
|
if (!st->codec->width || !st->codec->height) {
|
|
|
|
/* Ugly hack needed for the following sample: */
|
2011-04-17 18:13:59 +00:00
|
|
|
/* http://samples.libav.org/fli-flc/fli-bugs/specular.flc */
|
2007-08-14 15:51:30 +00:00
|
|
|
av_log(s, AV_LOG_WARNING,
|
|
|
|
"File with no specified width/height. Trying 640x480.\n");
|
|
|
|
st->codec->width = 640;
|
|
|
|
st->codec->height = 480;
|
|
|
|
}
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
/* send over the whole 128-byte FLIC header */
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->extradata_size = FLIC_HEADER_SIZE;
|
|
|
|
st->codec->extradata = av_malloc(FLIC_HEADER_SIZE);
|
|
|
|
memcpy(st->codec->extradata, header, FLIC_HEADER_SIZE);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
2010-04-22 09:04:33 +00:00
|
|
|
/* peek at the preamble to detect TFTD videos - they seem to always start with an audio chunk */
|
2011-02-21 15:43:01 +00:00
|
|
|
if (avio_read(pb, preamble, FLIC_PREAMBLE_SIZE) != FLIC_PREAMBLE_SIZE) {
|
2010-04-22 09:04:33 +00:00
|
|
|
av_log(s, AV_LOG_ERROR, "Failed to peek at preamble\n");
|
|
|
|
return AVERROR(EIO);
|
|
|
|
}
|
2003-11-14 05:42:14 +00:00
|
|
|
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, -FLIC_PREAMBLE_SIZE, SEEK_CUR);
|
2010-04-22 09:04:33 +00:00
|
|
|
|
|
|
|
/* Time to figure out the framerate:
|
|
|
|
* If the first preamble's magic number is 0xAAAA then this file is from
|
|
|
|
* X-COM: Terror from the Deep. If on the other hand there is a FLIC chunk
|
|
|
|
* magic number at offset 0x10 assume this file is from Magic Carpet instead.
|
|
|
|
* If neither of the above is true then this is a normal FLIC file.
|
|
|
|
*/
|
|
|
|
if (AV_RL16(&preamble[4]) == FLIC_TFTD_CHUNK_AUDIO) {
|
|
|
|
/* TFTD videos have an extra 22050 Hz 8-bit mono audio stream */
|
2011-06-18 09:43:24 +00:00
|
|
|
ast = avformat_new_stream(s, NULL);
|
2010-04-22 09:04:33 +00:00
|
|
|
if (!ast)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
|
|
|
flic->audio_stream_index = ast->index;
|
|
|
|
|
|
|
|
/* all audio frames are the same size, so use the size of the first chunk for block_align */
|
|
|
|
ast->codec->block_align = AV_RL32(&preamble[0]);
|
2010-09-25 23:27:16 +00:00
|
|
|
ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2012-08-05 09:11:04 +00:00
|
|
|
ast->codec->codec_id = AV_CODEC_ID_PCM_U8;
|
2010-04-22 09:04:33 +00:00
|
|
|
ast->codec->codec_tag = 0;
|
|
|
|
ast->codec->sample_rate = FLIC_TFTD_SAMPLE_RATE;
|
|
|
|
ast->codec->channels = 1;
|
2010-11-12 11:04:40 +00:00
|
|
|
ast->codec->sample_fmt = AV_SAMPLE_FMT_U8;
|
2010-04-22 09:04:33 +00:00
|
|
|
ast->codec->bit_rate = st->codec->sample_rate * 8;
|
|
|
|
ast->codec->bits_per_coded_sample = 8;
|
2011-02-03 13:26:09 +00:00
|
|
|
ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
|
2010-04-22 09:04:33 +00:00
|
|
|
ast->codec->extradata_size = 0;
|
|
|
|
|
|
|
|
/* Since the header information is incorrect we have to figure out the
|
|
|
|
* framerate using block_align and the fact that the audio is 22050 Hz.
|
|
|
|
* We usually have two cases: 2205 -> 10 fps and 1470 -> 15 fps */
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, ast->codec->block_align, FLIC_TFTD_SAMPLE_RATE);
|
|
|
|
avpriv_set_pts_info(ast, 64, 1, FLIC_TFTD_SAMPLE_RATE);
|
2010-04-22 09:04:33 +00:00
|
|
|
} else if (AV_RL16(&header[0x10]) == FLIC_CHUNK_MAGIC_1) {
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, FLIC_MC_SPEED, 70);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
/* rewind the stream since the first chunk is at offset 12 */
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, 12, SEEK_SET);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
/* send over abbreviated FLIC header chunk */
|
2005-07-17 22:24:36 +00:00
|
|
|
av_free(st->codec->extradata);
|
|
|
|
st->codec->extradata_size = 12;
|
|
|
|
st->codec->extradata = av_malloc(12);
|
|
|
|
memcpy(st->codec->extradata, header, 12);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
} else if (magic_number == FLIC_FILE_MAGIC_1) {
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, speed, 70);
|
2005-10-13 04:35:31 +00:00
|
|
|
} else if ((magic_number == FLIC_FILE_MAGIC_2) ||
|
|
|
|
(magic_number == FLIC_FILE_MAGIC_3)) {
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, speed, 1000);
|
2007-02-18 00:47:13 +00:00
|
|
|
} else {
|
|
|
|
av_log(s, AV_LOG_INFO, "Invalid or unsupported magic chunk in file\n");
|
2003-11-14 05:42:14 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2007-02-18 00:47:13 +00:00
|
|
|
}
|
2003-11-14 05:42:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int flic_read_packet(AVFormatContext *s,
|
|
|
|
AVPacket *pkt)
|
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
FlicDemuxContext *flic = s->priv_data;
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2003-11-14 05:42:14 +00:00
|
|
|
int packet_read = 0;
|
|
|
|
unsigned int size;
|
|
|
|
int magic;
|
|
|
|
int ret = 0;
|
|
|
|
unsigned char preamble[FLIC_PREAMBLE_SIZE];
|
|
|
|
|
|
|
|
while (!packet_read) {
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
if ((ret = avio_read(pb, preamble, FLIC_PREAMBLE_SIZE)) !=
|
2003-11-14 05:42:14 +00:00
|
|
|
FLIC_PREAMBLE_SIZE) {
|
2007-07-19 15:23:32 +00:00
|
|
|
ret = AVERROR(EIO);
|
2003-11-14 05:42:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-19 22:12:59 +00:00
|
|
|
size = AV_RL32(&preamble[0]);
|
|
|
|
magic = AV_RL16(&preamble[4]);
|
2003-11-14 05:42:14 +00:00
|
|
|
|
2005-01-12 00:16:25 +00:00
|
|
|
if (((magic == FLIC_CHUNK_MAGIC_1) || (magic == FLIC_CHUNK_MAGIC_2)) && size > FLIC_PREAMBLE_SIZE) {
|
2003-11-14 05:42:14 +00:00
|
|
|
if (av_new_packet(pkt, size)) {
|
2007-07-19 15:23:32 +00:00
|
|
|
ret = AVERROR(EIO);
|
2003-11-14 05:42:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
pkt->stream_index = flic->video_stream_index;
|
2007-09-04 17:33:35 +00:00
|
|
|
pkt->pts = flic->frame_number++;
|
2011-03-03 19:11:45 +00:00
|
|
|
pkt->pos = avio_tell(pb);
|
2003-11-14 05:42:14 +00:00
|
|
|
memcpy(pkt->data, preamble, FLIC_PREAMBLE_SIZE);
|
2011-02-21 15:43:01 +00:00
|
|
|
ret = avio_read(pb, pkt->data + FLIC_PREAMBLE_SIZE,
|
2003-11-14 05:42:14 +00:00
|
|
|
size - FLIC_PREAMBLE_SIZE);
|
|
|
|
if (ret != size - FLIC_PREAMBLE_SIZE) {
|
|
|
|
av_free_packet(pkt);
|
2007-07-19 15:23:32 +00:00
|
|
|
ret = AVERROR(EIO);
|
2003-11-14 05:42:14 +00:00
|
|
|
}
|
2010-04-22 09:04:33 +00:00
|
|
|
packet_read = 1;
|
|
|
|
} else if (magic == FLIC_TFTD_CHUNK_AUDIO) {
|
|
|
|
if (av_new_packet(pkt, size)) {
|
|
|
|
ret = AVERROR(EIO);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skip useless 10B sub-header (yes, it's not accounted for in the chunk header) */
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, 10);
|
2010-04-22 09:04:33 +00:00
|
|
|
|
|
|
|
pkt->stream_index = flic->audio_stream_index;
|
2011-03-03 19:11:45 +00:00
|
|
|
pkt->pos = avio_tell(pb);
|
2011-02-21 15:43:01 +00:00
|
|
|
ret = avio_read(pb, pkt->data, size);
|
2010-04-22 09:04:33 +00:00
|
|
|
|
|
|
|
if (ret != size) {
|
|
|
|
av_free_packet(pkt);
|
|
|
|
ret = AVERROR(EIO);
|
|
|
|
}
|
|
|
|
|
2003-11-14 05:42:14 +00:00
|
|
|
packet_read = 1;
|
|
|
|
} else {
|
|
|
|
/* not interested in this chunk */
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, size - 6);
|
2003-11-14 05:42:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_flic_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "flic",
|
2012-07-24 21:51:41 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("FLI/FLC/FLX animation"),
|
2011-07-16 20:18:12 +00:00
|
|
|
.priv_data_size = sizeof(FlicDemuxContext),
|
|
|
|
.read_probe = flic_probe,
|
|
|
|
.read_header = flic_read_header,
|
|
|
|
.read_packet = flic_read_packet,
|
2003-11-14 05:42:14 +00:00
|
|
|
};
|