From 2628155fc9947dcf463938553f057c39ccc2227a Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Thu, 4 Mar 2021 08:59:17 -0500 Subject: Clean up places that use #if defined(CPU_ARM | CPU_COLDFIRE | CPU_MIPS) Since that encompasses _all_ of our native targets in a post-archos world, either replace it with #if (CONFIG_PLATFORM & PLATFORM_NATIVE) or delete it altogher as appropriate. Change-Id: I9128a456e850d5c96a9e05806aad3acd923f90c5 --- lib/rbcodec/codecs/vorbis.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/rbcodec/codecs/vorbis.c') diff --git a/lib/rbcodec/codecs/vorbis.c b/lib/rbcodec/codecs/vorbis.c index 83c9d5b31d..ce1f4ba893 100644 --- a/lib/rbcodec/codecs/vorbis.c +++ b/lib/rbcodec/codecs/vorbis.c @@ -28,7 +28,7 @@ CODEC_HEADER -#if defined(CPU_ARM) || defined(CPU_COLDFIRE) || defined(CPU_MIPS) +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) #include jmp_buf rb_jump_buf; #endif @@ -135,7 +135,7 @@ enum codec_status codec_run(void) ogg_int64_t vf_pcmlengths[2]; intptr_t param; -#if defined(CPU_ARM) || defined(CPU_COLDFIRE) || defined(CPU_MIPS) +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) if (setjmp(rb_jump_buf) != 0) { /* malloc failed; finish with this track */ goto done; @@ -153,7 +153,7 @@ enum codec_status codec_run(void) /* Open a non-seekable stream */ error = ov_open_callbacks(ci, &vf, NULL, 0, callbacks); - + /* If the non-seekable open was successful, we need to supply the missing * data to make it seekable. This is a hack, but it's reasonable since we * don't want to run the whole file through the buffer before we start -- cgit v1.2.3