[FFmpeg-devel] [PATCH 4/5] avformat/av1: return an error when no data is provided to ff_isom_write_av1c()

James Almer jamrial at gmail.com
Thu Jul 26 04:11:50 EEST 2018


Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavformat/av1.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/av1.c b/libavformat/av1.c
index 7db29c8d76..7c55a100bf 100644
--- a/libavformat/av1.c
+++ b/libavformat/av1.c
@@ -82,6 +82,9 @@ int ff_isom_write_av1c(AVIOContext *pb, const uint8_t *buf, int size)
     int64_t obu_size;
     int start_pos, type, temporal_id, spatial_id;
 
+    if (size <= 0)
+        return AVERROR_INVALIDDATA;
+
     while (size > 0) {
         int ret = parse_obu_header(buf, size, &obu_size, &start_pos,
                                    &type, &temporal_id, &spatial_id);
-- 
2.18.0



More information about the ffmpeg-devel mailing list