3 * Copyright (c) 2007 Christian Ohm, 2008 Eli Friedman
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/avstring.h"
26 #define RPL_SIGNATURE "ARMovie\x0A"
27 #define RPL_SIGNATURE_SIZE 8
29 /** 256 is arbitrary, but should be big enough for any reasonable file. */
30 #define RPL_LINE_LENGTH 256
32 static int rpl_probe(AVProbeData
*p
)
34 if (memcmp(p
->buf
, RPL_SIGNATURE
, RPL_SIGNATURE_SIZE
))
37 return AVPROBE_SCORE_MAX
;
40 typedef struct RPLContext
{
42 int32_t frames_per_chunk
;
44 // Stream position data
45 uint32_t chunk_number
;
47 uint32_t frame_in_part
;
50 static int read_line(ByteIOContext
* pb
, char* line
, int bufsize
)
53 for (i
= 0; i
< bufsize
- 1; i
++) {
67 static int32_t read_int(const char* line
, const char** endptr
, int* error
)
69 unsigned long result
= 0;
70 for (; *line
>='0' && *line
<='9'; line
++) {
71 if (result
> (0x7FFFFFFF - 9) / 10)
73 result
= 10 * result
+ *line
- '0';
79 static int32_t read_line_and_int(ByteIOContext
* pb
, int* error
)
81 char line
[RPL_LINE_LENGTH
];
83 *error
|= read_line(pb
, line
, sizeof(line
));
84 return read_int(line
, &endptr
, error
);
87 /** Parsing for fps, which can be a fraction. Unfortunately,
88 * the spec for the header leaves out a lot of details,
89 * so this is mostly guessing.
91 static AVRational
read_fps(const char* line
, int* error
)
95 num
= read_int(line
, &line
, error
);
98 for (; *line
>='0' && *line
<='9'; line
++) {
99 // Truncate any numerator too large to fit into an int64_t
100 if (num
> (INT64_MAX
- 9) / 10 || den
> INT64_MAX
/ 10)
102 num
= 10 * num
+ *line
- '0';
107 av_reduce(&result
.num
, &result
.den
, num
, den
, 0x7FFFFFFF);
111 static int rpl_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
113 ByteIOContext
*pb
= s
->pb
;
114 RPLContext
*rpl
= s
->priv_data
;
115 AVStream
*vst
= NULL
, *ast
= NULL
;
116 int total_audio_size
;
121 int32_t audio_format
, chunk_catalog_offset
, number_of_chunks
;
124 char line
[RPL_LINE_LENGTH
];
126 // The header for RPL/ARMovie files is 21 lines of text
127 // containing the various header fields. The fields are always
128 // in the same order, and other text besides the first
129 // number usually isn't important.
130 // (The spec says that there exists some significance
131 // for the text in a few cases; samples needed.)
132 error
|= read_line(pb
, line
, sizeof(line
)); // ARMovie
133 error
|= read_line(pb
, s
->title
, sizeof(s
->title
)); // movie name
134 error
|= read_line(pb
, s
->copyright
, sizeof(s
->copyright
)); // date/copyright
135 error
|= read_line(pb
, s
->author
, sizeof(s
->author
)); // author and other
138 vst
= av_new_stream(s
, 0);
140 return AVERROR(ENOMEM
);
141 vst
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
142 vst
->codec
->codec_tag
= read_line_and_int(pb
, &error
); // video format
143 vst
->codec
->width
= read_line_and_int(pb
, &error
); // video width
144 vst
->codec
->height
= read_line_and_int(pb
, &error
); // video height
145 vst
->codec
->bits_per_sample
= read_line_and_int(pb
, &error
); // video bits per sample
146 error
|= read_line(pb
, line
, sizeof(line
)); // video frames per second
147 fps
= read_fps(line
, &error
);
148 av_set_pts_info(vst
, 32, fps
.den
, fps
.num
);
150 // Figure out the video codec
151 switch (vst
->codec
->codec_tag
) {
154 vst
->codec
->codec_id
= CODEC_ID_ESCAPE122
;
158 vst
->codec
->codec_id
= CODEC_ID_ESCAPE124
;
159 // The header is wrong here, at least sometimes
160 vst
->codec
->bits_per_sample
= 16;
164 vst
->codec
->codec_id
= CODEC_ID_ESCAPE130
;
168 av_log(s
, AV_LOG_WARNING
,
169 "RPL video format %i not supported yet!\n",
170 vst
->codec
->codec_tag
);
171 vst
->codec
->codec_id
= CODEC_ID_NONE
;
176 // ARMovie supports multiple audio tracks; I don't have any
177 // samples, though. This code will ignore additional tracks.
178 audio_format
= read_line_and_int(pb
, &error
); // audio format ID
180 ast
= av_new_stream(s
, 0);
182 return AVERROR(ENOMEM
);
183 ast
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
184 ast
->codec
->codec_tag
= audio_format
;
185 ast
->codec
->sample_rate
= read_line_and_int(pb
, &error
); // audio bitrate
186 ast
->codec
->channels
= read_line_and_int(pb
, &error
); // number of audio channels
187 ast
->codec
->bits_per_sample
= read_line_and_int(pb
, &error
); // audio bits per sample
188 // At least one sample uses 0 for ADPCM, which is really 4 bits
190 if (ast
->codec
->bits_per_sample
== 0)
191 ast
->codec
->bits_per_sample
= 4;
193 ast
->codec
->bit_rate
= ast
->codec
->sample_rate
*
194 ast
->codec
->bits_per_sample
*
195 ast
->codec
->channels
;
197 ast
->codec
->codec_id
= CODEC_ID_NONE
;
198 switch (audio_format
) {
200 if (ast
->codec
->bits_per_sample
== 16) {
201 // 16-bit audio is always signed
202 ast
->codec
->codec_id
= CODEC_ID_PCM_S16LE
;
205 // There are some other formats listed as legal per the spec;
209 if (ast
->codec
->bits_per_sample
== 8) {
210 // The samples with this kind of audio that I have
212 ast
->codec
->codec_id
= CODEC_ID_PCM_U8
;
214 } else if (ast
->codec
->bits_per_sample
== 4) {
215 ast
->codec
->codec_id
= CODEC_ID_ADPCM_IMA_EA_SEAD
;
220 if (ast
->codec
->codec_id
== CODEC_ID_NONE
) {
221 av_log(s
, AV_LOG_WARNING
,
222 "RPL audio format %i not supported yet!\n",
225 av_set_pts_info(ast
, 32, 1, ast
->codec
->bit_rate
);
227 for (i
= 0; i
< 3; i
++)
228 error
|= read_line(pb
, line
, sizeof(line
));
231 rpl
->frames_per_chunk
= read_line_and_int(pb
, &error
); // video frames per chunk
232 if (rpl
->frames_per_chunk
> 1 && vst
->codec
->codec_tag
!= 124)
233 av_log(s
, AV_LOG_WARNING
,
234 "Don't know how to split frames for video format %i. "
235 "Video stream will be broken!\n", vst
->codec
->codec_tag
);
237 number_of_chunks
= read_line_and_int(pb
, &error
); // number of chunks in the file
238 // The number in the header is actually the index of the last chunk.
241 error
|= read_line(pb
, line
, sizeof(line
)); // "even" chunk size in bytes
242 error
|= read_line(pb
, line
, sizeof(line
)); // "odd" chunk size in bytes
243 chunk_catalog_offset
= // offset of the "chunk catalog"
244 read_line_and_int(pb
, &error
); // (file index)
245 error
|= read_line(pb
, line
, sizeof(line
)); // offset to "helpful" sprite
246 error
|= read_line(pb
, line
, sizeof(line
)); // size of "helpful" sprite
247 error
|= read_line(pb
, line
, sizeof(line
)); // offset to key frame list
250 url_fseek(pb
, chunk_catalog_offset
, SEEK_SET
);
251 total_audio_size
= 0;
252 for (i
= 0; i
< number_of_chunks
; i
++) {
253 int64_t offset
, video_size
, audio_size
;
254 error
|= read_line(pb
, line
, sizeof(line
));
255 if (3 != sscanf(line
, "%"PRId64
" , %"PRId64
" ; %"PRId64
,
256 &offset
, &video_size
, &audio_size
))
258 av_add_index_entry(vst
, offset
, i
* rpl
->frames_per_chunk
,
259 video_size
, rpl
->frames_per_chunk
, 0);
261 av_add_index_entry(ast
, offset
+ video_size
, total_audio_size
,
262 audio_size
, audio_size
* 8, 0);
263 total_audio_size
+= audio_size
* 8;
266 if (error
) return AVERROR(EIO
);
271 static int rpl_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
273 RPLContext
*rpl
= s
->priv_data
;
274 ByteIOContext
*pb
= s
->pb
;
276 AVIndexEntry
* index_entry
;
279 if (rpl
->chunk_part
== s
->nb_streams
) {
284 stream
= s
->streams
[rpl
->chunk_part
];
286 if (rpl
->chunk_number
>= stream
->nb_index_entries
)
289 index_entry
= &stream
->index_entries
[rpl
->chunk_number
];
291 if (rpl
->frame_in_part
== 0)
292 if (url_fseek(pb
, index_entry
->pos
, SEEK_SET
) < 0)
295 if (stream
->codec
->codec_type
== CODEC_TYPE_VIDEO
&&
296 stream
->codec
->codec_tag
== 124) {
297 // We have to split Escape 124 frames because there are
298 // multiple frames per chunk in Escape 124 samples.
299 uint32_t frame_size
, frame_flags
;
301 frame_flags
= get_le32(pb
);
302 frame_size
= get_le32(pb
);
303 if (url_fseek(pb
, -8, SEEK_CUR
) < 0)
306 ret
= av_get_packet(pb
, pkt
, frame_size
);
307 if (ret
!= frame_size
) {
312 pkt
->pts
= index_entry
->timestamp
+ rpl
->frame_in_part
;
313 pkt
->stream_index
= rpl
->chunk_part
;
315 rpl
->frame_in_part
++;
316 if (rpl
->frame_in_part
== rpl
->frames_per_chunk
) {
317 rpl
->frame_in_part
= 0;
321 ret
= av_get_packet(pb
, pkt
, index_entry
->size
);
322 if (ret
!= index_entry
->size
) {
327 if (stream
->codec
->codec_type
== CODEC_TYPE_VIDEO
) {
328 // frames_per_chunk should always be one here; the header
329 // parsing will warn if it isn't.
330 pkt
->duration
= rpl
->frames_per_chunk
;
332 // All the audio codecs supported in this container
333 // (at least so far) are constant-bitrate.
334 pkt
->duration
= ret
* 8;
336 pkt
->pts
= index_entry
->timestamp
;
337 pkt
->stream_index
= rpl
->chunk_part
;
341 // None of the Escape formats have keyframes, and the ADPCM
342 // format used doesn't have keyframes.
343 if (rpl
->chunk_number
== 0 && rpl
->frame_in_part
== 0)
344 pkt
->flags
|= PKT_FLAG_KEY
;
349 AVInputFormat rpl_demuxer
= {
351 "RPL/ARMovie format",