system/nxrecorder/nxrecorder.c: Don't assume debug macro expansion

This commit is contained in:
YAMAMOTO Takashi 2020-11-27 14:14:36 +09:00 committed by Xiang Xiao
parent ed768d1159
commit ce3ca22152

View File

@ -484,7 +484,9 @@ static void *nxrecorder_recordthread(pthread_addr_t pvarg)
/* Send a stop message to the device */ /* Send a stop message to the device */
#ifdef CONFIG_DEBUG_FEATURES
audinfo("Stopping! outstanding=%d\n", outstanding); audinfo("Stopping! outstanding=%d\n", outstanding);
#endif
#ifdef CONFIG_AUDIO_MULTI_SESSION #ifdef CONFIG_AUDIO_MULTI_SESSION
ioctl(precorder->dev_fd, AUDIOIOC_STOP, ioctl(precorder->dev_fd, AUDIOIOC_STOP,
@ -503,7 +505,9 @@ static void *nxrecorder_recordthread(pthread_addr_t pvarg)
/* Message indicating the recordback is complete */ /* Message indicating the recordback is complete */
case AUDIO_MSG_COMPLETE: case AUDIO_MSG_COMPLETE:
#ifdef CONFIG_DEBUG_FEATURES
audinfo("Record complete. outstanding=%d\n", outstanding); audinfo("Record complete. outstanding=%d\n", outstanding);
#endif
running = false; running = false;
break; break;