Browse Source

md5: change flags to match framemd5.

This prevents the following warning: "Application provided invalid, non
monotonically increasing dts to muxer in stream 0: 9 >= 9".
tags/n3.0
Ronald S. Bultje 10 years ago
parent
commit
a02e27c03d
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavformat/md5enc.c

+ 2
- 1
libavformat/md5enc.c View File

@@ -107,7 +107,8 @@ AVOutputFormat ff_md5_muxer = {
.write_header = write_header,
.write_packet = write_packet,
.write_trailer = write_trailer,
.flags = AVFMT_NOTIMESTAMPS,
.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT |
AVFMT_TS_NEGATIVE,
.priv_class = &md5enc_class,
};
#endif


Loading…
Cancel
Save