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

Commit 12045502 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by android code review
Browse files

Merge "stagefright aacenc: Fix type definitions for 64 bit platforms"

parents 98539a4e 75261fa1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -77,12 +77,12 @@ typedef unsigned short UWord16;
/*
 ********* define 32 bit signed/unsigned types & constants
 */
typedef long Word32;
typedef unsigned long UWord32;
typedef int Word32;
typedef unsigned int UWord32;



#ifdef LINUX
#ifndef _MSC_VER
typedef long long Word64;
typedef unsigned long long UWord64;
#else