OSDN Git Service

Use AV_RN32 for an unaligned read in the mxg demuxer.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 26 Jun 2013 07:33:44 +0000 (09:33 +0200)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 26 Jun 2013 07:33:44 +0000 (09:33 +0200)
Fixes ticket #2707.

libavformat/mxg.c

index 604be78..3a6cf77 100644 (file)
@@ -74,7 +74,7 @@ static int mxg_read_header(AVFormatContext *s)
 static uint8_t* mxg_find_startmarker(uint8_t *p, uint8_t *end)
 {
     for (; p < end - 3; p += 4) {
-        uint32_t x = *(uint32_t*)p;
+        uint32_t x = AV_RN32(p);
 
         if (x & (~(x+0x01010101)) & 0x80808080) {
             if (p[0] == 0xff) {