mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Set AVFMT_TS_NONSTRICT for framecrc muxer.
Since it is set for e.g. webm muxer we should make it possible to test such streams with framecrc, too. Though the primary reason is that this allows the H.264 tests to not run into this check when fixing raw video encode to pass pts values on. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
333f5b52e3
commit
bb2d42c22f
@ -39,5 +39,5 @@ AVOutputFormat ff_framecrc_muxer = {
|
||||
.audio_codec = CODEC_ID_PCM_S16LE,
|
||||
.video_codec = CODEC_ID_RAWVIDEO,
|
||||
.write_packet = framecrc_write_packet,
|
||||
.flags = AVFMT_VARIABLE_FPS,
|
||||
.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user