From 492518a43a7f134e9eedfa922f17e6ed03e9a06d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 23 Jul 2014 17:20:52 -0600 Subject: [PATCH] Fix missing right parenthesis in conditional compilation; Also, should use strcasecmp vs. strcmp when comparing for matches in extension --- nxwm/src/cmediaplayer.cxx | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/nxwm/src/cmediaplayer.cxx b/nxwm/src/cmediaplayer.cxx index c3df41c8c..d94b57369 100644 --- a/nxwm/src/cmediaplayer.cxx +++ b/nxwm/src/cmediaplayer.cxx @@ -433,29 +433,29 @@ inline bool CMediaPlayer::showMediaFiles(const char *mediaPath) FAR const char *extension = std::strchr(direntry->d_name, '.'); if (!extension || (true -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_AC3 - && std::strcmp(extension, ".ac3") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_AC3) + && std::strcasecmp(extension, ".ac3") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_DTS - && std::strcmp(extension, ".dts") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_DTS) + && std::strcasecmp(extension, ".dts") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_WAV - && std::strcmp(extension, ".wav") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_WAV) + && std::strcasecmp(extension, ".wav") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_PCM - && std::strcmp(extension, ".pcm") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_PCM) + && std::strcasecmp(extension, ".pcm") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_MP3 - && std::strcmp(extension, ".mp3") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_MP3) + && std::strcasecmp(extension, ".mp3") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_MIDI - && sstd::trcmp(extension, ".mid") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_MIDI) + && std::strcasecmp(extension, ".mid") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_WMA - && std::strcmp(extension, ".wma") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_WMA) + && std::strcasecmp(extension, ".wma") != 0 #endif -#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_OGGVORBIS - && std::strcmp(extension, ".ogg") != 0 +#if defined(CONFIG_NXWM_MEDIAPLAYER_FILTER_OGGVORBIS) + && std::strcasecmp(extension, ".ogg") != 0 #endif )) {