]> git.sesse.net Git - ffmpeg/blob - libavformat/electronicarts.c
add a log message
[ffmpeg] / libavformat / electronicarts.c
1 /* Electronic Arts Multimedia File Demuxer
2  * Copyright (c) 2004  The ffmpeg Project
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file electronicarts.c
23  * Electronic Arts Multimedia file demuxer (WVE/UV2/etc.)
24  * by Robin Kay (komadori at gekkou.co.uk)
25  */
26
27 #include "avformat.h"
28
29 #define SCHl_TAG MKTAG('S', 'C', 'H', 'l')
30 #define PT00_TAG MKTAG('P', 'T', 0x0, 0x0)
31 #define GSTR_TAG MKTAG('G', 'S', 'T', 'R')
32 #define SCDl_TAG MKTAG('S', 'C', 'D', 'l')
33 #define SCEl_TAG MKTAG('S', 'C', 'E', 'l')
34 #define MVhd_TAG MKTAG('M', 'V', 'h', 'd')
35 #define MV0K_TAG MKTAG('M', 'V', '0', 'K')
36 #define MV0F_TAG MKTAG('M', 'V', '0', 'F')
37
38 #define EA_SAMPLE_RATE 22050
39 #define EA_BITS_PER_SAMPLE 16
40 #define EA_PREAMBLE_SIZE 8
41
42 typedef struct EaDemuxContext {
43     AVRational time_base;
44     int video_stream_index;
45
46     int audio_stream_index;
47     int audio_frame_counter;
48
49     int64_t audio_pts;
50
51     int num_channels;
52     int num_samples;
53     int compression_type;
54 } EaDemuxContext;
55
56 static uint32_t read_arbitary(ByteIOContext *pb) {
57     uint8_t size, byte;
58     int i;
59     uint32_t word;
60
61     size = get_byte(pb);
62
63     word = 0;
64     for (i = 0; i < size; i++) {
65         byte = get_byte(pb);
66         word <<= 8;
67         word |= byte;
68     }
69
70     return word;
71 }
72
73 /*
74  * Process EA file header
75  * Returns 1 if the EA file is valid and successfully opened, 0 otherwise
76  */
77 static int process_ea_header(AVFormatContext *s) {
78     int inHeader = 1;
79     uint32_t blockid, size = 0;
80     int num, den;
81     EaDemuxContext *ea = s->priv_data;
82     ByteIOContext *pb = &s->pb;
83
84     blockid = get_le32(pb);
85     if (blockid == MVhd_TAG) {
86         size = get_le32(pb);
87         url_fskip(pb, 16);
88         den = get_le32(pb);
89         num = get_le32(pb);
90         ea->time_base = (AVRational) {num, den};
91         url_fskip(pb, size-32);
92         blockid = get_le32(pb);
93     }
94     if (blockid != SCHl_TAG)
95         return 0;
96     size += get_le32(pb);
97     blockid = get_le32(pb);
98     if (blockid == GSTR_TAG) {
99         url_fskip(pb, 4);
100     } else if (blockid != PT00_TAG) {
101         av_log (s, AV_LOG_ERROR, "PT header missing\n");
102         return 0;
103     }
104
105     while (inHeader) {
106         int inSubheader;
107         uint8_t byte;
108         byte = get_byte(pb);
109
110         switch (byte) {
111         case 0xFD:
112             av_log (s, AV_LOG_INFO, "entered audio subheader\n");
113             inSubheader = 1;
114             while (inSubheader) {
115                 uint8_t subbyte;
116                 subbyte = get_byte(pb);
117
118                 switch (subbyte) {
119                 case 0x82:
120                     ea->num_channels = read_arbitary(pb);
121                     av_log (s, AV_LOG_INFO, "num_channels (element 0x82) set to 0x%08x\n", ea->num_channels);
122                     break;
123                 case 0x83:
124                     ea->compression_type = read_arbitary(pb);
125                     av_log (s, AV_LOG_INFO, "compression_type (element 0x83) set to 0x%08x\n", ea->compression_type);
126                     break;
127                 case 0x85:
128                     ea->num_samples = read_arbitary(pb);
129                     av_log (s, AV_LOG_INFO, "num_samples (element 0x85) set to 0x%08x\n", ea->num_samples);
130                     break;
131                 case 0x8A:
132                     av_log (s, AV_LOG_INFO, "element 0x%02x set to 0x%08x\n", subbyte, read_arbitary(pb));
133                     av_log (s, AV_LOG_INFO, "exited audio subheader\n");
134                     inSubheader = 0;
135                     break;
136                 case 0xFF:
137                     av_log (s, AV_LOG_INFO, "end of header block reached (within audio subheader)\n");
138                     inSubheader = 0;
139                     inHeader = 0;
140                     break;
141                 default:
142                     av_log (s, AV_LOG_INFO, "element 0x%02x set to 0x%08x\n", subbyte, read_arbitary(pb));
143                     break;
144                 }
145             }
146             break;
147         case 0xFF:
148             av_log (s, AV_LOG_INFO, "end of header block reached\n");
149             inHeader = 0;
150             break;
151         default:
152             av_log (s, AV_LOG_INFO, "header element 0x%02x set to 0x%08x\n", byte, read_arbitary(pb));
153             break;
154         }
155     }
156
157     /* skip to the start of the data */
158     url_fseek(pb, size, SEEK_SET);
159
160     return 1;
161 }
162
163
164 static int ea_probe(AVProbeData *p)
165 {
166     uint32_t tag;
167
168     tag = AV_RL32(&p->buf[0]);
169     if (tag == SCHl_TAG || tag == MVhd_TAG)
170         return AVPROBE_SCORE_MAX;
171
172     return 0;
173 }
174
175 static int ea_read_header(AVFormatContext *s,
176                           AVFormatParameters *ap)
177 {
178     EaDemuxContext *ea = s->priv_data;
179     AVStream *st;
180
181     if (!process_ea_header(s))
182         return AVERROR(EIO);
183
184     if (ea->time_base.num && ea->time_base.den) {
185         /* initialize the video decoder stream */
186         st = av_new_stream(s, 0);
187         if (!st)
188             return AVERROR(ENOMEM);
189         ea->video_stream_index = st->index;
190         st->codec->codec_type = CODEC_TYPE_VIDEO;
191         st->codec->codec_id = CODEC_ID_VP6;
192         st->codec->codec_tag = 0;  /* no fourcc */
193         st->codec->time_base = ea->time_base;
194     }
195
196     /* initialize the audio decoder stream */
197     st = av_new_stream(s, 0);
198     if (!st)
199         return AVERROR(ENOMEM);
200     av_set_pts_info(st, 33, 1, EA_SAMPLE_RATE);
201     st->codec->codec_type = CODEC_TYPE_AUDIO;
202     st->codec->codec_id = CODEC_ID_ADPCM_EA;
203     st->codec->codec_tag = 0;  /* no tag */
204     st->codec->channels = ea->num_channels;
205     st->codec->sample_rate = EA_SAMPLE_RATE;
206     st->codec->bits_per_sample = EA_BITS_PER_SAMPLE;
207     st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
208         st->codec->bits_per_sample / 4;
209     st->codec->block_align = st->codec->channels * st->codec->bits_per_sample;
210
211     ea->audio_stream_index = st->index;
212     ea->audio_frame_counter = 0;
213
214     return 1;
215 }
216
217 static int ea_read_packet(AVFormatContext *s,
218                           AVPacket *pkt)
219 {
220     EaDemuxContext *ea = s->priv_data;
221     ByteIOContext *pb = &s->pb;
222     int ret = 0;
223     int packet_read = 0;
224     unsigned char preamble[EA_PREAMBLE_SIZE];
225     unsigned int chunk_type, chunk_size;
226     int key = 0;
227
228     while (!packet_read) {
229
230         if (get_buffer(pb, preamble, EA_PREAMBLE_SIZE) != EA_PREAMBLE_SIZE)
231             return AVERROR(EIO);
232         chunk_type = AV_RL32(&preamble[0]);
233         chunk_size = AV_RL32(&preamble[4]) - EA_PREAMBLE_SIZE;
234
235         switch (chunk_type) {
236         /* audio data */
237         case SCDl_TAG:
238             ret = av_get_packet(pb, pkt, chunk_size);
239             if (ret != chunk_size)
240                 ret = AVERROR(EIO);
241             else {
242                     pkt->stream_index = ea->audio_stream_index;
243                     pkt->pts = 90000;
244                     pkt->pts *= ea->audio_frame_counter;
245                     pkt->pts /= EA_SAMPLE_RATE;
246
247                     /* 2 samples/byte, 1 or 2 samples per frame depending
248                      * on stereo; chunk also has 12-byte header */
249                     ea->audio_frame_counter += ((chunk_size - 12) * 2) /
250                         ea->num_channels;
251             }
252
253             packet_read = 1;
254             break;
255
256         /* ending tag */
257         case SCEl_TAG:
258             ret = AVERROR(EIO);
259             packet_read = 1;
260             break;
261
262         case MV0K_TAG:
263             key = PKT_FLAG_KEY;
264         case MV0F_TAG:
265             ret = av_get_packet(pb, pkt, chunk_size);
266             if (ret != chunk_size)
267                 ret = AVERROR_IO;
268             else {
269                 pkt->stream_index = ea->video_stream_index;
270                 pkt->flags |= key;
271             }
272             packet_read = 1;
273             break;
274
275         default:
276             url_fseek(pb, chunk_size, SEEK_CUR);
277             break;
278         }
279     }
280
281     return ret;
282 }
283
284 AVInputFormat ea_demuxer = {
285     "ea",
286     "Electronic Arts Multimedia Format",
287     sizeof(EaDemuxContext),
288     ea_probe,
289     ea_read_header,
290     ea_read_packet,
291 };