summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-05-02 10:53:46 +0200
committerAnton Khirnov <anton@khirnov.net>2023-05-05 14:49:40 +0200
commite43be84c0f3ff6d0dda6976120b33234cc5db962 (patch)
tree096f02ad6697ed99cd269ecdcff364038b45a2d5 /libavformat
parent2850584876e52beaddf7a9f30e9914dad7115618 (diff)
downloadffmpeg-e43be84c0f3ff6d0dda6976120b33234cc5db962.tar.gz
lavf/av1dec: mark as notimestamps
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/av1dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/av1dec.c b/libavformat/av1dec.c
index d4b430af7e..ba7fee60cd 100644
--- a/libavformat/av1dec.c
+++ b/libavformat/av1dec.c
@@ -287,7 +287,7 @@ const AVInputFormat ff_av1_demuxer = {
.read_packet = annexb_read_packet,
.read_close = av1_read_close,
.extensions = "obu",
- .flags = AVFMT_GENERIC_INDEX,
+ .flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
.priv_class = &av1_demuxer_class,
};
#endif
@@ -432,7 +432,7 @@ const AVInputFormat ff_obu_demuxer = {
.read_packet = obu_read_packet,
.read_close = av1_read_close,
.extensions = "obu",
- .flags = AVFMT_GENERIC_INDEX | AVFMT_NO_BYTE_SEEK,
+ .flags = AVFMT_GENERIC_INDEX | AVFMT_NO_BYTE_SEEK | AVFMT_NOTIMESTAMPS,
.priv_class = &av1_demuxer_class,
};
#endif