[FFmpeg-cvslog] avformat/dhav: make duration extraction more robust

Paul B Mahol git at videolan.org
Wed Oct 13 13:16:03 EEST 2021


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Oct 13 12:12:35 2021 +0200| [13141339c1df58b92976e509396a265e7262000c] | committer: Paul B Mahol

avformat/dhav: make duration extraction more robust

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=13141339c1df58b92976e509396a265e7262000c
---

 libavformat/dhav.c | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/libavformat/dhav.c b/libavformat/dhav.c
index 4d45a258d8..b6bb25204c 100644
--- a/libavformat/dhav.c
+++ b/libavformat/dhav.c
@@ -239,16 +239,18 @@ static int64_t get_duration(AVFormatContext *s)
         return 0;
 
     avio_seek(s->pb, avio_size(s->pb) - 8, SEEK_SET);
-    if (avio_rl32(s->pb) == MKTAG('d','h','a','v')) {
-        int seek_back = avio_rl32(s->pb);
-
-        avio_seek(s->pb, -seek_back, SEEK_CUR);
-        read_chunk(s);
-        get_timeinfo(dhav->date, &timeinfo);
-        end = av_timegm(&timeinfo) * 1000LL;
-    } else {
-        avio_seek(s->pb, start_pos, SEEK_SET);
-        return 0;
+    while (avio_tell(s->pb) > 12) {
+        if (avio_rl32(s->pb) == MKTAG('d','h','a','v')) {
+            int seek_back = avio_rl32(s->pb);
+
+            avio_seek(s->pb, -seek_back, SEEK_CUR);
+            read_chunk(s);
+            get_timeinfo(dhav->date, &timeinfo);
+            end = av_timegm(&timeinfo) * 1000LL;
+            break;
+        } else {
+            avio_seek(s->pb, -12, SEEK_CUR);
+        }
     }
 
     avio_seek(s->pb, start_pos, SEEK_SET);



More information about the ffmpeg-cvslog mailing list