diff options
author | James Almer <jamrial@gmail.com> | 2023-06-15 10:53:12 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-06-16 09:57:35 -0300 |
commit | a734fa92c8bc39f0792c8da8aecaa145599808bd (patch) | |
tree | 350067321a9c5da2a7552993871cecfc7687073f /libavformat | |
parent | 12a073f72cf146d16c7987cf8782519b69be5f56 (diff) | |
download | ffmpeg-a734fa92c8bc39f0792c8da8aecaa145599808bd.tar.gz |
avformat/evcdec: set the demuxer as AVFMT_NOTIMESTAMPS
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/evcdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/evcdec.c b/libavformat/evcdec.c index 89eda0f53e..807406885a 100644 --- a/libavformat/evcdec.c +++ b/libavformat/evcdec.c @@ -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), |