diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-04-15 23:37:19 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-04-15 23:37:19 +0000 |
commit | 1b24cf32e02a1372e57b3a2a432bc0adfe496e6d (patch) | |
tree | 220f4583ae1081df62fa5c861eed3e9e90a24515 /cmds | |
parent | 4845b69f70ff457be8d8908f6eb61e2af67e00d3 (diff) | |
parent | e80631aa1992ca50af679cd6a018c0ffda7f9b17 (diff) | |
download | frameworks_av-1b24cf32e02a1372e57b3a2a432bc0adfe496e6d.zip frameworks_av-1b24cf32e02a1372e57b3a2a432bc0adfe496e6d.tar.gz frameworks_av-1b24cf32e02a1372e57b3a2a432bc0adfe496e6d.tar.bz2 |
am e80631aa: am 839d11d1: Merge changes I0a744dc7,Id993a70d
* commit 'e80631aa1992ca50af679cd6a018c0ffda7f9b17':
media: use size_t for integer iterator to Vector::size()
media: 64 bit compile issues
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/stagefright/stagefright.cpp | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/cmds/stagefright/stagefright.cpp b/cmds/stagefright/stagefright.cpp index 6b41fd4..b70afe6 100644 --- a/cmds/stagefright/stagefright.cpp +++ b/cmds/stagefright/stagefright.cpp @@ -14,16 +14,16 @@ * limitations under the License. */ +#include <inttypes.h> +#include <fcntl.h> +#include <stdlib.h> +#include <string.h> +#include <sys/time.h> + //#define LOG_NDEBUG 0 #define LOG_TAG "stagefright" #include <media/stagefright/foundation/ADebug.h> -#include <sys/time.h> - -#include <stdlib.h> -#include <string.h> -#include <inttypes.h> - #include "jpeg.h" #include "SineSource.h" @@ -51,8 +51,6 @@ #include <private/media/VideoFrame.h> -#include <fcntl.h> - #include <gui/GLConsumer.h> #include <gui/Surface.h> #include <gui/SurfaceComposerClient.h> @@ -648,7 +646,7 @@ static void dumpCodecProfiles(const sp<IOMX>& omx, bool queryDecoders) { const CodecProfileLevel &profileLevel = results[i].mProfileLevels[j]; - printf("%s%ld/%ld", j > 0 ? ", " : "", + printf("%s%" PRIu32 "/%" PRIu32, j > 0 ? ", " : "", profileLevel.mProfile, profileLevel.mLevel); } |