Mercurial > libavformat.hg
annotate 4xm.c @ 1567:e2fcff5c3d7d libavformat
gcc 2.95 fix
author | michael |
---|---|
date | Tue, 12 Dec 2006 12:24:30 +0000 |
parents | 1580c48ba4b9 |
children | a782462e2497 |
rev | line source |
---|---|
137 | 1 /* |
2 * 4X Technologies .4xm File Demuxer (no muxer) | |
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 |
137 | 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. |
137 | 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, |
137 | 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 |
137 | 20 */ |
21 | |
22 /** | |
23 * @file 4xm.c | |
24 * 4X Technologies file demuxer | |
25 * by Mike Melanson (melanson@pcisys.net) | |
26 * for more information on the .4xm file format, visit: | |
27 * http://www.pcisys.net/~melanson/codecs/ | |
28 */ | |
29 | |
30 #include "avformat.h" | |
31 | |
386
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
32 #define RIFF_TAG MKTAG('R', 'I', 'F', 'F') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
33 #define _4XMV_TAG MKTAG('4', 'X', 'M', 'V') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
34 #define LIST_TAG MKTAG('L', 'I', 'S', 'T') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
35 #define HEAD_TAG MKTAG('H', 'E', 'A', 'D') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
36 #define TRK__TAG MKTAG('T', 'R', 'K', '_') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
37 #define MOVI_TAG MKTAG('M', 'O', 'V', 'I') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
38 #define VTRK_TAG MKTAG('V', 'T', 'R', 'K') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
39 #define STRK_TAG MKTAG('S', 'T', 'R', 'K') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
40 #define std__TAG MKTAG('s', 't', 'd', '_') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
41 #define name_TAG MKTAG('n', 'a', 'm', 'e') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
42 #define vtrk_TAG MKTAG('v', 't', 'r', 'k') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
43 #define strk_TAG MKTAG('s', 't', 'r', 'k') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
44 #define ifrm_TAG MKTAG('i', 'f', 'r', 'm') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
45 #define pfrm_TAG MKTAG('p', 'f', 'r', 'm') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
46 #define cfrm_TAG MKTAG('c', 'f', 'r', 'm') |
c152849ee643
remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->
melanson
parents:
317
diff
changeset
|
47 #define snd__TAG MKTAG('s', 'n', 'd', '_') |
137 | 48 |
49 #define vtrk_SIZE 0x44 | |
50 #define strk_SIZE 0x28 | |
51 | |
52 #define GET_LIST_HEADER() \ | |
143 | 53 fourcc_tag = get_le32(pb); \ |
137 | 54 size = get_le32(pb); \ |
55 if (fourcc_tag != LIST_TAG) \ | |
56 return AVERROR_INVALIDDATA; \ | |
143 | 57 fourcc_tag = get_le32(pb); |
137 | 58 |
59 typedef struct AudioTrack { | |
60 int sample_rate; | |
61 int bits; | |
62 int channels; | |
143 | 63 int stream_index; |
145 | 64 int adpcm; |
137 | 65 } AudioTrack; |
66 | |
67 typedef struct FourxmDemuxContext { | |
68 int width; | |
69 int height; | |
143 | 70 int video_stream_index; |
137 | 71 int track_count; |
72 AudioTrack *tracks; | |
73 int selected_track; | |
143 | 74 |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
75 int64_t audio_pts; |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
76 int64_t video_pts; |
317 | 77 float fps; |
137 | 78 } FourxmDemuxContext; |
79 | |
80 static int fourxm_probe(AVProbeData *p) | |
81 { | |
254
bca5abd97e43
clean up 4xm demuxer; make valgrind just a little happier
tmmm
parents:
145
diff
changeset
|
82 if (p->buf_size < 12) |
bca5abd97e43
clean up 4xm demuxer; make valgrind just a little happier
tmmm
parents:
145
diff
changeset
|
83 return 0; |
bca5abd97e43
clean up 4xm demuxer; make valgrind just a little happier
tmmm
parents:
145
diff
changeset
|
84 |
143 | 85 if ((LE_32(&p->buf[0]) != RIFF_TAG) || |
86 (LE_32(&p->buf[8]) != _4XMV_TAG)) | |
137 | 87 return 0; |
88 | |
89 return AVPROBE_SCORE_MAX; | |
90 } | |
91 | |
92 static int fourxm_read_header(AVFormatContext *s, | |
143 | 93 AVFormatParameters *ap) |
137 | 94 { |
95 ByteIOContext *pb = &s->pb; | |
96 unsigned int fourcc_tag; | |
97 unsigned int size; | |
98 int header_size; | |
99 FourxmDemuxContext *fourxm = (FourxmDemuxContext *)s->priv_data; | |
100 unsigned char *header; | |
101 int i; | |
102 int current_track = -1; | |
103 AVStream *st; | |
104 | |
105 fourxm->track_count = 0; | |
106 fourxm->tracks = NULL; | |
107 fourxm->selected_track = 0; | |
317 | 108 fourxm->fps = 1.0; |
137 | 109 |
110 /* skip the first 3 32-bit numbers */ | |
111 url_fseek(pb, 12, SEEK_CUR); | |
112 | |
113 /* check for LIST-HEAD */ | |
114 GET_LIST_HEADER(); | |
115 header_size = size - 4; | |
116 if (fourcc_tag != HEAD_TAG) | |
117 return AVERROR_INVALIDDATA; | |
118 | |
119 /* allocate space for the header and load the whole thing */ | |
120 header = av_malloc(header_size); | |
121 if (!header) | |
122 return AVERROR_NOMEM; | |
123 if (get_buffer(pb, header, header_size) != header_size) | |
124 return AVERROR_IO; | |
125 | |
126 /* take the lazy approach and search for any and all vtrk and strk chunks */ | |
127 for (i = 0; i < header_size - 8; i++) { | |
143 | 128 fourcc_tag = LE_32(&header[i]); |
137 | 129 size = LE_32(&header[i + 4]); |
130 | |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
131 if (fourcc_tag == std__TAG) { |
824 | 132 fourxm->fps = av_int2flt(LE_32(&header[i + 12])); |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
133 } else if (fourcc_tag == vtrk_TAG) { |
137 | 134 /* check that there is enough data */ |
135 if (size != vtrk_SIZE) { | |
136 av_free(header); | |
137 return AVERROR_INVALIDDATA; | |
138 } | |
139 fourxm->width = LE_32(&header[i + 36]); | |
140 fourxm->height = LE_32(&header[i + 40]); | |
141 i += 8 + size; | |
143 | 142 |
143 /* allocate a new AVStream */ | |
144 st = av_new_stream(s, 0); | |
145 if (!st) | |
146 return AVERROR_NOMEM; | |
740 | 147 av_set_pts_info(st, 60, 1, fourxm->fps); |
143 | 148 |
149 fourxm->video_stream_index = st->index; | |
150 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
151 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
|
152 st->codec->codec_id = CODEC_ID_4XM; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
153 st->codec->codec_tag = 0; /* no fourcc */ |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
154 st->codec->width = fourxm->width; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
155 st->codec->height = fourxm->height; |
143 | 156 |
137 | 157 } else if (fourcc_tag == strk_TAG) { |
158 /* check that there is enough data */ | |
159 if (size != strk_SIZE) { | |
160 av_free(header); | |
161 return AVERROR_INVALIDDATA; | |
162 } | |
163 current_track = LE_32(&header[i + 8]); | |
164 if (current_track + 1 > fourxm->track_count) { | |
141 | 165 fourxm->track_count = current_track + 1; |
639 | 166 if((unsigned)fourxm->track_count >= UINT_MAX / sizeof(AudioTrack)) |
167 return -1; | |
885 | 168 fourxm->tracks = av_realloc(fourxm->tracks, |
141 | 169 fourxm->track_count * sizeof(AudioTrack)); |
137 | 170 if (!fourxm->tracks) { |
171 av_free(header); | |
172 return AVERROR_NOMEM; | |
173 } | |
174 } | |
145 | 175 fourxm->tracks[current_track].adpcm = LE_32(&header[i + 12]); |
137 | 176 fourxm->tracks[current_track].channels = LE_32(&header[i + 36]); |
177 fourxm->tracks[current_track].sample_rate = LE_32(&header[i + 40]); | |
178 fourxm->tracks[current_track].bits = LE_32(&header[i + 44]); | |
179 i += 8 + size; | |
143 | 180 |
181 /* allocate a new AVStream */ | |
182 st = av_new_stream(s, current_track); | |
183 if (!st) | |
184 return AVERROR_NOMEM; | |
185 | |
740 | 186 av_set_pts_info(st, 60, 1, fourxm->tracks[current_track].sample_rate); |
462
b69898ffc92a
move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
michael
parents:
386
diff
changeset
|
187 |
143 | 188 fourxm->tracks[current_track].stream_index = st->index; |
189 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
190 st->codec->codec_type = CODEC_TYPE_AUDIO; |
1450
1580c48ba4b9
Do not set audio codec_tag to 1, that would be PCM audio.
diego
parents:
1358
diff
changeset
|
191 st->codec->codec_tag = 0; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
192 st->codec->channels = fourxm->tracks[current_track].channels; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
193 st->codec->sample_rate = fourxm->tracks[current_track].sample_rate; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
194 st->codec->bits_per_sample = fourxm->tracks[current_track].bits; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
195 st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
196 st->codec->bits_per_sample; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
197 st->codec->block_align = st->codec->channels * st->codec->bits_per_sample; |
145 | 198 if (fourxm->tracks[current_track].adpcm) |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
199 st->codec->codec_id = CODEC_ID_ADPCM_4XM; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
200 else if (st->codec->bits_per_sample == 8) |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
201 st->codec->codec_id = CODEC_ID_PCM_U8; |
143 | 202 else |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
203 st->codec->codec_id = CODEC_ID_PCM_S16LE; |
137 | 204 } |
205 } | |
206 | |
207 av_free(header); | |
208 | |
209 /* skip over the LIST-MOVI chunk (which is where the stream should be */ | |
210 GET_LIST_HEADER(); | |
211 if (fourcc_tag != MOVI_TAG) | |
212 return AVERROR_INVALIDDATA; | |
213 | |
143 | 214 /* initialize context members */ |
740 | 215 fourxm->video_pts = -1; /* first frame will push to 0 */ |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
216 fourxm->audio_pts = 0; |
137 | 217 |
218 return 0; | |
219 } | |
220 | |
221 static int fourxm_read_packet(AVFormatContext *s, | |
143 | 222 AVPacket *pkt) |
137 | 223 { |
224 FourxmDemuxContext *fourxm = s->priv_data; | |
225 ByteIOContext *pb = &s->pb; | |
226 unsigned int fourcc_tag; | |
145 | 227 unsigned int size, out_size; |
137 | 228 int ret = 0; |
229 int track_number; | |
230 int packet_read = 0; | |
143 | 231 unsigned char header[8]; |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
232 int audio_frame_count; |
137 | 233 |
234 while (!packet_read) { | |
235 | |
143 | 236 if ((ret = get_buffer(&s->pb, header, 8)) < 0) |
237 return ret; | |
238 fourcc_tag = LE_32(&header[0]); | |
239 size = LE_32(&header[4]); | |
137 | 240 if (url_feof(pb)) |
482 | 241 return AVERROR_IO; |
137 | 242 switch (fourcc_tag) { |
243 | |
144 | 244 case LIST_TAG: |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
245 /* this is a good time to bump the video pts */ |
740 | 246 fourxm->video_pts ++; |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
247 |
144 | 248 /* skip the LIST-* tag and move on to the next fourcc */ |
249 get_le32(pb); | |
250 break; | |
251 | |
137 | 252 case ifrm_TAG: |
253 case pfrm_TAG: | |
139 | 254 case cfrm_TAG:{ |
143 | 255 |
256 /* allocate 8 more bytes than 'size' to account for fourcc | |
257 * and size */ | |
643 | 258 if (size + 8 < size || av_new_packet(pkt, size + 8)) |
482 | 259 return AVERROR_IO; |
143 | 260 pkt->stream_index = fourxm->video_stream_index; |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
261 pkt->pts = fourxm->video_pts; |
775 | 262 pkt->pos = url_ftell(&s->pb); |
143 | 263 memcpy(pkt->data, header, 8); |
264 ret = get_buffer(&s->pb, &pkt->data[8], size); | |
265 | |
266 if (ret < 0) | |
267 av_free_packet(pkt); | |
268 else | |
269 packet_read = 1; | |
139 | 270 break; |
271 } | |
143 | 272 |
137 | 273 case snd__TAG: |
274 track_number = get_le32(pb); | |
145 | 275 out_size= get_le32(pb); |
276 size-=8; | |
277 | |
137 | 278 if (track_number == fourxm->selected_track) { |
775 | 279 ret= av_get_packet(&s->pb, pkt, size); |
280 if(ret<0) | |
482 | 281 return AVERROR_IO; |
885 | 282 pkt->stream_index = |
143 | 283 fourxm->tracks[fourxm->selected_track].stream_index; |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
284 pkt->pts = fourxm->audio_pts; |
775 | 285 packet_read = 1; |
143 | 286 |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
287 /* pts accounting */ |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
288 audio_frame_count = size; |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
289 if (fourxm->tracks[fourxm->selected_track].adpcm) |
885 | 290 audio_frame_count -= |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
291 2 * (fourxm->tracks[fourxm->selected_track].channels); |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
292 audio_frame_count /= |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
293 fourxm->tracks[fourxm->selected_track].channels; |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
294 if (fourxm->tracks[fourxm->selected_track].adpcm) |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
295 audio_frame_count *= 2; |
885 | 296 else |
316
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
297 audio_frame_count /= |
9aa23c6d396e
use the proper file framerate (specified by a float); account the pts
melanson
parents:
254
diff
changeset
|
298 (fourxm->tracks[fourxm->selected_track].bits / 8); |
740 | 299 fourxm->audio_pts += audio_frame_count; |
143 | 300 |
137 | 301 } else { |
302 url_fseek(pb, size, SEEK_CUR); | |
303 } | |
304 break; | |
305 | |
306 default: | |
307 url_fseek(pb, size, SEEK_CUR); | |
308 break; | |
309 } | |
310 } | |
311 return ret; | |
312 } | |
313 | |
314 static int fourxm_read_close(AVFormatContext *s) | |
315 { | |
316 FourxmDemuxContext *fourxm = (FourxmDemuxContext *)s->priv_data; | |
317 | |
318 av_free(fourxm->tracks); | |
319 | |
320 return 0; | |
321 } | |
322 | |
1169 | 323 AVInputFormat fourxm_demuxer = { |
137 | 324 "4xm", |
325 "4X Technologies format", | |
326 sizeof(FourxmDemuxContext), | |
327 fourxm_probe, | |
328 fourxm_read_header, | |
329 fourxm_read_packet, | |
330 fourxm_read_close, | |
331 }; |