mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
Use AV_RN32 for an unaligned read in the mxg demuxer.
Fixes ticket #2707.
This commit is contained in:
parent
e59fb3f8b1
commit
35aed74fdc
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user