Mercurial > libavformat.hg
annotate flic.c @ 4162:d9dede8fe890 libavformat
Remove inappropriate const qualifier from function argument, fixes the warning:
libavformat/dvenc.c:256: warning: passing argument 2 of ¡Æav_fifo_generic_write¡Ç discards qualifiers from pointer target type
author | diego |
---|---|
date | Wed, 07 Jan 2009 01:19:48 +0000 |
parents | a81d82e21714 |
children | 7d2f3f1b68d8 |
rev | line source |
---|---|
315 | 1 /* |
2 * FLI/FLC Animation File Demuxer | |
3 * Copyright (c) 2003 The ffmpeg Project | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
315 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
315 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
315 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
315 | 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 | |
885 | 38 #define FLIC_FILE_MAGIC_3 0xAF44 /* Flic Type for Extended FLX Format which |
864
00a3ba030166
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
820
diff
changeset
|
39 originated in Dave's Targa Animator (DTA) */ |
315 | 40 #define FLIC_CHUNK_MAGIC_1 0xF1FA |
41 #define FLIC_CHUNK_MAGIC_2 0xF5FA | |
2423 | 42 #define FLIC_MC_SPEED 5 /* speed for Magic Carpet game FLIs */ |
43 #define FLIC_DEFAULT_SPEED 5 /* for FLIs that have 0 speed */ | |
315 | 44 |
45 #define FLIC_HEADER_SIZE 128 | |
46 #define FLIC_PREAMBLE_SIZE 6 | |
47 | |
48 typedef struct FlicDemuxContext { | |
49 int video_stream_index; | |
2423 | 50 int frame_number; |
315 | 51 } FlicDemuxContext; |
52 | |
53 static int flic_probe(AVProbeData *p) | |
54 { | |
55 int magic_number; | |
56 | |
3583 | 57 if(p->buf_size < FLIC_HEADER_SIZE) |
58 return 0; | |
59 | |
1673 | 60 magic_number = AV_RL16(&p->buf[4]); |
315 | 61 if ((magic_number != FLIC_FILE_MAGIC_1) && |
864
00a3ba030166
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
820
diff
changeset
|
62 (magic_number != FLIC_FILE_MAGIC_2) && |
00a3ba030166
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
820
diff
changeset
|
63 (magic_number != FLIC_FILE_MAGIC_3)) |
315 | 64 return 0; |
65 | |
3583 | 66 if(AV_RL16(&p->buf[0x10]) != FLIC_CHUNK_MAGIC_1){ |
67 if(AV_RL32(&p->buf[0x10]) > 2000) | |
68 return 0; | |
69 } | |
70 | |
71 if( AV_RL16(&p->buf[0x08]) > 4096 | |
72 || AV_RL16(&p->buf[0x0A]) > 4096) | |
73 return 0; | |
74 | |
75 | |
315 | 76 return AVPROBE_SCORE_MAX; |
77 } | |
78 | |
79 static int flic_read_header(AVFormatContext *s, | |
80 AVFormatParameters *ap) | |
81 { | |
2006 | 82 FlicDemuxContext *flic = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2423
diff
changeset
|
83 ByteIOContext *pb = s->pb; |
315 | 84 unsigned char header[FLIC_HEADER_SIZE]; |
85 AVStream *st; | |
86 int speed; | |
87 int magic_number; | |
88 | |
2423 | 89 flic->frame_number = 0; |
315 | 90 |
91 /* load the whole header and pull out the width and height */ | |
92 if (get_buffer(pb, header, FLIC_HEADER_SIZE) != FLIC_HEADER_SIZE) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
93 return AVERROR(EIO); |
315 | 94 |
1673 | 95 magic_number = AV_RL16(&header[4]); |
96 speed = AV_RL32(&header[0x10]); | |
2423 | 97 if (speed == 0) |
98 speed = FLIC_DEFAULT_SPEED; | |
315 | 99 |
100 /* initialize the decoder streams */ | |
101 st = av_new_stream(s, 0); | |
102 if (!st) | |
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2006
diff
changeset
|
103 return AVERROR(ENOMEM); |
315 | 104 flic->video_stream_index = st->index; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
105 st->codec->codec_type = CODEC_TYPE_VIDEO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
106 st->codec->codec_id = CODEC_ID_FLIC; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
107 st->codec->codec_tag = 0; /* no fourcc */ |
1673 | 108 st->codec->width = AV_RL16(&header[0x08]); |
109 st->codec->height = AV_RL16(&header[0x0A]); | |
315 | 110 |
2385
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
111 if (!st->codec->width || !st->codec->height) { |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
112 /* Ugly hack needed for the following sample: */ |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
113 /* http://samples.mplayerhq.hu/fli-flc/fli-bugs/specular.flc */ |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
114 av_log(s, AV_LOG_WARNING, |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
115 "File with no specified width/height. Trying 640x480.\n"); |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
116 st->codec->width = 640; |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
117 st->codec->height = 480; |
8a7b2fac0a98
Try size 640x480 for FLC files which don't specify their size.
aurel
parents:
2274
diff
changeset
|
118 } |
315 | 119 |
120 /* send over the whole 128-byte FLIC header */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
121 st->codec->extradata_size = FLIC_HEADER_SIZE; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
122 st->codec->extradata = av_malloc(FLIC_HEADER_SIZE); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
123 memcpy(st->codec->extradata, header, FLIC_HEADER_SIZE); |
315 | 124 |
125 /* Time to figure out the framerate: If there is a FLIC chunk magic | |
126 * number at offset 0x10, assume this is from the Bullfrog game, | |
127 * Magic Carpet. */ | |
1673 | 128 if (AV_RL16(&header[0x10]) == FLIC_CHUNK_MAGIC_1) { |
315 | 129 |
2423 | 130 av_set_pts_info(st, 64, FLIC_MC_SPEED, 70); |
315 | 131 |
132 /* rewind the stream since the first chunk is at offset 12 */ | |
133 url_fseek(pb, 12, SEEK_SET); | |
134 | |
135 /* send over abbreviated FLIC header chunk */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
136 av_free(st->codec->extradata); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
137 st->codec->extradata_size = 12; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
138 st->codec->extradata = av_malloc(12); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
139 memcpy(st->codec->extradata, header, 12); |
315 | 140 |
141 } else if (magic_number == FLIC_FILE_MAGIC_1) { | |
2423 | 142 av_set_pts_info(st, 64, speed, 70); |
864
00a3ba030166
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
820
diff
changeset
|
143 } else if ((magic_number == FLIC_FILE_MAGIC_2) || |
00a3ba030166
support for FLX and DTA extensions in the FLIC format, courtesy of
melanson
parents:
820
diff
changeset
|
144 (magic_number == FLIC_FILE_MAGIC_3)) { |
2423 | 145 av_set_pts_info(st, 64, speed, 1000); |
1801 | 146 } else { |
147 av_log(s, AV_LOG_INFO, "Invalid or unsupported magic chunk in file\n"); | |
315 | 148 return AVERROR_INVALIDDATA; |
1801 | 149 } |
315 | 150 |
151 return 0; | |
152 } | |
153 | |
154 static int flic_read_packet(AVFormatContext *s, | |
155 AVPacket *pkt) | |
156 { | |
2006 | 157 FlicDemuxContext *flic = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2423
diff
changeset
|
158 ByteIOContext *pb = s->pb; |
315 | 159 int packet_read = 0; |
160 unsigned int size; | |
161 int magic; | |
162 int ret = 0; | |
163 unsigned char preamble[FLIC_PREAMBLE_SIZE]; | |
164 | |
165 while (!packet_read) { | |
166 | |
167 if ((ret = get_buffer(pb, preamble, FLIC_PREAMBLE_SIZE)) != | |
168 FLIC_PREAMBLE_SIZE) { | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
169 ret = AVERROR(EIO); |
315 | 170 break; |
171 } | |
172 | |
1673 | 173 size = AV_RL32(&preamble[0]); |
174 magic = AV_RL16(&preamble[4]); | |
315 | 175 |
643 | 176 if (((magic == FLIC_CHUNK_MAGIC_1) || (magic == FLIC_CHUNK_MAGIC_2)) && size > FLIC_PREAMBLE_SIZE) { |
315 | 177 if (av_new_packet(pkt, size)) { |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
178 ret = AVERROR(EIO); |
315 | 179 break; |
180 } | |
181 pkt->stream_index = flic->video_stream_index; | |
2423 | 182 pkt->pts = flic->frame_number++; |
885 | 183 pkt->pos = url_ftell(pb); |
315 | 184 memcpy(pkt->data, preamble, FLIC_PREAMBLE_SIZE); |
885 | 185 ret = get_buffer(pb, pkt->data + FLIC_PREAMBLE_SIZE, |
315 | 186 size - FLIC_PREAMBLE_SIZE); |
187 if (ret != size - FLIC_PREAMBLE_SIZE) { | |
188 av_free_packet(pkt); | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
189 ret = AVERROR(EIO); |
315 | 190 } |
191 packet_read = 1; | |
192 } else { | |
193 /* not interested in this chunk */ | |
194 url_fseek(pb, size - 6, SEEK_CUR); | |
195 } | |
196 } | |
197 | |
198 return ret; | |
199 } | |
200 | |
1169 | 201 AVInputFormat flic_demuxer = { |
315 | 202 "flic", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
2771
diff
changeset
|
203 NULL_IF_CONFIG_SMALL("FLI/FLC/FLX animation format"), |
315 | 204 sizeof(FlicDemuxContext), |
205 flic_probe, | |
206 flic_read_header, | |
207 flic_read_packet, | |
208 }; |