FFmpeg
Loading...
Searching...
No Matches
segafilm.c
Go to the documentation of this file.
1/*
2 * Sega FILM Format (CPK) 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 * Sega FILM (.cpk) file demuxer
25 * by Mike Melanson (melanson@pcisys.net)
26 * For more information regarding the Sega FILM file format, visit:
27 * http://www.pcisys.net/~melanson/codecs/
28 */
29
31#include "libavutil/mem.h"
32#include "avformat.h"
33#include "avio_internal.h"
34#include "demux.h"
35#include "internal.h"
36
37#define FILM_TAG MKBETAG('F', 'I', 'L', 'M')
38#define FDSC_TAG MKBETAG('F', 'D', 'S', 'C')
39#define STAB_TAG MKBETAG('S', 'T', 'A', 'B')
40#define CVID_TAG MKBETAG('c', 'v', 'i', 'd')
41#define RAW_TAG MKBETAG('r', 'a', 'w', ' ')
42
50
51typedef struct FilmDemuxContext {
54
56 unsigned int audio_samplerate;
57 unsigned int audio_bits;
58 unsigned int audio_channels;
59
61 unsigned int sample_count;
63 unsigned int current_sample;
64
65 unsigned int base_clock;
66 unsigned int version;
68
69static int film_probe(const AVProbeData *p)
70{
71 if (AV_RB32(&p->buf[0]) != FILM_TAG)
72 return 0;
73
74 if (AV_RB32(&p->buf[16]) != FDSC_TAG)
75 return 0;
76
77 return AVPROBE_SCORE_MAX;
78}
79
81{
82 FilmDemuxContext *film = s->priv_data;
83
84 av_freep(&film->sample_table);
85
86 return 0;
87}
88
90{
91 FilmDemuxContext *film = s->priv_data;
92 AVIOContext *pb = s->pb;
93 AVStream *st;
94 unsigned char scratch[256];
95 int i;
96 unsigned int data_offset;
97 unsigned int audio_frame_counter;
98 unsigned int video_frame_counter;
99 int ret;
100
101 film->sample_table = NULL;
102
103 /* load the main FILM header */
104 if ((ret = ffio_read_size(pb, scratch, 16)) < 0)
105 return ret;
106 data_offset = AV_RB32(&scratch[4]);
107 film->version = AV_RB32(&scratch[8]);
108
109 /* load the FDSC chunk */
110 if (film->version == 0) {
111 /* special case for Lemmings .film files; 20-byte header */
112 if ((ret = ffio_read_size(pb, scratch, 20)) < 0)
113 return ret;
114 /* make some assumptions about the audio parameters */
116 film->audio_samplerate = 22050;
117 film->audio_channels = 1;
118 film->audio_bits = 8;
119 } else {
120 /* normal Saturn .cpk files; 32-byte header */
121 if ((ret = ffio_read_size(pb, scratch, 32)) < 0)
122 return ret;
123 film->audio_samplerate = AV_RB16(&scratch[24]);
124 film->audio_channels = scratch[21];
125 film->audio_bits = scratch[22];
126 if (scratch[23] == 2 && film->audio_channels > 0)
128 else if (film->audio_channels > 0) {
129 if (film->audio_bits == 8)
131 else if (film->audio_bits == 16)
133 else
135 } else
137 }
138
139 if (AV_RB32(&scratch[0]) != FDSC_TAG)
140 return AVERROR_INVALIDDATA;
141
142 if (AV_RB32(&scratch[8]) == CVID_TAG) {
144 } else if (AV_RB32(&scratch[8]) == RAW_TAG) {
146 } else {
148 }
149
151 return AVERROR_INVALIDDATA;
152
153 /* initialize the decoder streams */
154 if (film->video_type != AV_CODEC_ID_NONE) {
156 if (!st)
157 return AVERROR(ENOMEM);
158 film->video_stream_index = st->index;
160 st->codecpar->codec_id = film->video_type;
161 st->codecpar->codec_tag = 0; /* no fourcc */
162 st->codecpar->width = AV_RB32(&scratch[16]);
163 st->codecpar->height = AV_RB32(&scratch[12]);
164
165 if (film->video_type == AV_CODEC_ID_RAWVIDEO) {
166 if (film->version == 0 || scratch[20] == 24) {
168 } else {
169 av_log(s, AV_LOG_ERROR, "raw video is using unhandled %dbpp\n", scratch[20]);
170 return -1;
171 }
172 }
173 }
174
175 if (film->audio_type != AV_CODEC_ID_NONE) {
177 if (!st)
178 return AVERROR(ENOMEM);
179 film->audio_stream_index = st->index;
181 st->codecpar->codec_id = film->audio_type;
182 st->codecpar->codec_tag = 1;
185
186 if (film->audio_type == AV_CODEC_ID_ADPCM_ADX) {
187 st->codecpar->bits_per_coded_sample = 18 * 8 / 32;
188 st->codecpar->block_align = film->audio_channels * 18;
190 } else {
192 st->codecpar->block_align = film->audio_channels *
194 }
195
198 }
199
200 /* load the sample table */
201 if ((ret = ffio_read_size(pb, scratch, 16)) < 0)
202 return ret;
203 if (AV_RB32(&scratch[0]) != STAB_TAG)
204 return AVERROR_INVALIDDATA;
205 film->base_clock = AV_RB32(&scratch[8]);
206 film->sample_count = AV_RB32(&scratch[12]);
208 if (!film->sample_table)
209 return AVERROR(ENOMEM);
210
211 for (i = 0; i < s->nb_streams; i++) {
212 st = s->streams[i];
214 avpriv_set_pts_info(st, 33, 1, film->base_clock);
215 else
216 avpriv_set_pts_info(st, 64, 1, film->audio_samplerate);
217 }
218
219 audio_frame_counter = video_frame_counter = 0;
220 for (i = 0; i < film->sample_count; i++) {
221 /* load the next sample record and transfer it to an internal struct */
222 if ((ret = ffio_read_size(pb, scratch, 16)) < 0)
223 return ret;
225 data_offset + AV_RB32(&scratch[0]);
226 film->sample_table[i].sample_size = AV_RB32(&scratch[4]);
227 if (film->sample_table[i].sample_size > INT_MAX / 4)
228 return AVERROR_INVALIDDATA;
229 if (AV_RB32(&scratch[8]) == 0xFFFFFFFF) {
231 film->sample_table[i].pts = audio_frame_counter;
232
234 audio_frame_counter += (film->sample_table[i].sample_size * 32 /
235 (18 * film->audio_channels));
236 else if (film->audio_type != AV_CODEC_ID_NONE)
237 audio_frame_counter += (film->sample_table[i].sample_size /
238 (film->audio_channels * film->audio_bits / 8));
239 film->sample_table[i].keyframe = 1;
240 } else {
242 film->sample_table[i].pts = AV_RB32(&scratch[8]) & 0x7FFFFFFF;
243 film->sample_table[i].keyframe = (scratch[8] & 0x80) ? 0 : AVINDEX_KEYFRAME;
244 video_frame_counter++;
245 if (film->video_type != AV_CODEC_ID_NONE)
248 film->sample_table[i].pts,
249 film->sample_table[i].sample_size, 0,
250 film->sample_table[i].keyframe);
251 }
252 }
253
254 if (film->audio_type != AV_CODEC_ID_NONE)
255 s->streams[film->audio_stream_index]->duration = audio_frame_counter;
256
257 if (film->video_type != AV_CODEC_ID_NONE)
258 s->streams[film->video_stream_index]->duration = video_frame_counter;
259
260 film->current_sample = 0;
261
262 return 0;
263}
264
266 AVPacket *pkt)
267{
268 FilmDemuxContext *film = s->priv_data;
269 AVIOContext *pb = s->pb;
271 film_sample *next_sample = NULL;
272 int next_sample_id;
273 int ret = 0;
274
275 if (film->current_sample >= film->sample_count)
276 return AVERROR_EOF;
277
278 sample = &film->sample_table[film->current_sample];
279
280 /* Find the next sample from the same stream, assuming there is one;
281 * this is used to calculate the duration below */
282 next_sample_id = film->current_sample + 1;
283 while (next_sample == NULL) {
284 if (next_sample_id >= film->sample_count)
285 break;
286
287 next_sample = &film->sample_table[next_sample_id];
288 if (next_sample->stream != sample->stream) {
289 next_sample = NULL;
290 next_sample_id++;
291 }
292 }
293
294 /* position the stream (will probably be there anyway) */
295 avio_seek(pb, sample->sample_offset, SEEK_SET);
296
297 ret = av_get_packet(pb, pkt, sample->sample_size);
298 if (ret != sample->sample_size)
300
301 pkt->stream_index = sample->stream;
302 pkt->dts = sample->pts;
303 pkt->pts = sample->pts;
304 pkt->flags |= sample->keyframe ? AV_PKT_FLAG_KEY : 0;
305 if (next_sample != NULL)
306 pkt->duration = next_sample->pts - sample->pts;
307
308 film->current_sample++;
309
310 return ret;
311}
312
313static int film_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
314{
315 FilmDemuxContext *film = s->priv_data;
316 AVStream *st = s->streams[stream_index];
317 int64_t pos;
318 int ret = av_index_search_timestamp(st, timestamp, flags);
319 if (ret < 0)
320 return ret;
321
322 pos = avio_seek(s->pb, ffstream(st)->index_entries[ret].pos, SEEK_SET);
323 if (pos < 0)
324 return pos;
325
326 film->current_sample = ret;
327
328 return 0;
329}
330
332 .p.name = "film_cpk",
333 .p.long_name = NULL_IF_CONFIG_SMALL("Sega FILM / CPK"),
334 .priv_data_size = sizeof(FilmDemuxContext),
335 .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
341};
const FFInputFormat ff_segafilm_demuxer
Definition segafilm.c:331
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVINDEX_KEYFRAME
Definition avformat.h:628
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition utils.c:98
@ AVSTREAM_PARSE_FULL
full parsing and repack
Definition avformat.h:611
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition demux.h:35
static AVPacket * pkt
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
#define sample
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_RAWVIDEO
Definition codec_id.h:63
@ AV_CODEC_ID_PCM_S16BE_PLANAR
Definition codec_id.h:360
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_CINEPAK
Definition codec_id.h:93
@ AV_CODEC_ID_PCM_S8
Definition codec_id.h:334
@ AV_CODEC_ID_ADPCM_ADX
Definition codec_id.h:379
@ AV_CODEC_ID_PCM_S8_PLANAR
Definition codec_id.h:357
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition packet.h:650
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition seek.c:122
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition seek.c:245
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define AV_RB32(p)
#define AV_RB16(p)
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static av_cold int read_close(AVFormatContext *ctx)
Definition libcdio.c:143
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition libcdio.c:151
Memory handling functions.
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
static int film_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition segafilm.c:313
static int film_probe(const AVProbeData *p)
Definition segafilm.c:69
#define FDSC_TAG
Definition segafilm.c:38
static int film_read_header(AVFormatContext *s)
Definition segafilm.c:89
#define STAB_TAG
Definition segafilm.c:39
#define RAW_TAG
Definition segafilm.c:41
static int film_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition segafilm.c:265
#define FILM_TAG
Definition segafilm.c:37
static int film_read_close(AVFormatContext *s)
Definition segafilm.c:80
#define CVID_TAG
Definition segafilm.c:40
unsigned int pos
Definition spdifenc.c:431
int nb_channels
Number of channels in this layout.
int height
The height of the video frame in pixels.
Definition codec_par.h:150
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int width
The width of the video frame in pixels.
Definition codec_par.h:143
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition codec_par.h:99
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition codec_par.h:61
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int index
stream index in AVFormatContext
Definition avformat.h:772
enum AVStreamParseType need_parsing
Definition internal.h:321
int audio_stream_index
Definition segafilm.c:53
unsigned int audio_samplerate
Definition segafilm.c:56
int video_stream_index
Definition segafilm.c:52
film_sample * sample_table
Definition segafilm.c:62
unsigned int audio_bits
Definition segafilm.c:57
unsigned int sample_count
Definition segafilm.c:61
unsigned int current_sample
Definition segafilm.c:63
unsigned int base_clock
Definition segafilm.c:65
unsigned int audio_channels
Definition segafilm.c:58
unsigned int version
Definition segafilm.c:66
enum AVCodecID audio_type
Definition segafilm.c:55
enum AVCodecID video_type
Definition segafilm.c:60
int keyframe
Definition segafilm.c:48
unsigned int sample_size
Definition segafilm.c:45
int64_t sample_offset
Definition segafilm.c:46
int64_t pts
Definition segafilm.c:47
#define av_malloc_array(a, b)
#define av_freep(p)
#define av_log(a,...)