From a2f3576b95cf969a21a0a80ccfb08c024d699aa1 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 23 Jul 2014 17:20:52 -0600 Subject: Fix missing right parenthesis in conditional compilation; Also, should use strcasecmp vs. strcmp when comparing for matches in extension --- NxWidgets/nxwm/src/cmediaplayer.cxx | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'NxWidgets/nxwm/src') diff --git a/NxWidgets/nxwm/src/cmediaplayer.cxx b/NxWidgets/nxwm/src/cmediaplayer.cxx index c3df41c8c..d94b57369 100644 --- a/NxWidgets/nxwm/src/cmediaplayer.cxx +++ b/NxWidgets/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 )) { -- cgit v1.2.3