]> git.sesse.net Git - ffmpeg/blob - libavformat/flic.c
Merge commit '459f2b393a3f89ed08d10fbceb4738d1429f268e'
[ffmpeg] / libavformat / flic.c
1 /*
2  * FLI/FLC Animation File Demuxer
3  * Copyright (c) 2003 The ffmpeg Project
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * FLI/FLC file demuxer
25  * by Mike Melanson (melanson@pcisys.net)
26  * for more information on the .fli/.flc file format and all of its many
27  * variations, visit:
28  *   http://www.compuphase.com/flic.htm
29  *
30  * This demuxer handles standard 0xAF11- and 0xAF12-type FLIs. It also handles
31  * special FLIs from the PC games "Magic Carpet" and "X-COM: Terror from the Deep".
32  */
33
34 #include "libavutil/channel_layout.h"
35 #include "libavutil/intreadwrite.h"
36 #include "avformat.h"
37 #include "internal.h"
38
39 #define FLIC_FILE_MAGIC_1 0xAF11
40 #define FLIC_FILE_MAGIC_2 0xAF12
41 #define FLIC_FILE_MAGIC_3 0xAF44  /* Flic Type for Extended FLX Format which
42                                      originated in Dave's Targa Animator (DTA) */
43 #define FLIC_CHUNK_MAGIC_1 0xF1FA
44 #define FLIC_CHUNK_MAGIC_2 0xF5FA
45 #define FLIC_MC_SPEED 5  /* speed for Magic Carpet game FLIs */
46 #define FLIC_DEFAULT_SPEED 5  /* for FLIs that have 0 speed */
47 #define FLIC_TFTD_CHUNK_AUDIO 0xAAAA /* Audio chunk. Used in Terror from the Deep.
48                                         Has 10 B extra header not accounted for in the chunk header */
49 #define FLIC_TFTD_SAMPLE_RATE 22050
50
51 #define FLIC_HEADER_SIZE 128
52 #define FLIC_PREAMBLE_SIZE 6
53
54 typedef struct FlicDemuxContext {
55     int video_stream_index;
56     int audio_stream_index;
57     int frame_number;
58 } FlicDemuxContext;
59
60 static int flic_probe(AVProbeData *p)
61 {
62     int magic_number;
63
64     if(p->buf_size < FLIC_HEADER_SIZE)
65         return 0;
66
67     magic_number = AV_RL16(&p->buf[4]);
68     if ((magic_number != FLIC_FILE_MAGIC_1) &&
69         (magic_number != FLIC_FILE_MAGIC_2) &&
70         (magic_number != FLIC_FILE_MAGIC_3))
71         return 0;
72
73     if(AV_RL16(&p->buf[0x10]) != FLIC_CHUNK_MAGIC_1){
74         if(AV_RL32(&p->buf[0x10]) > 2000)
75             return 0;
76     }
77
78     if(   AV_RL16(&p->buf[0x08]) > 4096
79        || AV_RL16(&p->buf[0x0A]) > 4096)
80         return 0;
81
82
83     return AVPROBE_SCORE_MAX - 1;
84 }
85
86 static int flic_read_header(AVFormatContext *s)
87 {
88     FlicDemuxContext *flic = s->priv_data;
89     AVIOContext *pb = s->pb;
90     unsigned char header[FLIC_HEADER_SIZE];
91     AVStream *st, *ast;
92     int speed;
93     int magic_number;
94     unsigned char preamble[FLIC_PREAMBLE_SIZE];
95
96     flic->frame_number = 0;
97
98     /* load the whole header and pull out the width and height */
99     if (avio_read(pb, header, FLIC_HEADER_SIZE) != FLIC_HEADER_SIZE)
100         return AVERROR(EIO);
101
102     magic_number = AV_RL16(&header[4]);
103     speed = AV_RL32(&header[0x10]);
104     if (speed == 0)
105         speed = FLIC_DEFAULT_SPEED;
106
107     /* initialize the decoder streams */
108     st = avformat_new_stream(s, NULL);
109     if (!st)
110         return AVERROR(ENOMEM);
111     flic->video_stream_index = st->index;
112     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
113     st->codec->codec_id = AV_CODEC_ID_FLIC;
114     st->codec->codec_tag = 0;  /* no fourcc */
115     st->codec->width = AV_RL16(&header[0x08]);
116     st->codec->height = AV_RL16(&header[0x0A]);
117
118     if (!st->codec->width || !st->codec->height) {
119         /* Ugly hack needed for the following sample: */
120         /* http://samples.mplayerhq.hu/fli-flc/fli-bugs/specular.flc */
121         av_log(s, AV_LOG_WARNING,
122                "File with no specified width/height. Trying 640x480.\n");
123         st->codec->width  = 640;
124         st->codec->height = 480;
125     }
126
127     /* send over the whole 128-byte FLIC header */
128     st->codec->extradata = av_malloc(FLIC_HEADER_SIZE);
129     if (!st->codec->extradata)
130         return AVERROR(ENOMEM);
131     st->codec->extradata_size = FLIC_HEADER_SIZE;
132     memcpy(st->codec->extradata, header, FLIC_HEADER_SIZE);
133
134     /* peek at the preamble to detect TFTD videos - they seem to always start with an audio chunk */
135     if (avio_read(pb, preamble, FLIC_PREAMBLE_SIZE) != FLIC_PREAMBLE_SIZE) {
136         av_log(s, AV_LOG_ERROR, "Failed to peek at preamble\n");
137         return AVERROR(EIO);
138     }
139
140     avio_seek(pb, -FLIC_PREAMBLE_SIZE, SEEK_CUR);
141
142     /* Time to figure out the framerate:
143      * If the first preamble's magic number is 0xAAAA then this file is from
144      * X-COM: Terror from the Deep. If on the other hand there is a FLIC chunk
145      * magic number at offset 0x10 assume this file is from Magic Carpet instead.
146      * If neither of the above is true then this is a normal FLIC file.
147      */
148     if (AV_RL16(&preamble[4]) == FLIC_TFTD_CHUNK_AUDIO) {
149         /* TFTD videos have an extra 22050 Hz 8-bit mono audio stream */
150         ast = avformat_new_stream(s, NULL);
151         if (!ast)
152             return AVERROR(ENOMEM);
153
154         flic->audio_stream_index = ast->index;
155
156         /* all audio frames are the same size, so use the size of the first chunk for block_align */
157         ast->codec->block_align = AV_RL32(&preamble[0]);
158         ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
159         ast->codec->codec_id = AV_CODEC_ID_PCM_U8;
160         ast->codec->codec_tag = 0;
161         ast->codec->sample_rate = FLIC_TFTD_SAMPLE_RATE;
162         ast->codec->channels = 1;
163         ast->codec->bit_rate = st->codec->sample_rate * 8;
164         ast->codec->bits_per_coded_sample = 8;
165         ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
166         ast->codec->extradata_size = 0;
167
168         /* Since the header information is incorrect we have to figure out the
169          * framerate using block_align and the fact that the audio is 22050 Hz.
170          * We usually have two cases: 2205 -> 10 fps and 1470 -> 15 fps */
171         avpriv_set_pts_info(st, 64, ast->codec->block_align, FLIC_TFTD_SAMPLE_RATE);
172         avpriv_set_pts_info(ast, 64, 1, FLIC_TFTD_SAMPLE_RATE);
173     } else if (AV_RL16(&header[0x10]) == FLIC_CHUNK_MAGIC_1) {
174         avpriv_set_pts_info(st, 64, FLIC_MC_SPEED, 70);
175
176         /* rewind the stream since the first chunk is at offset 12 */
177         avio_seek(pb, 12, SEEK_SET);
178
179         /* send over abbreviated FLIC header chunk */
180         av_free(st->codec->extradata);
181         st->codec->extradata = av_malloc(12);
182         if (!st->codec->extradata)
183             return AVERROR(ENOMEM);
184         st->codec->extradata_size = 12;
185         memcpy(st->codec->extradata, header, 12);
186
187     } else if (magic_number == FLIC_FILE_MAGIC_1) {
188         avpriv_set_pts_info(st, 64, speed, 70);
189     } else if ((magic_number == FLIC_FILE_MAGIC_2) ||
190                (magic_number == FLIC_FILE_MAGIC_3)) {
191         avpriv_set_pts_info(st, 64, speed, 1000);
192     } else {
193         av_log(s, AV_LOG_ERROR, "Invalid or unsupported magic chunk in file\n");
194         return AVERROR_INVALIDDATA;
195     }
196
197     return 0;
198 }
199
200 static int flic_read_packet(AVFormatContext *s,
201                             AVPacket *pkt)
202 {
203     FlicDemuxContext *flic = s->priv_data;
204     AVIOContext *pb = s->pb;
205     int packet_read = 0;
206     unsigned int size;
207     int magic;
208     int ret = 0;
209     unsigned char preamble[FLIC_PREAMBLE_SIZE];
210
211     while (!packet_read) {
212
213         if ((ret = avio_read(pb, preamble, FLIC_PREAMBLE_SIZE)) !=
214             FLIC_PREAMBLE_SIZE) {
215             ret = AVERROR(EIO);
216             break;
217         }
218
219         size = AV_RL32(&preamble[0]);
220         magic = AV_RL16(&preamble[4]);
221
222         if (((magic == FLIC_CHUNK_MAGIC_1) || (magic == FLIC_CHUNK_MAGIC_2)) && size > FLIC_PREAMBLE_SIZE) {
223             if (av_new_packet(pkt, size)) {
224                 ret = AVERROR(EIO);
225                 break;
226             }
227             pkt->stream_index = flic->video_stream_index;
228             pkt->pts = flic->frame_number++;
229             pkt->pos = avio_tell(pb);
230             memcpy(pkt->data, preamble, FLIC_PREAMBLE_SIZE);
231             ret = avio_read(pb, pkt->data + FLIC_PREAMBLE_SIZE,
232                 size - FLIC_PREAMBLE_SIZE);
233             if (ret != size - FLIC_PREAMBLE_SIZE) {
234                 av_free_packet(pkt);
235                 ret = AVERROR(EIO);
236             }
237             packet_read = 1;
238         } else if (magic == FLIC_TFTD_CHUNK_AUDIO) {
239             if (av_new_packet(pkt, size)) {
240                 ret = AVERROR(EIO);
241                 break;
242             }
243
244             /* skip useless 10B sub-header (yes, it's not accounted for in the chunk header) */
245             avio_skip(pb, 10);
246
247             pkt->stream_index = flic->audio_stream_index;
248             pkt->pos = avio_tell(pb);
249             ret = avio_read(pb, pkt->data, size);
250
251             if (ret != size) {
252                 av_free_packet(pkt);
253                 ret = AVERROR(EIO);
254             }
255
256             packet_read = 1;
257         } else {
258             /* not interested in this chunk */
259             avio_skip(pb, size - 6);
260         }
261     }
262
263     return ret;
264 }
265
266 AVInputFormat ff_flic_demuxer = {
267     .name           = "flic",
268     .long_name      = NULL_IF_CONFIG_SMALL("FLI/FLC/FLX animation"),
269     .priv_data_size = sizeof(FlicDemuxContext),
270     .read_probe     = flic_probe,
271     .read_header    = flic_read_header,
272     .read_packet    = flic_read_packet,
273 };