Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix up #endif.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13652 a1c6a512-1295-4272-9138-f99709370657

+5 -4
+5 -4
firmware/pcm_playback.c
··· 23 23 #include "sound.h" 24 24 #if CONFIG_CPU == PNX0101 25 25 #include "string.h" 26 - #endif 26 + #endif /* CONFIG_CPU == PNX0101 */ 27 27 28 28 /** 29 29 * APIs implemented in the target-specific portion: ··· 273 273 #if CONFIG_CPU == PNX0101 274 274 size_t samples = p_size / 4; 275 275 addr = p; 276 - #endif 276 + #endif /* CONFIG_CPU */. 277 277 278 278 if (samples > PEAK_SAMPLES) 279 279 samples = PEAK_SAMPLES - (PEAK_STRIDE - 1); ··· 324 324 else 325 325 *right = peak_value; 326 326 } 327 - #endif 328 327 } 329 - #endif 328 + #endif /* !defined(CPU_PP) */ 329 + 330 + #endif /* !defined(CPU_COLDFIRE) && (CONFIG_CPU != S3C2440) */ 330 331 331 332 /**************************************************************************** 332 333 * Functions that do not require targeted implementation but only a targeted