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

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

am 8a5b2b2b: am ddb63b46: am f8f0e0b7: am 562be234: am f076fabf: am 0af43510:...

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

* commit '8a5b2b2b':
  libstagefright: fix overflow in MPEG4Source::parseSampleAuxiliaryInformationOffsets.
parents c07dcbe1 8a5b2b2b
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 {