mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-09 22:18:04 +00:00
lavf/gifdec: do not mark as notimestamps
The demuxer does not set packet timestamps itself after
c6b6356635
and instead relies on the
parser to do it. However, this does not matter from the caller
perspective as it still happens inside the demuxer. The demuxer should
thus not be flagged as not having timestamps.
This commit is contained in:
parent
80401b86d3
commit
3562993d82
@ -285,7 +285,7 @@ const AVInputFormat ff_gif_demuxer = {
|
||||
.read_probe = gif_probe,
|
||||
.read_header = gif_read_header,
|
||||
.read_packet = gif_read_packet,
|
||||
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
|
||||
.flags = AVFMT_GENERIC_INDEX,
|
||||
.extensions = "gif",
|
||||
.priv_class = &demuxer_class,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user