Module: libav
Branch: master
Commit: 1697c29d75942f1306e76e3c6486e1b822a5b437

Author:    Alex Converse <[email protected]>
Committer: Alex Converse <[email protected]>
Date:      Thu Mar  1 16:47:54 2012 -0800

rmdec: Honor .RMF tag size rather than assuming 18.

---

 libavformat/rmdec.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c
index a5e6d2d..ae6cd0b 100644
--- a/libavformat/rmdec.c
+++ b/libavformat/rmdec.c
@@ -438,10 +438,8 @@ static int rm_read_header(AVFormatContext *s)
         return AVERROR(EIO);
     }
 
-    avio_rb32(pb); /* header size */
-    avio_rb16(pb);
-    avio_rb32(pb);
-    avio_rb32(pb); /* number of headers */
+    tag_size = avio_rb32(pb);
+    avio_skip(pb, tag_size - 8);
 
     for(;;) {
         if (pb->eof_reached)

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to