leftovers

This commit is contained in:
Philippe G
2020-08-12 16:20:12 -07:00
parent c01a83b466
commit 2b049e1717
2 changed files with 2 additions and 4 deletions

View File

@@ -38,6 +38,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <stdint.h> #include <stdint.h>
#include <fcntl.h> #include <fcntl.h>
#include <assert.h>
#include "platform.h" #include "platform.h"
#include "rtp.h" #include "rtp.h"
@@ -48,12 +49,10 @@
#ifdef WIN32 #ifdef WIN32
#include <openssl/aes.h> #include <openssl/aes.h>
#include "alac_wrapper.h" #include "alac_wrapper.h"
#include "assert.h"
#define MSG_DONTWAIT 0 #define MSG_DONTWAIT 0
#else #else
#include "esp_pthread.h" #include "esp_pthread.h"
#include "esp_system.h" #include "esp_system.h"
#include "esp_assert.h"
#include <mbedtls/version.h> #include <mbedtls/version.h>
#include <mbedtls/aes.h> #include <mbedtls/aes.h>
#include "alac_wrapper.h" #include "alac_wrapper.h"

View File

@@ -579,7 +579,6 @@ static void output_thread_i2s_stats(void *arg) {
} }
vTaskDelay( pdMS_TO_TICKS( STATS_PERIOD_MS ) ); vTaskDelay( pdMS_TO_TICKS( STATS_PERIOD_MS ) );
} }
return;
} }
/**************************************************************************************** /****************************************************************************************