Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ddb63b46 authored by Wei Jia's avatar Wei Jia Committed by Android Git Automerger
Browse files

am f8f0e0b7: am 562be234: am f076fabf: am 0af43510: am 2562495d: am a590baca:...

am f8f0e0b7: am 562be234: am f076fabf: am 0af43510: am 2562495d: am a590baca: Merge commit \'6ae815e0\' into HEAD

* commit 'f8f0e0b7':
  libstagefright: fix overflow in MPEG4Source::parseSampleAuxiliaryInformationOffsets.
parents 1e97d490 f8f0e0b7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -44,6 +44,10 @@
#include <byteswap.h>
#include "include/ID3.h"

#ifndef UINT32_MAX
#define UINT32_MAX       (4294967295U)
#endif

namespace android {

class MPEG4Source : public MediaSource {