From c36c82655e4b9be33e3a6f3dd1e999a0a9595339 Mon Sep 17 00:00:00 2001 From: Tellen Yu Date: Fri, 22 May 2015 14:19:05 +0000 Subject: modify for compatibility 64bit Change-Id: I5e40c68368a0523969953ddb46f1866c35b14685 --- diff --git a/v3/fake-pipeline2/JpegCompressor.cpp b/v3/fake-pipeline2/JpegCompressor.cpp index 6678116..35730b8 100755 --- a/v3/fake-pipeline2/JpegCompressor.cpp +++ b/v3/fake-pipeline2/JpegCompressor.cpp @@ -465,6 +465,7 @@ static void yuyv_to_yuv(uint8_t* dst, uint32_t* src, int width) { } } else { int n = width; +#if defined(__arm__) asm volatile ( " pld [%[src], %[src_stride], lsl #2] \n\t" " cmp %[n], #16 \n\t" @@ -489,6 +490,8 @@ static void yuyv_to_yuv(uint8_t* dst, uint32_t* src, int width) { : [src_stride] "r" (width) : "cc", "memory", "q0", "q1", "q2" ); +#elif defined(__aarch64__) +#endif } } -- cgit