]> git.sesse.net Git - ffmpeg/blob - libavformat/segafilmenc.c
avfilter/vsrc_testsrc: simplify color filter commands parsing
[ffmpeg] / libavformat / segafilmenc.c
1 /*
2  * Sega FILM Format (CPK) Muxer
3  * Copyright (C) 2003 The FFmpeg project
4  * Copyright (C) 2018 Misty De Meo
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * Sega FILM (.cpk) file muxer
26  * @author Misty De Meo <misty@brew.sh>
27  *
28  * @see For more information regarding the Sega FILM file format, visit:
29  *   http://wiki.multimedia.cx/index.php?title=Sega_FILM
30  */
31
32 #include "libavutil/intreadwrite.h"
33 #include "avformat.h"
34 #include "internal.h"
35 #include "avio_internal.h"
36
37 typedef struct FILMPacket {
38     int audio;
39     int keyframe;
40     int32_t pts;
41     int32_t duration;
42     int32_t size;
43     int32_t index;
44     struct FILMPacket *next;
45 } FILMPacket;
46
47 typedef struct FILMOutputContext {
48     const AVClass *class;
49     int audio_index;
50     int video_index;
51     int64_t stab_pos;
52     FILMPacket *start;
53     FILMPacket *last;
54     int64_t packet_count;
55 } FILMOutputContext;
56
57 static int film_write_packet_to_header(AVFormatContext *format_context, FILMPacket *pkt)
58 {
59     AVIOContext *pb = format_context->pb;
60     /* The bits in these two 32-bit integers contain info about the contents of this sample */
61     int32_t info1 = 0;
62     int32_t info2 = 0;
63
64     if (pkt->audio) {
65         /* Always the same, carries no more information than "this is audio" */
66         info1 = 0xFFFFFFFF;
67         info2 = 1;
68     } else {
69         info1 = pkt->pts;
70         info2 = pkt->duration;
71         /* The top bit being set indicates a key frame */
72         if (!pkt->keyframe)
73             info1 |= (1 << 31);
74     }
75
76     /* Write the 16-byte sample info packet to the STAB chunk in the header */
77     avio_wb32(pb, pkt->index);
78     avio_wb32(pb, pkt->size);
79     avio_wb32(pb, info1);
80     avio_wb32(pb, info2);
81
82     return 0;
83 }
84
85 static int film_write_packet(AVFormatContext *format_context, AVPacket *pkt)
86 {
87     FILMPacket *metadata;
88     AVIOContext *pb = format_context->pb;
89     FILMOutputContext *film = format_context->priv_data;
90     int encoded_buf_size = 0;
91     enum AVCodecID codec_id;
92
93     /* Track the metadata used to write the header and add it to the linked list */
94     metadata = av_mallocz(sizeof(FILMPacket));
95     if (!metadata)
96         return AVERROR(ENOMEM);
97     metadata->audio = pkt->stream_index == film->audio_index;
98     metadata->keyframe = pkt->flags & AV_PKT_FLAG_KEY;
99     metadata->pts = pkt->pts;
100     metadata->duration = pkt->duration;
101     metadata->size = pkt->size;
102     if (film->last == NULL) {
103         metadata->index = 0;
104     } else {
105         metadata->index = film->last->index + film->last->size;
106         film->last->next = metadata;
107     }
108     metadata->next = NULL;
109     if (film->start == NULL)
110         film->start = metadata;
111     film->packet_count++;
112     film->last = metadata;
113
114     codec_id = format_context->streams[pkt->stream_index]->codecpar->codec_id;
115
116     /* Sega Cinepak has an extra two-byte header; write dummy data there,
117      * then adjust the cvid header to accommodate for the extra size */
118     if (codec_id == AV_CODEC_ID_CINEPAK) {
119         encoded_buf_size = AV_RB24(&pkt->data[1]);
120         /* Already Sega Cinepak, so no need to reformat the packets */
121         if (encoded_buf_size != pkt->size && (pkt->size % encoded_buf_size) != 0) {
122             avio_write(pb, pkt->data, pkt->size);
123         } else {
124             uint8_t padding[2] = {0, 0};
125             /* In Sega Cinepak, the reported size in the Cinepak header is
126              * 8 bytes too short. However, the size in the STAB section of the header
127              * is correct, taking into account the extra two bytes. */
128             AV_WB24(&pkt->data[1], pkt->size - 8 + 2);
129             metadata->size += 2;
130
131             avio_write(pb, pkt->data, 10);
132             avio_write(pb, padding, 2);
133             avio_write(pb, &pkt->data[10], pkt->size - 10);
134         }
135     } else {
136         /* Other formats can just be written as-is */
137         avio_write(pb, pkt->data, pkt->size);
138     }
139
140     return 0;
141 }
142
143 static int get_audio_codec_id(enum AVCodecID codec_id)
144 {
145     /* 0 (PCM) and 2 (ADX) are the only known values */
146     switch (codec_id) {
147     case AV_CODEC_ID_PCM_S8_PLANAR:
148     case AV_CODEC_ID_PCM_S16BE_PLANAR:
149         return 0;
150     case AV_CODEC_ID_ADPCM_ADX:
151         return 2;
152     default:
153         return -1;
154     }
155 }
156
157 static int film_init(AVFormatContext *format_context)
158 {
159     AVStream *audio = NULL;
160     FILMOutputContext *film = format_context->priv_data;
161     film->audio_index = -1;
162     film->video_index = -1;
163     film->stab_pos = 0;
164     film->packet_count = 0;
165     film->start = NULL;
166     film->last = NULL;
167
168     for (int i = 0; i < format_context->nb_streams; i++) {
169         AVStream *st = format_context->streams[i];
170         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
171             if (film->audio_index > -1) {
172                 av_log(format_context, AV_LOG_ERROR, "Sega FILM allows a maximum of one audio stream.\n");
173                 return AVERROR(EINVAL);
174             }
175             film->audio_index = i;
176             audio = st;
177         }
178
179         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
180             if (film->video_index > -1) {
181                 av_log(format_context, AV_LOG_ERROR, "Sega FILM allows a maximum of one video stream.\n");
182                 return AVERROR(EINVAL);
183             }
184             film->video_index = i;
185         }
186
187         if (film->video_index == -1) {
188             av_log(format_context, AV_LOG_ERROR, "No video stream present.\n");
189             return AVERROR(EINVAL);
190         }
191     }
192
193     if (audio != NULL && get_audio_codec_id(audio->codecpar->codec_id) < 0) {
194         av_log(format_context, AV_LOG_ERROR, "Incompatible audio stream format.\n");
195         return AVERROR(EINVAL);
196     }
197
198     return 0;
199 }
200
201 static int shift_data(AVFormatContext *format_context, int64_t shift_size)
202 {
203     int ret = 0;
204     int64_t pos, pos_end = avio_tell(format_context->pb);
205     uint8_t *buf, *read_buf[2];
206     int read_buf_id = 0;
207     int read_size[2];
208     AVIOContext *read_pb;
209
210     buf = av_malloc(shift_size * 2);
211     if (!buf)
212         return AVERROR(ENOMEM);
213     read_buf[0] = buf;
214     read_buf[1] = buf + shift_size;
215
216     /* Write the header at the beginning of the file, shifting all content as necessary;
217      * based on the approach used by MOV faststart. */
218     avio_flush(format_context->pb);
219     ret = format_context->io_open(format_context, &read_pb, format_context->url, AVIO_FLAG_READ, NULL);
220     if (ret < 0) {
221         av_log(format_context, AV_LOG_ERROR, "Unable to re-open %s output file to "
222                "write the header\n", format_context->url);
223         av_free(buf);
224         return ret;
225     }
226
227     /* mark the end of the shift to up to the last data we wrote, and get ready
228      * for writing */
229     pos_end = avio_tell(format_context->pb);
230     avio_seek(format_context->pb, shift_size, SEEK_SET);
231
232     /* start reading at where the new header will be placed */
233     avio_seek(read_pb, 0, SEEK_SET);
234     pos = avio_tell(read_pb);
235
236 #define READ_BLOCK do {                                                             \
237     read_size[read_buf_id] = avio_read(read_pb, read_buf[read_buf_id], shift_size);  \
238     read_buf_id ^= 1;                                                               \
239 } while (0)
240
241     /* shift data by chunk of at most shift_size */
242     READ_BLOCK;
243     do {
244         int n;
245         READ_BLOCK;
246         n = read_size[read_buf_id];
247         if (n <= 0)
248             break;
249         avio_write(format_context->pb, read_buf[read_buf_id], n);
250         pos += n;
251     } while (pos < pos_end);
252     ff_format_io_close(format_context, &read_pb);
253
254     av_free(buf);
255     return 0;
256 }
257
258 static int film_write_header(AVFormatContext *format_context)
259 {
260     int ret = 0;
261     int64_t sample_table_size, stabsize, headersize;
262     int8_t audio_codec;
263     AVIOContext *pb = format_context->pb;
264     FILMOutputContext *film = format_context->priv_data;
265     FILMPacket *prev, *packet;
266     AVStream *audio = NULL;
267     AVStream *video = NULL;
268
269     /* Calculate how much we need to reserve for the header;
270      * this is the amount the rest of the data will be shifted up by. */
271     sample_table_size = film->packet_count * 16;
272     stabsize = 16 + sample_table_size;
273     headersize = 16 + /* FILM header base */
274                  32 + /* FDSC chunk */
275                  stabsize;
276
277     ret = shift_data(format_context, headersize);
278     if (ret < 0)
279         return ret;
280     /* Seek back to the beginning to start writing the header now */
281     avio_seek(pb, 0, SEEK_SET);
282
283     if (film->audio_index > -1)
284         audio = format_context->streams[film->audio_index];
285     if (film->video_index > -1)
286         video = format_context->streams[film->video_index];
287
288     if (audio != NULL) {
289         audio_codec = get_audio_codec_id(audio->codecpar->codec_id);
290         if (audio_codec < 0) {
291             av_log(format_context, AV_LOG_ERROR, "Incompatible audio stream format.\n");
292             return AVERROR(EINVAL);
293         }
294     }
295
296     if (video->codecpar->format != AV_PIX_FMT_RGB24) {
297         av_log(format_context, AV_LOG_ERROR, "Pixel format must be rgb24.\n");
298         return AVERROR(EINVAL);
299     }
300
301     /* First, write the FILM header; this is very simple */
302
303     ffio_wfourcc(pb, "FILM");
304     avio_wb32(pb, 48 + stabsize);
305     /* This seems to be okay to hardcode, since this muxer targets 1.09 features;
306      * videos produced by this muxer are readable by 1.08 and lower players. */
307     ffio_wfourcc(pb, "1.09");
308     /* I have no idea what this field does, might be reserved */
309     avio_wb32(pb, 0);
310
311     /* Next write the FDSC (file description) chunk */
312     ffio_wfourcc(pb, "FDSC");
313     avio_wb32(pb, 0x20); /* Size of FDSC chunk */
314
315     /* The only two supported codecs; raw video is rare */
316     switch (video->codecpar->codec_id) {
317     case AV_CODEC_ID_CINEPAK:
318         ffio_wfourcc(pb, "cvid");
319         break;
320     case AV_CODEC_ID_RAWVIDEO:
321         ffio_wfourcc(pb, "raw ");
322         break;
323     default:
324         av_log(format_context, AV_LOG_ERROR, "Incompatible video stream format.\n");
325         return AVERROR(EINVAL);
326     }
327
328     avio_wb32(pb, video->codecpar->height);
329     avio_wb32(pb, video->codecpar->width);
330     avio_w8(pb, 24); /* Bits per pixel - observed to always be 24 */
331
332     if (audio != NULL) {
333         avio_w8(pb, audio->codecpar->channels); /* Audio channels */
334         avio_w8(pb, audio->codecpar->bits_per_coded_sample); /* Audio bit depth */
335         avio_w8(pb, audio_codec); /* Compression - 0 is PCM, 2 is ADX */
336         avio_wb16(pb, audio->codecpar->sample_rate); /* Audio sampling rate */
337     } else {
338         /* Set all these fields to 0 if there's no audio */
339         avio_w8(pb, 0);
340         avio_w8(pb, 0);
341         avio_w8(pb, 0);
342         avio_wb16(pb, 0);
343     }
344
345     /* I have no idea what this pair of fields does either, might be reserved */
346     avio_wb32(pb, 0);
347     avio_wb16(pb, 0);
348
349     /* Finally, write the STAB (sample table) chunk */
350     ffio_wfourcc(pb, "STAB");
351     avio_wb32(pb, 16 + (film->packet_count * 16));
352     /* Framerate base frequency. Here we're assuming that the frame rate is even.
353      * In real world Sega FILM files, there are usually a couple of approaches:
354      * a) framerate base frequency is the same as the framerate, and ticks
355      *    increment by 1 every frame, or
356      * b) framerate base frequency is a much larger number, and ticks
357      *    increment by larger steps every frame.
358      * The latter occurs even in cases where the frame rate is even; for example, in
359      * Lunar: Silver Star Story, the base frequency is 600 and each frame, the ticks
360      * are incremented by 25 for an evenly spaced framerate of 24fps. */
361     avio_wb32(pb, av_q2d(av_inv_q(video->time_base)));
362
363     avio_wb32(pb, film->packet_count);
364
365     avio_flush(pb);
366
367     /* Finally, write out each packet's data to the header */
368     packet = film->start;
369     while (packet != NULL) {
370         film_write_packet_to_header(format_context, packet);
371         prev = packet;
372         packet = packet->next;
373         av_freep(&prev);
374     }
375
376     return 0;
377 }
378
379 static const AVClass film_muxer_class = {
380     .class_name     = "Sega FILM muxer",
381     .item_name      = av_default_item_name,
382     .version        = LIBAVUTIL_VERSION_INT,
383 };
384
385 AVOutputFormat ff_segafilm_muxer = {
386     .name           = "film_cpk",
387     .long_name      = NULL_IF_CONFIG_SMALL("Sega FILM / CPK"),
388     .extensions     = "cpk",
389     .priv_data_size = sizeof(FILMOutputContext),
390     .audio_codec    = AV_CODEC_ID_PCM_S16BE_PLANAR,
391     .video_codec    = AV_CODEC_ID_CINEPAK,
392     .init           = film_init,
393     .write_trailer  = film_write_header,
394     .write_packet   = film_write_packet,
395     .priv_class     = &film_muxer_class,
396 };