1 /*
2  * Wing Commander III Movie (.mve) 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  * Wing Commander III Movie file demuxer
25  * by Mike Melanson (melanson@pcisys.net)
26  * for more information on the WC3 .mve file format, visit:
27  *   http://www.pcisys.net/~melanson/codecs/
28  */
29 
30 #include "libavutil/avstring.h"
31 #include "libavutil/channel_layout.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/dict.h"
34 #include "avformat.h"
35 #include "internal.h"
36 
37 #define FORM_TAG MKTAG('F', 'O', 'R', 'M')
38 #define MOVE_TAG MKTAG('M', 'O', 'V', 'E')
39 #define  PC__TAG MKTAG('_', 'P', 'C', '_')
40 #define SOND_TAG MKTAG('S', 'O', 'N', 'D')
41 #define BNAM_TAG MKTAG('B', 'N', 'A', 'M')
42 #define SIZE_TAG MKTAG('S', 'I', 'Z', 'E')
43 #define PALT_TAG MKTAG('P', 'A', 'L', 'T')
44 #define INDX_TAG MKTAG('I', 'N', 'D', 'X')
45 #define BRCH_TAG MKTAG('B', 'R', 'C', 'H')
46 #define SHOT_TAG MKTAG('S', 'H', 'O', 'T')
47 #define VGA__TAG MKTAG('V', 'G', 'A', ' ')
48 #define TEXT_TAG MKTAG('T', 'E', 'X', 'T')
49 #define AUDI_TAG MKTAG('A', 'U', 'D', 'I')
50 
51 /* video resolution unless otherwise specified */
52 #define WC3_DEFAULT_WIDTH 320
53 #define WC3_DEFAULT_HEIGHT 165
54 
55 /* always use the same PCM audio parameters */
56 #define WC3_SAMPLE_RATE 22050
57 #define WC3_AUDIO_CHANNELS 1
58 #define WC3_AUDIO_BITS 16
59 
60 /* nice, constant framerate */
61 #define WC3_FRAME_FPS 15
62 
63 #define PALETTE_SIZE (256 * 3)
64 
65 typedef struct Wc3DemuxContext {
66     int width;
67     int height;
68     int64_t pts;
69     int video_stream_index;
70     int audio_stream_index;
71 
72     AVPacket vpkt;
73 
74 } Wc3DemuxContext;
75 
wc3_probe(const AVProbeData * p)76 static int wc3_probe(const AVProbeData *p)
77 {
78     if (p->buf_size < 12)
79         return 0;
80 
81     if ((AV_RL32(&p->buf[0]) != FORM_TAG) ||
82         (AV_RL32(&p->buf[8]) != MOVE_TAG))
83         return 0;
84 
85     return AVPROBE_SCORE_MAX;
86 }
87 
wc3_read_header(AVFormatContext * s)88 static int wc3_read_header(AVFormatContext *s)
89 {
90     Wc3DemuxContext *wc3 = s->priv_data;
91     AVIOContext *pb = s->pb;
92     unsigned int fourcc_tag;
93     unsigned int size;
94     AVStream *st;
95     int ret = 0;
96     char *buffer;
97 
98     /* default context members */
99     wc3->width = WC3_DEFAULT_WIDTH;
100     wc3->height = WC3_DEFAULT_HEIGHT;
101     wc3->pts = 0;
102     wc3->video_stream_index = wc3->audio_stream_index = 0;
103     av_init_packet(&wc3->vpkt);
104     wc3->vpkt.data = NULL; wc3->vpkt.size = 0;
105 
106     /* skip the first 3 32-bit numbers */
107     avio_skip(pb, 12);
108 
109     /* traverse through the chunks and load the header information before
110      * the first BRCH tag */
111     fourcc_tag = avio_rl32(pb);
112     size = (avio_rb32(pb) + 1) & (~1);
113 
114     do {
115         switch (fourcc_tag) {
116 
117         case SOND_TAG:
118         case INDX_TAG:
119             /* SOND unknown, INDX unnecessary; ignore both */
120             avio_skip(pb, size);
121             break;
122 
123         case PC__TAG:
124             /* number of palettes, unneeded */
125             avio_skip(pb, 12);
126             break;
127 
128         case BNAM_TAG:
129             /* load up the name */
130             buffer = av_malloc(size+1);
131             if (!buffer)
132                 return AVERROR(ENOMEM);
133             if ((ret = avio_read(pb, buffer, size)) != size) {
134                 av_freep(&buffer);
135                 return AVERROR(EIO);
136             }
137             buffer[size] = 0;
138             av_dict_set(&s->metadata, "title", buffer,
139                                    AV_DICT_DONT_STRDUP_VAL);
140             break;
141 
142         case SIZE_TAG:
143             /* video resolution override */
144             wc3->width  = avio_rl32(pb);
145             wc3->height = avio_rl32(pb);
146             break;
147 
148         case PALT_TAG:
149             /* one of several palettes */
150             avio_seek(pb, -8, SEEK_CUR);
151             av_append_packet(pb, &wc3->vpkt, 8 + PALETTE_SIZE);
152             break;
153 
154         default:
155             av_log(s, AV_LOG_ERROR, "unrecognized WC3 chunk: %s\n",
156                    av_fourcc2str(fourcc_tag));
157             return AVERROR_INVALIDDATA;
158         }
159 
160         fourcc_tag = avio_rl32(pb);
161         /* chunk sizes are 16-bit aligned */
162         size = (avio_rb32(pb) + 1) & (~1);
163         if (avio_feof(pb))
164             return AVERROR(EIO);
165 
166     } while (fourcc_tag != BRCH_TAG);
167 
168     /* initialize the decoder streams */
169     st = avformat_new_stream(s, NULL);
170     if (!st)
171         return AVERROR(ENOMEM);
172     avpriv_set_pts_info(st, 33, 1, WC3_FRAME_FPS);
173     wc3->video_stream_index = st->index;
174     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
175     st->codecpar->codec_id = AV_CODEC_ID_XAN_WC3;
176     st->codecpar->codec_tag = 0;  /* no fourcc */
177     st->codecpar->width = wc3->width;
178     st->codecpar->height = wc3->height;
179 
180     st = avformat_new_stream(s, NULL);
181     if (!st)
182         return AVERROR(ENOMEM);
183     avpriv_set_pts_info(st, 33, 1, WC3_FRAME_FPS);
184     wc3->audio_stream_index = st->index;
185     st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
186     st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
187     st->codecpar->codec_tag = 1;
188     st->codecpar->channels = WC3_AUDIO_CHANNELS;
189     st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
190     st->codecpar->bits_per_coded_sample = WC3_AUDIO_BITS;
191     st->codecpar->sample_rate = WC3_SAMPLE_RATE;
192     st->codecpar->bit_rate = st->codecpar->channels * st->codecpar->sample_rate *
193         st->codecpar->bits_per_coded_sample;
194     st->codecpar->block_align = WC3_AUDIO_BITS * WC3_AUDIO_CHANNELS;
195 
196     return 0;
197 }
198 
wc3_read_packet(AVFormatContext * s,AVPacket * pkt)199 static int wc3_read_packet(AVFormatContext *s,
200                            AVPacket *pkt)
201 {
202     Wc3DemuxContext *wc3 = s->priv_data;
203     AVIOContext *pb = s->pb;
204     unsigned int fourcc_tag;
205     unsigned int size;
206     int packet_read = 0;
207     int ret = 0;
208     unsigned char text[1024];
209 
210     while (!packet_read) {
211 
212         fourcc_tag = avio_rl32(pb);
213         /* chunk sizes are 16-bit aligned */
214         size = (avio_rb32(pb) + 1) & (~1);
215         if (avio_feof(pb))
216             return AVERROR(EIO);
217 
218         switch (fourcc_tag) {
219 
220         case BRCH_TAG:
221             /* no-op */
222             break;
223 
224         case SHOT_TAG:
225             /* load up new palette */
226             avio_seek(pb, -8, SEEK_CUR);
227             av_append_packet(pb, &wc3->vpkt, 8 + 4);
228             break;
229 
230         case VGA__TAG:
231             /* send out video chunk */
232             avio_seek(pb, -8, SEEK_CUR);
233             ret= av_append_packet(pb, &wc3->vpkt, 8 + size);
234             // ignore error if we have some data
235             if (wc3->vpkt.size > 0)
236                 ret = 0;
237             *pkt = wc3->vpkt;
238             wc3->vpkt.data = NULL; wc3->vpkt.size = 0;
239             pkt->stream_index = wc3->video_stream_index;
240             pkt->pts = wc3->pts;
241             packet_read = 1;
242             break;
243 
244         case TEXT_TAG:
245             /* subtitle chunk */
246             if ((unsigned)size > sizeof(text) || (ret = avio_read(pb, text, size)) != size)
247                 ret = AVERROR(EIO);
248             else {
249                 int i = 0;
250                 av_log (s, AV_LOG_DEBUG, "Subtitle time!\n");
251                 if (i >= size || av_strnlen(&text[i + 1], size - i - 1) >= size - i - 1)
252                     return AVERROR_INVALIDDATA;
253                 av_log (s, AV_LOG_DEBUG, "  inglish: %s\n", &text[i + 1]);
254                 i += text[i] + 1;
255                 if (i >= size || av_strnlen(&text[i + 1], size - i - 1) >= size - i - 1)
256                     return AVERROR_INVALIDDATA;
257                 av_log (s, AV_LOG_DEBUG, "  doytsch: %s\n", &text[i + 1]);
258                 i += text[i] + 1;
259                 if (i >= size || av_strnlen(&text[i + 1], size - i - 1) >= size - i - 1)
260                     return AVERROR_INVALIDDATA;
261                 av_log (s, AV_LOG_DEBUG, "  fronsay: %s\n", &text[i + 1]);
262             }
263             break;
264 
265         case AUDI_TAG:
266             /* send out audio chunk */
267             ret= av_get_packet(pb, pkt, size);
268             pkt->stream_index = wc3->audio_stream_index;
269             pkt->pts = wc3->pts;
270 
271             /* time to advance pts */
272             wc3->pts++;
273 
274             packet_read = 1;
275             break;
276 
277         default:
278             av_log(s, AV_LOG_ERROR, "unrecognized WC3 chunk: %s\n",
279                    av_fourcc2str(fourcc_tag));
280             ret = AVERROR_INVALIDDATA;
281             packet_read = 1;
282             break;
283         }
284     }
285 
286     return ret;
287 }
288 
wc3_read_close(AVFormatContext * s)289 static int wc3_read_close(AVFormatContext *s)
290 {
291     Wc3DemuxContext *wc3 = s->priv_data;
292 
293     if (wc3->vpkt.size > 0)
294         av_packet_unref(&wc3->vpkt);
295 
296     return 0;
297 }
298 
299 AVInputFormat ff_wc3_demuxer = {
300     .name           = "wc3movie",
301     .long_name      = NULL_IF_CONFIG_SMALL("Wing Commander III movie"),
302     .priv_data_size = sizeof(Wc3DemuxContext),
303     .read_probe     = wc3_probe,
304     .read_header    = wc3_read_header,
305     .read_packet    = wc3_read_packet,
306     .read_close     = wc3_read_close,
307 };
308