avformat/evcdec: set the demuxer as AVFMT_NOTIMESTAMPS

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2023-06-15 10:53:12 -03:00
parent 12a073f72c
commit a734fa92c8
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ const AVInputFormat ff_evc_demuxer = {
.read_packet = evc_read_packet, // annexb_read_packet
.read_close = evc_read_close,
.extensions = "evc",
.flags = AVFMT_GENERIC_INDEX,
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
.flags_internal = FF_FMT_INIT_CLEANUP,
.raw_codec_id = AV_CODEC_ID_EVC,
.priv_data_size = sizeof(EVCDemuxContext),