~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/flic.c

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 flic.c
 
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
 
31
 * handles special FLIs from the PC game "Magic Carpet".
 
32
 */
 
33
 
 
34
#include "avformat.h"
 
35
 
 
36
#define FLIC_FILE_MAGIC_1 0xAF11
 
37
#define FLIC_FILE_MAGIC_2 0xAF12
 
38
#define FLIC_FILE_MAGIC_3 0xAF44  /* Flic Type for Extended FLX Format which
 
39
                                     originated in Dave's Targa Animator (DTA) */
 
40
#define FLIC_CHUNK_MAGIC_1 0xF1FA
 
41
#define FLIC_CHUNK_MAGIC_2 0xF5FA
 
42
#define FLIC_MC_PTS_INC 6000  /* pts increment for Magic Carpet game FLIs */
 
43
#define FLIC_DEFAULT_PTS_INC 6000  /* for FLIs that have 0 speed */
 
44
 
 
45
#define FLIC_HEADER_SIZE 128
 
46
#define FLIC_PREAMBLE_SIZE 6
 
47
 
 
48
typedef struct FlicDemuxContext {
 
49
    int frame_pts_inc;
 
50
    int64_t pts;
 
51
    int video_stream_index;
 
52
} FlicDemuxContext;
 
53
 
 
54
static int flic_probe(AVProbeData *p)
 
55
{
 
56
    int magic_number;
 
57
 
 
58
    if (p->buf_size < 6)
 
59
        return 0;
 
60
 
 
61
    magic_number = AV_RL16(&p->buf[4]);
 
62
    if ((magic_number != FLIC_FILE_MAGIC_1) &&
 
63
        (magic_number != FLIC_FILE_MAGIC_2) &&
 
64
        (magic_number != FLIC_FILE_MAGIC_3))
 
65
        return 0;
 
66
 
 
67
    return AVPROBE_SCORE_MAX;
 
68
}
 
69
 
 
70
static int flic_read_header(AVFormatContext *s,
 
71
                            AVFormatParameters *ap)
 
72
{
 
73
    FlicDemuxContext *flic = (FlicDemuxContext *)s->priv_data;
 
74
    ByteIOContext *pb = &s->pb;
 
75
    unsigned char header[FLIC_HEADER_SIZE];
 
76
    AVStream *st;
 
77
    int speed;
 
78
    int magic_number;
 
79
 
 
80
    flic->pts = 0;
 
81
 
 
82
    /* load the whole header and pull out the width and height */
 
83
    if (get_buffer(pb, header, FLIC_HEADER_SIZE) != FLIC_HEADER_SIZE)
 
84
        return AVERROR_IO;
 
85
 
 
86
    magic_number = AV_RL16(&header[4]);
 
87
    speed = AV_RL32(&header[0x10]);
 
88
 
 
89
    /* initialize the decoder streams */
 
90
    st = av_new_stream(s, 0);
 
91
    if (!st)
 
92
        return AVERROR_NOMEM;
 
93
    flic->video_stream_index = st->index;
 
94
    st->codec->codec_type = CODEC_TYPE_VIDEO;
 
95
    st->codec->codec_id = CODEC_ID_FLIC;
 
96
    st->codec->codec_tag = 0;  /* no fourcc */
 
97
    st->codec->width = AV_RL16(&header[0x08]);
 
98
    st->codec->height = AV_RL16(&header[0x0A]);
 
99
 
 
100
    if (!st->codec->width || !st->codec->height)
 
101
        return AVERROR_INVALIDDATA;
 
102
 
 
103
    /* send over the whole 128-byte FLIC header */
 
104
    st->codec->extradata_size = FLIC_HEADER_SIZE;
 
105
    st->codec->extradata = av_malloc(FLIC_HEADER_SIZE);
 
106
    memcpy(st->codec->extradata, header, FLIC_HEADER_SIZE);
 
107
 
 
108
    av_set_pts_info(st, 33, 1, 90000);
 
109
 
 
110
    /* Time to figure out the framerate: If there is a FLIC chunk magic
 
111
     * number at offset 0x10, assume this is from the Bullfrog game,
 
112
     * Magic Carpet. */
 
113
    if (AV_RL16(&header[0x10]) == FLIC_CHUNK_MAGIC_1) {
 
114
 
 
115
        flic->frame_pts_inc = FLIC_MC_PTS_INC;
 
116
 
 
117
        /* rewind the stream since the first chunk is at offset 12 */
 
118
        url_fseek(pb, 12, SEEK_SET);
 
119
 
 
120
        /* send over abbreviated FLIC header chunk */
 
121
        av_free(st->codec->extradata);
 
122
        st->codec->extradata_size = 12;
 
123
        st->codec->extradata = av_malloc(12);
 
124
        memcpy(st->codec->extradata, header, 12);
 
125
 
 
126
    } else if (magic_number == FLIC_FILE_MAGIC_1) {
 
127
        /*
 
128
         * in this case, the speed (n) is number of 1/70s ticks between frames:
 
129
         *
 
130
         *    pts        n * frame #
 
131
         *  --------  =  -----------  => pts = n * (90000/70) * frame #
 
132
         *   90000           70
 
133
         *
 
134
         *  therefore, the frame pts increment = n * 1285.7
 
135
         */
 
136
        flic->frame_pts_inc = speed * 1285.7;
 
137
    } else if ((magic_number == FLIC_FILE_MAGIC_2) ||
 
138
               (magic_number == FLIC_FILE_MAGIC_3)) {
 
139
        /*
 
140
         * in this case, the speed (n) is number of milliseconds between frames:
 
141
         *
 
142
         *    pts        n * frame #
 
143
         *  --------  =  -----------  => pts = n * 90 * frame #
 
144
         *   90000          1000
 
145
         *
 
146
         *  therefore, the frame pts increment = n * 90
 
147
         */
 
148
        flic->frame_pts_inc = speed * 90;
 
149
    } else {
 
150
        av_log(s, AV_LOG_INFO, "Invalid or unsupported magic chunk in file\n");
 
151
        return AVERROR_INVALIDDATA;
 
152
    }
 
153
 
 
154
    if (flic->frame_pts_inc == 0)
 
155
        flic->frame_pts_inc = FLIC_DEFAULT_PTS_INC;
 
156
 
 
157
    return 0;
 
158
}
 
