X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FlibFLAC%2Fmemory.c;h=8d165e04a3033180d8e16fc76e77a7ce85feb55f;hb=5f2b46d0314085189627e8b47453fd99ee172cb0;hp=294dd1e3e0b69e738c81c1c3c58cbb47020d157d;hpb=8f64899d97009613d9c20e7cea821b9c1a40639a;p=platform%2Fupstream%2Fflac.git diff --git a/src/libFLAC/memory.c b/src/libFLAC/memory.c index 294dd1e..8d165e0 100644 --- a/src/libFLAC/memory.c +++ b/src/libFLAC/memory.c @@ -157,6 +157,8 @@ FLAC__bool FLAC__memory_alloc_aligned_unsigned_array(unsigned elements, unsigned } } +#ifndef FLAC__INTEGER_ONLY_LIBRARY + FLAC__bool FLAC__memory_alloc_aligned_real_array(unsigned elements, FLAC__real **unaligned_pointer, FLAC__real **aligned_pointer) { FLAC__real *pu; /* unaligned pointer */ @@ -182,3 +184,5 @@ FLAC__bool FLAC__memory_alloc_aligned_real_array(unsigned elements, FLAC__real * return true; } } + +#endif