]> git.sesse.net Git - ffmpeg/blob - libavformat/tests/movenc.c
Merge commit '2d410ebbaa1e760d6837cb434a6d1d4c3c6f0d85'
[ffmpeg] / libavformat / tests / movenc.c
1 /*
2  * Copyright (c) 2015 Martin Storsjo
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 #include "config.h"
22
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/mathematics.h"
25 #include "libavutil/md5.h"
26
27 #include "libavformat/avformat.h"
28
29 #if HAVE_UNISTD_H
30 #include <unistd.h>
31 #endif
32
33 #if !HAVE_GETOPT
34 #include "compat/getopt.c"
35 #endif
36
37 #define HASH_SIZE 16
38
39 static const uint8_t h264_extradata[] = {
40     0x01, 0x4d, 0x40, 0x1e, 0xff, 0xe1, 0x00, 0x02, 0x67, 0x4d, 0x01, 0x00, 0x02, 0x68, 0xef
41 };
42 static const uint8_t aac_extradata[] = {
43     0x12, 0x10
44 };
45
46
47 static const char *format = "mp4";
48 AVFormatContext *ctx;
49 uint8_t iobuf[32768];
50 AVDictionary *opts;
51
52 int write_file;
53 const char *cur_name;
54 FILE* out;
55 int out_size;
56 struct AVMD5* md5;
57 uint8_t hash[HASH_SIZE];
58
59 AVStream *video_st, *audio_st;
60 int64_t audio_dts, video_dts;
61
62 int bframes;
63 int64_t duration;
64 int64_t audio_duration;
65 int frames;
66 int gop_size;
67 int64_t next_p_pts;
68 enum AVPictureType last_picture;
69 int skip_write;
70 int skip_write_audio;
71 int clear_duration;
72 int force_iobuf_size;
73 int do_interleave;
74 int fake_pkt_duration;
75
76 int num_warnings;
77
78 int check_faults;
79
80
81 static void count_warnings(void *avcl, int level, const char *fmt, va_list vl)
82 {
83     if (level == AV_LOG_WARNING)
84         num_warnings++;
85 }
86
87 static void init_count_warnings(void)
88 {
89     av_log_set_callback(count_warnings);
90     num_warnings = 0;
91 }
92
93 static void reset_count_warnings(void)
94 {
95     av_log_set_callback(av_log_default_callback);
96 }
97
98 static int io_write(void *opaque, uint8_t *buf, int size)
99 {
100     out_size += size;
101     av_md5_update(md5, buf, size);
102     if (out)
103         fwrite(buf, 1, size, out);
104     return size;
105 }
106
107 static int io_write_data_type(void *opaque, uint8_t *buf, int size,
108                               enum AVIODataMarkerType type, int64_t time)
109 {
110     char timebuf[30], content[5] = { 0 };
111     const char *str;
112     switch (type) {
113     case AVIO_DATA_MARKER_HEADER:         str = "header";   break;
114     case AVIO_DATA_MARKER_SYNC_POINT:     str = "sync";     break;
115     case AVIO_DATA_MARKER_BOUNDARY_POINT: str = "boundary"; break;
116     case AVIO_DATA_MARKER_UNKNOWN:        str = "unknown";  break;
117     case AVIO_DATA_MARKER_TRAILER:        str = "trailer";  break;
118     }
119     if (time == AV_NOPTS_VALUE)
120         snprintf(timebuf, sizeof(timebuf), "nopts");
121     else
122         snprintf(timebuf, sizeof(timebuf), "%"PRId64, time);
123     // There can be multiple header/trailer callbacks, only log the box type
124     // for header at out_size == 0
125     if (type != AVIO_DATA_MARKER_UNKNOWN &&
126         type != AVIO_DATA_MARKER_TRAILER &&
127         (type != AVIO_DATA_MARKER_HEADER || out_size == 0) &&
128         size >= 8)
129         memcpy(content, &buf[4], 4);
130     else
131         snprintf(content, sizeof(content), "-");
132     printf("write_data len %d, time %s, type %s atom %s\n", size, timebuf, str, content);
133     return io_write(opaque, buf, size);
134 }
135
136 static void init_out(const char *name)
137 {
138     char buf[100];
139     cur_name = name;
140     snprintf(buf, sizeof(buf), "%s.%s", cur_name, format);
141
142     av_md5_init(md5);
143     if (write_file) {
144         out = fopen(buf, "wb");
145         if (!out)
146             perror(buf);
147     }
148     out_size = 0;
149 }
150
151 static void close_out(void)
152 {
153     int i;
154     av_md5_final(md5, hash);
155     for (i = 0; i < HASH_SIZE; i++)
156         printf("%02x", hash[i]);
157     printf(" %d %s\n", out_size, cur_name);
158     if (out)
159         fclose(out);
160     out = NULL;
161 }
162
163 static void check_func(int value, int line, const char *msg, ...)
164 {
165     if (!value) {
166         va_list ap;
167         va_start(ap, msg);
168         printf("%d: ", line);
169         vprintf(msg, ap);
170         printf("\n");
171         check_faults++;
172         va_end(ap);
173     }
174 }
175 #define check(value, ...) check_func(value, __LINE__, __VA_ARGS__)
176
177 static void init_fps(int bf, int audio_preroll, int fps)
178 {
179     AVStream *st;
180     int iobuf_size = force_iobuf_size ? force_iobuf_size : sizeof(iobuf);
181     ctx = avformat_alloc_context();
182     if (!ctx)
183         exit(1);
184     ctx->oformat = av_guess_format(format, NULL, NULL);
185     if (!ctx->oformat)
186         exit(1);
187     ctx->pb = avio_alloc_context(iobuf, iobuf_size, AVIO_FLAG_WRITE, NULL, NULL, io_write, NULL);
188     if (!ctx->pb)
189         exit(1);
190     ctx->pb->write_data_type = io_write_data_type;
191     ctx->flags |= AVFMT_FLAG_BITEXACT;
192
193     st = avformat_new_stream(ctx, NULL);
194     if (!st)
195         exit(1);
196     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
197     st->codecpar->codec_id = AV_CODEC_ID_H264;
198     st->codecpar->width = 640;
199     st->codecpar->height = 480;
200     st->time_base.num = 1;
201     st->time_base.den = 30;
202     st->codecpar->extradata_size = sizeof(h264_extradata);
203     st->codecpar->extradata = av_mallocz(st->codecpar->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
204     if (!st->codecpar->extradata)
205         exit(1);
206     memcpy(st->codecpar->extradata, h264_extradata, sizeof(h264_extradata));
207     video_st = st;
208
209     st = avformat_new_stream(ctx, NULL);
210     if (!st)
211         exit(1);
212     st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
213     st->codecpar->codec_id = AV_CODEC_ID_AAC;
214     st->codecpar->sample_rate = 44100;
215     st->codecpar->channels = 2;
216     st->time_base.num = 1;
217     st->time_base.den = 44100;
218     st->codecpar->extradata_size = sizeof(aac_extradata);
219     st->codecpar->extradata = av_mallocz(st->codecpar->extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
220     if (!st->codecpar->extradata)
221         exit(1);
222     memcpy(st->codecpar->extradata, aac_extradata, sizeof(aac_extradata));
223     audio_st = st;
224
225     if (avformat_write_header(ctx, &opts) < 0)
226         exit(1);
227     av_dict_free(&opts);
228
229     frames = 0;
230     gop_size = 30;
231     duration = video_st->time_base.den / fps;
232     audio_duration = 1024LL * audio_st->time_base.den / audio_st->codecpar->sample_rate;
233     if (audio_preroll)
234         audio_preroll = 2048LL * audio_st->time_base.den / audio_st->codecpar->sample_rate;
235
236     bframes = bf;
237     video_dts = bframes ? -duration : 0;
238     audio_dts = -audio_preroll;
239 }
240
241 static void init(int bf, int audio_preroll)
242 {
243     init_fps(bf, audio_preroll, 30);
244 }
245
246 static void mux_frames(int n)
247 {
248     int end_frames = frames + n;
249     while (1) {
250         AVPacket pkt;
251         uint8_t pktdata[8] = { 0 };
252         av_init_packet(&pkt);
253
254         if (av_compare_ts(audio_dts, audio_st->time_base, video_dts, video_st->time_base) < 0) {
255             pkt.dts = pkt.pts = audio_dts;
256             pkt.stream_index = 1;
257             pkt.duration = audio_duration;
258             audio_dts += audio_duration;
259         } else {
260             if (frames == end_frames)
261                 break;
262             pkt.dts = video_dts;
263             pkt.stream_index = 0;
264             pkt.duration = duration;
265             if ((frames % gop_size) == 0) {
266                 pkt.flags |= AV_PKT_FLAG_KEY;
267                 last_picture = AV_PICTURE_TYPE_I;
268                 pkt.pts = pkt.dts + duration;
269                 video_dts = pkt.pts;
270             } else {
271                 if (last_picture == AV_PICTURE_TYPE_P) {
272                     last_picture = AV_PICTURE_TYPE_B;
273                     pkt.pts = pkt.dts;
274                     video_dts = next_p_pts;
275                 } else {
276                     last_picture = AV_PICTURE_TYPE_P;
277                     if (((frames + 1) % gop_size) == 0) {
278                         pkt.pts = pkt.dts + duration;
279                         video_dts = pkt.pts;
280                     } else {
281                         next_p_pts = pkt.pts = pkt.dts + 2 * duration;
282                         video_dts += duration;
283                     }
284                 }
285             }
286             if (!bframes)
287                 pkt.pts = pkt.dts;
288             if (fake_pkt_duration)
289                 pkt.duration = fake_pkt_duration;
290             frames++;
291         }
292
293         if (clear_duration)
294             pkt.duration = 0;
295         AV_WB32(pktdata + 4, pkt.pts);
296         pkt.data = pktdata;
297         pkt.size = 8;
298         if (skip_write)
299             continue;
300         if (skip_write_audio && pkt.stream_index == 1)
301             continue;
302         if (do_interleave)
303             av_interleaved_write_frame(ctx, &pkt);
304         else
305             av_write_frame(ctx, &pkt);
306     }
307 }
308
309 static void mux_gops(int n)
310 {
311     mux_frames(gop_size * n);
312 }
313
314 static void skip_gops(int n)
315 {
316     skip_write = 1;
317     mux_gops(n);
318     skip_write = 0;
319 }
320
321 static void signal_init_ts(void)
322 {
323     AVPacket pkt;
324     av_init_packet(&pkt);
325     pkt.size = 0;
326     pkt.data = NULL;
327
328     pkt.stream_index = 0;
329     pkt.dts = video_dts;
330     pkt.pts = 0;
331     av_write_frame(ctx, &pkt);
332
333     pkt.stream_index = 1;
334     pkt.dts = pkt.pts = audio_dts;
335     av_write_frame(ctx, &pkt);
336 }
337
338 static void finish(void)
339 {
340     av_write_trailer(ctx);
341     av_free(ctx->pb);
342     avformat_free_context(ctx);
343     ctx = NULL;
344 }
345
346 static void help(void)
347 {
348     printf("movenc-test [-w]\n"
349            "-w          write output into files\n");
350 }
351
352 int main(int argc, char **argv)
353 {
354     int c;
355     uint8_t header[HASH_SIZE];
356     uint8_t content[HASH_SIZE];
357     int empty_moov_pos;
358     int prev_pos;
359
360     for (;;) {
361         c = getopt(argc, argv, "wh");
362         if (c == -1)
363             break;
364         switch (c) {
365         case 'w':
366             write_file = 1;
367             break;
368         default:
369         case 'h':
370             help();
371             return 0;
372         }
373     }
374
375     av_register_all();
376
377     md5 = av_md5_alloc();
378     if (!md5)
379         return 1;
380
381     // Write a fragmented file with an initial moov that actually contains some
382     // samples. One moov+mdat with 1 second of data and one moof+mdat with 1
383     // second of data.
384     init_out("non-empty-moov");
385     av_dict_set(&opts, "movflags", "frag_keyframe", 0);
386     init(0, 0);
387     mux_gops(2);
388     finish();
389     close_out();
390
391     // Write a similar file, but with B-frames and audio preroll, handled
392     // via an edit list.
393     init_out("non-empty-moov-elst");
394     av_dict_set(&opts, "movflags", "frag_keyframe", 0);
395     av_dict_set(&opts, "use_editlist", "1", 0);
396     init(1, 1);
397     mux_gops(2);
398     finish();
399     close_out();
400
401     // Use B-frames but no audio-preroll, but without an edit list.
402     // Due to avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO, the dts
403     // of the first audio packet is > 0, but it is set to zero since edit
404     // lists aren't used, increasing the duration of the first packet instead.
405     init_out("non-empty-moov-no-elst");
406     av_dict_set(&opts, "movflags", "frag_keyframe", 0);
407     av_dict_set(&opts, "use_editlist", "0", 0);
408     init(1, 0);
409     mux_gops(2);
410     finish();
411     close_out();
412
413     format = "ismv";
414     // Write an ISMV, with B-frames and audio preroll.
415     init_out("ismv");
416     av_dict_set(&opts, "movflags", "frag_keyframe", 0);
417     init(1, 1);
418     mux_gops(2);
419     finish();
420     close_out();
421     format = "mp4";
422
423     // An initial moov that doesn't contain any samples, followed by two
424     // moof+mdat pairs.
425     init_out("empty-moov");
426     av_dict_set(&opts, "movflags", "frag_keyframe+empty_moov", 0);
427     av_dict_set(&opts, "use_editlist", "0", 0);
428     init(0, 0);
429     mux_gops(2);
430     finish();
431     close_out();
432     memcpy(content, hash, HASH_SIZE);
433
434     // Similar to the previous one, but with input that doesn't start at
435     // pts/dts 0. avoid_negative_ts behaves in the same way as
436     // in non-empty-moov-no-elst above.
437     init_out("empty-moov-no-elst");
438     av_dict_set(&opts, "movflags", "frag_keyframe+empty_moov", 0);
439     init(1, 0);
440     mux_gops(2);
441     finish();
442     close_out();
443
444     // Same as the previous one, but disable avoid_negative_ts (which
445     // would require using an edit list, but with empty_moov, one can't
446     // write a sensible edit list, when the start timestamps aren't known).
447     // This should trigger a warning - we check that the warning is produced.
448     init_count_warnings();
449     init_out("empty-moov-no-elst-no-adjust");
450     av_dict_set(&opts, "movflags", "frag_keyframe+empty_moov", 0);
451     av_dict_set(&opts, "avoid_negative_ts", "0", 0);
452     init(1, 0);
453     mux_gops(2);
454     finish();
455     close_out();
456
457     reset_count_warnings();
458     check(num_warnings > 0, "No warnings printed for unhandled start offset");
459
460     // Verify that delay_moov produces the same as empty_moov for
461     // simple input
462     init_out("delay-moov");
463     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov", 0);
464     av_dict_set(&opts, "use_editlist", "0", 0);
465     init(0, 0);
466     mux_gops(2);
467     finish();
468     close_out();
469     check(!memcmp(hash, content, HASH_SIZE), "delay_moov differs from empty_moov");
470
471     // Test writing content that requires an edit list using delay_moov
472     init_out("delay-moov-elst");
473     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov", 0);
474     init(1, 1);
475     mux_gops(2);
476     finish();
477     close_out();
478
479     // Test writing a file with one track lacking packets, with delay_moov.
480     skip_write_audio = 1;
481     init_out("delay-moov-empty-track");
482     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov", 0);
483     init(0, 0);
484     mux_gops(2);
485     // The automatic flushing shouldn't output anything, since we're still
486     // waiting for data for some tracks
487     check(out_size == 0, "delay_moov flushed prematurely");
488     // When closed (or manually flushed), all the written data should still
489     // be output.
490     finish();
491     close_out();
492     check(out_size > 0, "delay_moov didn't output anything");
493
494     // Check that manually flushing still outputs things as expected. This
495     // produces two fragments, while the one above produces only one.
496     init_out("delay-moov-empty-track-flush");
497     av_dict_set(&opts, "movflags", "frag_custom+delay_moov", 0);
498     init(0, 0);
499     mux_gops(1);
500     av_write_frame(ctx, NULL); // Force writing the moov
501     check(out_size > 0, "No moov written");
502     av_write_frame(ctx, NULL);
503     mux_gops(1);
504     av_write_frame(ctx, NULL);
505     finish();
506     close_out();
507
508     skip_write_audio = 0;
509
510
511
512     // Verify that the header written by delay_moov when manually flushed
513     // is identical to the one by empty_moov.
514     init_out("empty-moov-header");
515     av_dict_set(&opts, "movflags", "frag_keyframe+empty_moov", 0);
516     av_dict_set(&opts, "use_editlist", "0", 0);
517     init(0, 0);
518     close_out();
519     memcpy(header, hash, HASH_SIZE);
520     init_out("empty-moov-content");
521     mux_gops(2);
522     // Written 2 seconds of content, with an automatic flush after 1 second.
523     check(out_size > 0, "No automatic flush?");
524     empty_moov_pos = prev_pos = out_size;
525     // Manually flush the second fragment
526     av_write_frame(ctx, NULL);
527     check(out_size > prev_pos, "No second fragment flushed?");
528     prev_pos = out_size;
529     // Check that an extra flush doesn't output any more data
530     av_write_frame(ctx, NULL);
531     check(out_size == prev_pos, "More data written?");
532     close_out();
533     memcpy(content, hash, HASH_SIZE);
534     // Ignore the trailer written here
535     finish();
536
537     init_out("delay-moov-header");
538     av_dict_set(&opts, "movflags", "frag_custom+delay_moov", 0);
539     av_dict_set(&opts, "use_editlist", "0", 0);
540     init(0, 0);
541     check(out_size == 0, "Output written during init with delay_moov");
542     mux_gops(1); // Write 1 second of content
543     av_write_frame(ctx, NULL); // Force writing the moov
544     close_out();
545     check(!memcmp(hash, header, HASH_SIZE), "delay_moov header differs from empty_moov");
546     init_out("delay-moov-content");
547     av_write_frame(ctx, NULL); // Flush the first fragment
548     check(out_size == empty_moov_pos, "Manually flushed content differs from automatically flushed, %d vs %d", out_size, empty_moov_pos);
549     mux_gops(1); // Write the rest of the content
550     av_write_frame(ctx, NULL); // Flush the second fragment
551     close_out();
552     check(!memcmp(hash, content, HASH_SIZE), "delay_moov content differs from empty_moov");
553     finish();
554
555
556     // Verify that we can produce an identical second fragment without
557     // writing the first one. First write the reference fragments that
558     // we want to reproduce.
559     av_dict_set(&opts, "movflags", "frag_custom+empty_moov+dash", 0);
560     init(0, 0);
561     mux_gops(1);
562     av_write_frame(ctx, NULL); // Output the first fragment
563     init_out("empty-moov-second-frag");
564     mux_gops(1);
565     av_write_frame(ctx, NULL); // Output the second fragment
566     close_out();
567     memcpy(content, hash, HASH_SIZE);
568     finish();
569
570     // Produce the same second fragment without actually writing the first
571     // one before.
572     av_dict_set(&opts, "movflags", "frag_custom+empty_moov+dash+frag_discont", 0);
573     av_dict_set(&opts, "fragment_index", "2", 0);
574     av_dict_set(&opts, "avoid_negative_ts", "0", 0);
575     av_dict_set(&opts, "use_editlist", "0", 0);
576     init(0, 0);
577     skip_gops(1);
578     init_out("empty-moov-second-frag-discont");
579     mux_gops(1);
580     av_write_frame(ctx, NULL); // Output the second fragment
581     close_out();
582     check(!memcmp(hash, content, HASH_SIZE), "discontinuously written fragment differs");
583     finish();
584
585     // Produce the same thing by using delay_moov, which requires a slightly
586     // different call sequence.
587     av_dict_set(&opts, "movflags", "frag_custom+delay_moov+dash+frag_discont", 0);
588     av_dict_set(&opts, "fragment_index", "2", 0);
589     init(0, 0);
590     skip_gops(1);
591     mux_gops(1);
592     av_write_frame(ctx, NULL); // Output the moov
593     init_out("delay-moov-second-frag-discont");
594     av_write_frame(ctx, NULL); // Output the second fragment
595     close_out();
596     check(!memcmp(hash, content, HASH_SIZE), "discontinuously written fragment differs");
597     finish();
598
599
600     // Test discontinuously written fragments with B-frames (where the
601     // assumption of starting at pts=0 works) but not with audio preroll
602     // (which can't be guessed).
603     av_dict_set(&opts, "movflags", "frag_custom+delay_moov+dash", 0);
604     init(1, 0);
605     mux_gops(1);
606     init_out("delay-moov-elst-init");
607     av_write_frame(ctx, NULL); // Output the moov
608     close_out();
609     memcpy(header, hash, HASH_SIZE);
610     av_write_frame(ctx, NULL); // Output the first fragment
611     init_out("delay-moov-elst-second-frag");
612     mux_gops(1);
613     av_write_frame(ctx, NULL); // Output the second fragment
614     close_out();
615     memcpy(content, hash, HASH_SIZE);
616     finish();
617
618     av_dict_set(&opts, "movflags", "frag_custom+delay_moov+dash+frag_discont", 0);
619     av_dict_set(&opts, "fragment_index", "2", 0);
620     init(1, 0);
621     skip_gops(1);
622     mux_gops(1); // Write the second fragment
623     init_out("delay-moov-elst-init-discont");
624     av_write_frame(ctx, NULL); // Output the moov
625     close_out();
626     check(!memcmp(hash, header, HASH_SIZE), "discontinuously written header differs");
627     init_out("delay-moov-elst-second-frag-discont");
628     av_write_frame(ctx, NULL); // Output the second fragment
629     close_out();
630     check(!memcmp(hash, content, HASH_SIZE), "discontinuously written fragment differs");
631     finish();
632
633
634     // Test discontinuously written fragments with B-frames and audio preroll,
635     // properly signaled.
636     av_dict_set(&opts, "movflags", "frag_custom+delay_moov+dash", 0);
637     init(1, 1);
638     mux_gops(1);
639     init_out("delay-moov-elst-signal-init");
640     av_write_frame(ctx, NULL); // Output the moov
641     close_out();
642     memcpy(header, hash, HASH_SIZE);
643     av_write_frame(ctx, NULL); // Output the first fragment
644     init_out("delay-moov-elst-signal-second-frag");
645     mux_gops(1);
646     av_write_frame(ctx, NULL); // Output the second fragment
647     close_out();
648     memcpy(content, hash, HASH_SIZE);
649     finish();
650
651     av_dict_set(&opts, "movflags", "frag_custom+delay_moov+dash+frag_discont", 0);
652     av_dict_set(&opts, "fragment_index", "2", 0);
653     init(1, 1);
654     signal_init_ts();
655     skip_gops(1);
656     mux_gops(1); // Write the second fragment
657     init_out("delay-moov-elst-signal-init-discont");
658     av_write_frame(ctx, NULL); // Output the moov
659     close_out();
660     check(!memcmp(hash, header, HASH_SIZE), "discontinuously written header differs");
661     init_out("delay-moov-elst-signal-second-frag-discont");
662     av_write_frame(ctx, NULL); // Output the second fragment
663     close_out();
664     check(!memcmp(hash, content, HASH_SIZE), "discontinuously written fragment differs");
665     finish();
666
667
668     // Test VFR content, with sidx atoms (which declare the pts duration
669     // of a fragment, forcing overriding the start pts of the next one).
670     // Here, the fragment duration in pts is significantly different from
671     // the duration in dts. The video stream starts at dts=-10,pts=0, and
672     // the second fragment starts at dts=155,pts=156. The trun duration sum
673     // of the first fragment is 165, which also is written as
674     // baseMediaDecodeTime in the tfdt in the second fragment. The sidx for
675     // the first fragment says earliest_presentation_time = 0 and
676     // subsegment_duration = 156, which also matches the sidx in the second
677     // fragment. For the audio stream, the pts and dts durations also don't
678     // match - the input stream starts at pts=-2048, but that part is excluded
679     // by the edit list.
680     init_out("vfr");
681     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov+dash", 0);
682     init_fps(1, 1, 3);
683     mux_frames(gop_size/2);
684     duration /= 10;
685     mux_frames(gop_size/2);
686     mux_gops(1);
687     finish();
688     close_out();
689
690     // Test VFR content, with cleared duration fields. In these cases,
691     // the muxer must guess the duration of the last packet of each
692     // fragment. As long as the framerate doesn't vary (too much) at the
693     // fragment edge, it works just fine. Additionally, when automatically
694     // cutting fragments, the muxer already know the timestamps of the next
695     // packet for one stream (in most cases the video stream), avoiding
696     // having to use guesses for that one.
697     init_count_warnings();
698     clear_duration = 1;
699     init_out("vfr-noduration");
700     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov+dash", 0);
701     init_fps(1, 1, 3);
702     mux_frames(gop_size/2);
703     duration /= 10;
704     mux_frames(gop_size/2);
705     mux_gops(1);
706     finish();
707     close_out();
708     clear_duration = 0;
709     reset_count_warnings();
710     check(num_warnings > 0, "No warnings printed for filled in durations");
711
712     // Test with an IO buffer size that is too small to hold a full fragment;
713     // this will cause write_data_type to be called with the type unknown.
714     force_iobuf_size = 1500;
715     init_out("large_frag");
716     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov", 0);
717     init_fps(1, 1, 3);
718     mux_gops(2);
719     finish();
720     close_out();
721     force_iobuf_size = 0;
722
723     // Test VFR content with bframes with interleaving.
724     // Here, using av_interleaved_write_frame allows the muxer to get the
725     // fragment end durations right. We always set the packet duration to
726     // the expected, but we simulate dropped frames at one point.
727     do_interleave = 1;
728     init_out("vfr-noduration-interleave");
729     av_dict_set(&opts, "movflags", "frag_keyframe+delay_moov", 0);
730     av_dict_set(&opts, "frag_duration", "650000", 0);
731     init_fps(1, 1, 30);
732     mux_frames(gop_size/2);
733     // Pretend that the packet duration is the normal, even if
734     // we actually skip a bunch of frames. (I.e., simulate that
735     // we don't know of the framedrop in advance.)
736     fake_pkt_duration = duration;
737     duration *= 10;
738     mux_frames(1);
739     fake_pkt_duration = 0;
740     duration /= 10;
741     mux_frames(gop_size/2 - 1);
742     mux_gops(1);
743     finish();
744     close_out();
745     clear_duration = 0;
746     do_interleave = 0;
747
748
749     av_free(md5);
750
751     return check_faults > 0 ? 1 : 0;
752 }