159
 
 
160
static int flic_read_packet(AVFormatContext *s,
 
161
                            AVPacket *pkt)
 
162
{
 
163
    FlicDemuxContext *flic = (FlicDemuxContext *)s->priv_data;
 
164
    ByteIOContext *pb = &s->pb;
 
165
    int packet_read = 0;
 
166
    unsigned int size;
 
167
    int magic;
 
168
    int ret = 0;
 
169
    unsigned char preamble[FLIC_PREAMBLE_SIZE];
 
170
 
 
171
    while (!packet_read) {
 
172
 
 
173
        if ((ret = get_buffer(pb, preamble, FLIC_PREAMBLE_SIZE)) !=
 
174
            FLIC_PREAMBLE_SIZE) {
 
175
            ret = AVERROR_IO;
 
176
            break;
 
177
        }
 
178
 
 
179
        size = AV_RL32(&preamble[0]);
 
180
        magic = AV_RL16(&preamble[4]);
 
181
 
 
182
        if (((magic == FLIC_CHUNK_MAGIC_1) || (magic == FLIC_CHUNK_MAGIC_2)) && size > FLIC_PREAMBLE_SIZE) {
 
183
            if (av_new_packet(pkt, size)) {
 
184
                ret = AVERROR_IO;
 
185
                break;
 
186
            }
 
187
            pkt->stream_index = flic->video_stream_index;
 
188
            pkt->pts = flic->pts;
 
189
            pkt->pos = url_ftell(pb);
 
190
            memcpy(pkt->data, preamble, FLIC_PREAMBLE_SIZE);
 
191
            ret = get_buffer(pb, pkt->data + FLIC_PREAMBLE_SIZE,
 
192
                size - FLIC_PREAMBLE_SIZE);
 
193
            if (ret != size - FLIC_PREAMBLE_SIZE) {
 
194
                av_free_packet(pkt);
 
195
                ret = AVERROR_IO;
 
196
            }
 
197
            flic->pts += flic->frame_pts_inc;
 
198
            packet_read = 1;
 
199
        } else {
 
200
            /* not interested in this chunk */
 
201
            url_fseek(pb, size - 6, SEEK_CUR);
 
202
        }
 
203
    }
 
204
 
 
205
    return ret;
 
206
}
 
207
 
 
208
static int flic_read_close(AVFormatContext *s)
 
209
{
 
210
//    FlicDemuxContext *flic = (FlicDemuxContext *)s->priv_data;
 
211
 
 
212
    return 0;
 
213
}
 
214
 
 
215
AVInputFormat flic_demuxer = {
 
216
    "flic",
 
217
    "FLI/FLC/FLX animation format",
 
218
    sizeof(FlicDemuxContext),
 
219
    flic_probe,
 
220
    flic_read_header,
 
221
    flic_read_packet,
 
222
    flic_read_close,
 
223
};