for low overhead obu, we can't forsee the obu size. we can only get it
when we parsed the obu header.
---
libavcodec/av1_parse.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/av1_parse.h b/libavcodec/av1_parse.h
index a3b39f039c..823bdedd5e 100644
--- a/libavcodec/av1_parse.h
+++ b/libavcodec/av1_parse.h
@@ -135,7 +135,7 @@ static inline int parse_obu_header(const uint8_t *buf, int
buf_size,
size = *obu_size + *start_pos;
- if (size > buf_size)
+ if (!*has_size_flag && size > buf_size)
return AVERROR_INVALIDDATA;
return size;
--
2.17.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".